diff --git a/Chess/nim.cfg b/Chess/nim.cfg index 9311382..b95609e 100644 --- a/Chess/nim.cfg +++ b/Chess/nim.cfg @@ -2,4 +2,4 @@ -o:"bin/nimfish" -d:danger --passL:"-flto" ---passC:"-Ofast -flto -march=native -mtune=native" \ No newline at end of file +--passC:"-Ofast -flto -march=native -mtune=native" diff --git a/Chess/nimfish/nimfishpkg/board.nim b/Chess/nimfish/nimfishpkg/board.nim index 5126bb4..d43bf61 100644 --- a/Chess/nimfish/nimfishpkg/board.nim +++ b/Chess/nimfish/nimfishpkg/board.nim @@ -130,13 +130,13 @@ proc newChessboardFromFEN*(fen: string): Chessboard = of '-': discard of 'K': - result.position.castlingAvailability.white.king = true + result.position.castlingAvailability[White.int].king = true of 'Q': - result.position.castlingAvailability.white.queen = true + result.position.castlingAvailability[White.int].queen = true of 'k': - result.position.castlingAvailability.black.king = true + result.position.castlingAvailability[Black.int].king = true of 'q': - result.position.castlingAvailability.black.queen = true + result.position.castlingAvailability[Black.int].queen = true else: raise newException(ValueError, &"invalid FEN: unknown symbol '{c}' found in castlingRights availability section") of 3: @@ -230,7 +230,8 @@ func getKingAttacks*(self: Chessboard, square: Square, attacker: PieceColor): Bi result = Bitboard(0) let king = self.getBitboard(King, attacker) - if (getKingAttacks(square) and king) != 0: + squareBB = square.toBitboard() + if (getKingAttacks(square) and squareBB) != 0: result = result or king @@ -238,11 +239,11 @@ func getKnightAttacks*(self: Chessboard, square: Square, attacker: PieceColor): ## Returns the locations of the knights attacking the given square let knights = self.getBitboard(Knight, attacker) + squareBB = square.toBitboard() result = Bitboard(0) for knight in knights: - let knightBB = knight.toBitboard() - if (getKnightAttacks(knight) and knightBB) != 0: - result = result or knightBB + if (getKnightAttacks(knight) and squareBB) != 0: + result = result or knight.toBitboard() proc getSlidingAttacks*(self: Chessboard, square: Square, attacker: PieceColor): Bitboard = @@ -369,10 +370,42 @@ func inCheck*(self: Chessboard): bool {.inline.} = return self.position.checkers != 0 -proc canCastle*(self: Chessboard, side: PieceColor): tuple[king, queen: bool] = +proc canCastle*(self: Chessboard): tuple[queen, king: bool] = ## Returns if the current side to move can castle - return (false, false) # TODO - + if self.inCheck(): + return (false, false) + let + sideToMove = self.position.sideToMove + occupancy = self.getOccupancy() + result = self.position.castlingAvailability[sideToMove.int] + if result.king: + result.king = (kingSideCastleRay(sideToMove) and occupancy) == 0 + if result.queen: + result.queen = (queenSideCastleRay(sideToMove) and occupancy) == 0 + if result.king: + # There are no pieces in between our friendly king and + # rook: check for attacks + let + king = self.getBitboard(King, sideToMove).toSquare() + for square in getRayBetween(king, sideToMove.kingSideRook()): + if self.isOccupancyAttacked(square, occupancy): + result.king = false + break + + if result.queen: + let + king: Square = self.getBitboard(King, sideToMove).toSquare() + # The king always moves two squares, but the queen side rook moves + # 3 squares. We only need to check for attacks on the squares where + # the king moves to and not any further. We subtract 3 instead of 2 + # because getRayBetween ignores the start and target squares in the + # ray it returns so we have to extend it by one + destination = makeSquare(rankFromSquare(king), fileFromSquare(king) - 3) + for square in getRayBetween(king, destination): + if self.isOccupancyAttacked(square, occupancy): + result.queen = false + break + proc update*(self: Chessboard) = ## Updates the internal grid representation @@ -475,8 +508,8 @@ proc toFEN*(self: Chessboard): string = result &= (if self.position.sideToMove == White: "w" else: "b") result &= " " # Castling availability - let castleWhite = self.position.castlingAvailability.white - let castleBlack = self.position.castlingAvailability.black + let castleWhite = self.position.castlingAvailability[White.int] + let castleBlack = self.position.castlingAvailability[Black.int] if not (castleBlack.king or castleBlack.queen or castleWhite.king or castleWhite.queen): result &= "-" else: diff --git a/Chess/nimfish/nimfishpkg/magics.nim b/Chess/nimfish/nimfishpkg/magics.nim index 5c30a53..d392eeb 100644 --- a/Chess/nimfish/nimfishpkg/magics.nim +++ b/Chess/nimfish/nimfishpkg/magics.nim @@ -38,7 +38,7 @@ type ## A magic bitboard entry mask: Bitboard value: uint64 - indexBits: uint8 + shift: uint8 # Yeah uh, don't look too closely at this... @@ -134,7 +134,7 @@ func getIndex*(magic: MagicEntry, blockers: Bitboard): uint {.inline.} = let blockers = blockers and magic.mask hash = blockers * magic.value - index = hash shr (64'u8 - magic.indexBits) + index = hash shr magic.shift return index.uint @@ -236,7 +236,7 @@ proc attemptMagicTableCreation(kind: PieceKind, square: Square, entry: MagicEntr ## (true, table) if successful, (false, empty) otherwise # Initialize a new sequence with capacity 2^indexBits - result.table = newSeqOfCap[Bitboard](1 shl entry.indexBits) + result.table = newSeqOfCap[Bitboard](1 shl (64'u8 - entry.shift)) result.success = true for _ in 0..result.table.capacity: result.table.add(Bitboard(0)) @@ -294,7 +294,7 @@ proc findMagic(kind: PieceKind, square: Square, indexBits: uint8): tuple[entry: # hopefully better than a single one let magic = rand.next() and rand.next() and rand.next() - entry = MagicEntry(mask: mask, value: magic, indexBits: indexBits) + entry = MagicEntry(mask: mask, value: magic, shift: 64'u8 - indexBits) var attempt = attemptMagicTableCreation(kind, square, entry) if attempt.success: # Huzzah! Our search for the mighty magic number is complete diff --git a/Chess/nimfish/nimfishpkg/movegen.nim b/Chess/nimfish/nimfishpkg/movegen.nim index 3dd8437..4286e4d 100644 --- a/Chess/nimfish/nimfishpkg/movegen.nim +++ b/Chess/nimfish/nimfishpkg/movegen.nim @@ -14,7 +14,8 @@ ## Move generation logic -import std/strformat +when not defined(danger): + import std/strformat import bitboards @@ -37,9 +38,8 @@ proc generatePawnMoves(self: Chessboard, moves: var MoveList, destinationMask: B pawns = self.getBitboard(Pawn, sideToMove) occupancy = self.getOccupancy() # We can only capture enemy pieces (except the king) - enemyPieces = self.getOccupancyFor(sideToMove.opposite()) + enemyPieces = self.getOccupancyFor(sideToMove.opposite()) and not self.getBitboard(King, sideToMove.opposite()) epTarget = self.position.enPassantSquare - checkers = self.position.checkers diagonalPins = self.position.diagonalPins orthogonalPins = self.position.orthogonalPins promotionRank = if sideToMove == White: getRankMask(0) else: getRankMask(7) @@ -47,68 +47,104 @@ proc generatePawnMoves(self: Chessboard, moves: var MoveList, destinationMask: B # TODO: Give names to ranks and files so we don't have to assume a # specific board layout when calling get(Rank|File)Mask startingRank = if sideToMove == White: getRankMask(6) else: getRankMask(1) - - var epBitboard = if epTarget != nullSquare(): epTarget.toBitboard() else: Bitboard(0) - let epPawn = if epBitboard == 0: Bitboard(0) else: epBitboard.forwardRelativeTo(sideToMove) - # If we are in check, en passant is only possible if we'd capture the (only) - # checking pawn with it - if epBitboard != 0 and self.inCheck() and (epPawn and checkers).countSquares() == 0: - epBitboard = Bitboard(0) + friendlyKing = self.getBitboard(King, sideToMove).toSquare() # Single and double pushes + + # If a pawn is pinned diagonally, it cannot push forward let - # If a pawn is pinned diagonally, it cannot move - pushablePawns = pawns and not diagonalPins - # Neither can it move if it's pinned orthogonally - singlePushes = (pushablePawns.forwardRelativeTo(sideToMove) and not enemyPieces) and destinationMask and not orthogonalPins + # If a pawn is pinned horizontally, it cannot move either. It can move vertically + # though + horizontalPins = Bitboard((0xFF'u64 shl (rankFromSquare(friendlyKing).uint64 * 8))) and orthogonalPins + pushablePawns = pawns and not diagonalPins and not horizontalPins + singlePushes = (pushablePawns.forwardRelativeTo(sideToMove) and not occupancy) and destinationMask # We do this weird dance instead of using doubleForwardRelativeTo() because that doesn't have any # way to check if there's pieces on the two squares ahead of the pawn var canDoublePush = pushablePawns and startingRank - canDoublePush = canDoublePush.forwardRelativeTo(sideToMove) and not occupancy and not orthogonalPins + canDoublePush = canDoublePush.forwardRelativeTo(sideToMove) and not occupancy canDoublePush = canDoublePush.forwardRelativeTo(sideToMove) and not occupancy and destinationMask - for pawn in singlePushes: + for pawn in singlePushes and not orthogonalPins: let pawnBB = pawn.toBitboard() if promotionRank.contains(pawn): - for promotion in [PromoteToBishop, PromoteToBishop, PromoteToQueen, PromoteToRook]: + for promotion in [PromoteToBishop, PromoteToKnight, PromoteToQueen, PromoteToRook]: moves.add(createMove(pawnBB.backwardRelativeTo(sideToMove), pawn, promotion)) else: moves.add(createMove(pawnBB.backwardRelativeTo(sideToMove), pawn)) - for pawn in canDoublePush: + for pawn in singlePushes and orthogonalPins: + let pawnBB = pawn.toBitboard() + if promotionRank.contains(pawn): + for promotion in [PromoteToBishop, PromoteToKnight, PromoteToQueen, PromoteToRook]: + moves.add(createMove(pawnBB.backwardRelativeTo(sideToMove), pawn, promotion)) + else: + moves.add(createMove(pawnBB.backwardRelativeTo(sideToMove), pawn)) + + for pawn in canDoublePush and orthogonalPins: + moves.add(createMove(pawn.toBitboard().doubleBackwardRelativeTo(sideToMove), pawn, DoublePush)) + + for pawn in canDoublePush and not orthogonalPins: moves.add(createMove(pawn.toBitboard().doubleBackwardRelativeTo(sideToMove), pawn, DoublePush)) let canCapture = pawns and not orthogonalPins - var + var captureLeft = canCapture.forwardLeftRelativeTo(sideToMove) and enemyPieces and destinationMask captureRight = canCapture.forwardRightRelativeTo(sideToMove) and enemyPieces and destinationMask - # If a capturing pawn is pinned diagonally, it is allowed to capture only - # in the direction of the pin - if (diagonalPins and captureLeft) != 0: - captureLeft = captureLeft and diagonalPins - if (diagonalPins and captureRight) != 0: - captureRight = captureRight and diagonalPins - for pawn in captureLeft: - let pawnBB = pawn.toBitboard() - if promotionRank.contains(pawn): - for promotion in [PromoteToBishop, PromoteToBishop, PromoteToQueen, PromoteToRook]: - moves.add(createMove(pawnBB.backwardRightRelativeTo(sideToMove), pawn, Capture, promotion)) - else: - moves.add(createMove(pawnBB.backwardRightRelativeTo(sideToMove), pawn, Capture)) + + # If a piece is pinned on the right, it can only capture on the right and + # vice versa for the left + if (let capture = diagonalPins and captureLeft; capture) != 0: + captureRight = Bitboard(0) + captureLeft = capture + if (let capture = diagonalPins and captureRight; capture) != 0: + captureLeft = Bitboard(0) + captureRight = capture for pawn in captureRight: let pawnBB = pawn.toBitboard() if promotionRank.contains(pawn): - for promotion in [PromoteToBishop, PromoteToBishop, PromoteToQueen, PromoteToRook]: + for promotion in [PromoteToBishop, PromoteToKnight, PromoteToQueen, PromoteToRook]: moves.add(createMove(pawnBB.backwardLeftRelativeTo(sideToMove), pawn, Capture, promotion)) else: moves.add(createMove(pawnBB.backwardLeftRelativeTo(sideToMove), pawn, Capture)) + for pawn in captureLeft: + let pawnBB = pawn.toBitboard() + if promotionRank.contains(pawn): + for promotion in [PromoteToBishop, PromoteToKnight, PromoteToQueen, PromoteToRook]: + moves.add(createMove(pawnBB.backwardRightRelativeTo(sideToMove), pawn, Capture, promotion)) + else: + moves.add(createMove(pawnBB.backwardRightRelativeTo(sideToMove), pawn, Capture)) + # En passant captures + var epBitboard = if epTarget != nullSquare(): epTarget.toBitboard() else: Bitboard(0) + if epBitboard != 0: + # See if en passant would create a check + let + epPawn = epBitboard.backwardRelativeTo(sideToMove) + epLeft = pawns.forwardLeftRelativeTo(sideToMove) and epBitboard and destinationMask + epRight = pawns.forwardRightRelativeTo(sideToMove) and epBitboard and destinationMask + var + newOccupancy = occupancy and not epPawn + friendlyPawn: Bitboard = Bitboard(0) + if epLeft != 0: + friendlyPawn = epBitboard.backwardRightRelativeTo(sideToMove) + elif epRight != 0: + friendlyPawn = epBitboard.backwardLeftRelativeTo(sideToMove) + if friendlyPawn != 0: + # We basically simulate the en passant and see if the resulting + # occupancy bitboard has the king in check + newOccupancy = newOccupancy and not friendlyPawn + newOccupancy = newOccupancy or epBitboard + + if not self.isOccupancyAttacked(friendlyKing, newOccupancy): + # En passant does not create a check on the king: all good + moves.add(createMove(friendlyPawn, epBitboard, EnPassant)) + proc generateRookMoves(self: Chessboard, moves: var MoveList, destinationMask: Bitboard) = let sideToMove = self.position.sideToMove occupancy = self.getOccupancy() - enemyPieces = self.getOccupancyFor(sideToMove.opposite()) + enemyPieces = self.getOccupancyFor(sideToMove.opposite()) and not self.getBitboard(King, sideToMove.opposite()) rooks = self.getBitboard(Rook, sideToMove) queens = self.getBitboard(Queen, sideToMove) movableRooks = not self.position.diagonalPins and (queens or rooks) @@ -137,7 +173,7 @@ proc generateBishopMoves(self: Chessboard, moves: var MoveList, destinationMask: let sideToMove = self.position.sideToMove occupancy = self.getOccupancy() - enemyPieces = self.getOccupancyFor(sideToMove.opposite()) + enemyPieces = self.getOccupancyFor(sideToMove.opposite()) and not self.getBitboard(King, sideToMove.opposite()) bishops = self.getBitboard(Bishop, sideToMove) queens = self.getBitboard(Queen, sideToMove) movableBishops = not self.position.orthogonalPins and (queens or bishops) @@ -168,7 +204,7 @@ proc generateKingMoves(self: Chessboard, moves: var MoveList) = king = self.getBitboard(King, sideToMove) occupancy = self.getOccupancy() nonSideToMove = sideToMove.opposite() - enemyPieces = self.getOccupancyFor(nonSideToMove) + enemyPieces = self.getOccupancyFor(nonSideToMove) and not self.getBitboard(King, nonSideToMove) bitboard = getKingAttacks(king.toSquare()) noKingOccupancy = occupancy and not king for square in bitboard and not occupancy: @@ -186,20 +222,25 @@ proc generateKnightMoves(self: Chessboard, moves: var MoveList, destinationMask: nonSideToMove = sideToMove.opposite() pinned = self.position.diagonalPins or self.position.orthogonalPins unpinnedKnights = knights and not pinned - enemyPieces = self.getOccupancyFor(nonSideToMove) + enemyPieces = self.getOccupancyFor(nonSideToMove) and not self.getBitboard(King, nonSideToMove) for square in unpinnedKnights: let bitboard = getKnightAttacks(square) for target in bitboard and destinationMask and not enemyPieces: moves.add(createMove(square, target)) - for target in bitboard and enemyPieces: + for target in bitboard and destinationMask and enemyPieces: moves.add(createMove(square, target, Capture)) proc generateCastling(self: Chessboard, moves: var MoveList) = let sideToMove = self.position.sideToMove - rooks = self.getBitboard(Rook, sideToMove) - # TODO + castlingRights = self.canCastle() + kingSquare = self.getBitboard(King, sideToMove).toSquare() + kingPiece = self.grid[kingSquare] + if castlingRights.king: + moves.add(createMove(kingSquare, kingPiece.kingSideCastling(), Castle)) + if castlingRights.queen: + moves.add(createMove(kingSquare, kingPiece.queenSideCastling(), Castle)) proc generateMoves*(self: Chessboard, moves: var MoveList) = @@ -216,8 +257,8 @@ proc generateMoves*(self: Chessboard, moves: var MoveList) = # King is in double check: no need to generate any more # moves return - if not self.inCheck(): - self.generateCastling(moves) + + self.generateCastling(moves) # We pass a mask to our move generators to remove stuff # like our friendly pieces from the set of possible @@ -271,8 +312,8 @@ proc spawnPiece(self: Chessboard, square: Square, piece: Piece) = proc removePiece(self: Chessboard, square: Square) = ## Removes a piece from the board, updating necessary ## metadata - var piece = self.grid[square] when not defined(danger): + let Piece = self.grid[square] doAssert piece.kind != Empty and piece.color != None, self.toFEN() self.removePieceFromBitboard(square) self.grid[square] = nullPiece() @@ -291,6 +332,10 @@ proc movePiece(self: Chessboard, move: Move) = self.spawnPiece(move.targetSquare, piece) +proc movePiece(self: Chessboard, startSquare, targetSquare: Square) = + self.movePiece(createMove(startSquare, targetSquare)) + + proc doMove*(self: Chessboard, move: Move) = ## Internal function called by makeMove after ## performing legality checks. Can be used in @@ -308,8 +353,8 @@ proc doMove*(self: Chessboard, move: Move) = var halfMoveClock = self.position.halfMoveClock fullMoveCount = self.position.fullMoveCount - castlingRights = self.position.castlingRights enPassantTarget = nullSquare() + # Needed to detect draw by the 50 move rule if piece.kind == Pawn or move.isCapture() or move.isEnPassant(): # Number of half-moves since the last reversible half-move @@ -327,7 +372,6 @@ proc doMove*(self: Chessboard, move: Move) = halfMoveClock: halfMoveClock, fullMoveCount: fullMoveCount, sideToMove: self.position.sideToMove.opposite(), - castlingRights: castlingRights, enPassantSquare: enPassantTarget, pieces: self.position.pieces, castlingAvailability: self.position.castlingAvailability @@ -338,13 +382,39 @@ proc doMove*(self: Chessboard, move: Move) = # Make the en passant pawn disappear self.removePiece(move.targetSquare.toBitboard().backwardRelativeTo(piece.color).toSquare()) + if move.isCastling() or piece.kind == King: + # If the king has moved, all castling rights for the side to + # move are revoked + self.position.castlingAvailability[piece.color.int] = (false, false) + if move.isCastling(): + # Move the rook where it belongs + if move.targetSquare == piece.kingSideCastling(): + let rook = self.grid[piece.color.kingSideRook()] + self.movePiece(piece.color.kingSideRook(), rook.kingSideCastling()) + if move.targetSquare == piece.queenSideCastling(): + let rook = self.grid[piece.color.queenSideRook()] + self.movePiece(piece.color.queenSideRook(), rook.queenSideCastling()) + + if piece.kind == Rook: + # If a rook on either side moves, castling rights are permanently revoked + # on that side + if move.startSquare == piece.color.kingSideRook(): + self.position.castlingAvailability[piece.color.int].king = false + elif move.startSquare == piece.color.queenSideRook(): + self.position.castlingAvailability[piece.color.int].queen = false + if move.isCapture(): # Get rid of captured pieces self.removePiece(move.targetSquare) + # If a rook has been captured, castling on that side is prohibited + if piece.kind == Rook: + if move.targetSquare == piece.color.kingSideRook(): + self.position.castlingAvailability[piece.color.int].king = false + elif move.targetSquare == piece.color.queenSideRook(): + self.position.castlingAvailability[piece.color.int].queen = false # Move the piece to its target square - self.movePiece(move) - # TODO: Castling! + self.movePiece(move) if move.isPromotion(): # Move is a pawn promotion: get rid of the pawn # and spawn a new piece @@ -361,7 +431,7 @@ proc doMove*(self: Chessboard, move: Move) = else: # Unreachable discard - # Updates checks and pins for the side to move + # Updates checks and pins for the (new) side to move self.updateChecksAndPins() diff --git a/Chess/nimfish/nimfishpkg/moves.nim b/Chess/nimfish/nimfishpkg/moves.nim index 4ee0d36..fe301c4 100644 --- a/Chess/nimfish/nimfishpkg/moves.nim +++ b/Chess/nimfish/nimfishpkg/moves.nim @@ -24,13 +24,12 @@ type Capture = 2, # Move is a capture DoublePush = 4, # Move is a double pawn push # Castling metadata - CastleLong = 8, - CastleShort = 16, + Castle = 8, # Pawn promotion metadata - PromoteToQueen = 32, - PromoteToRook = 64, - PromoteToBishop = 128, - PromoteToKnight = 256 + PromoteToQueen = 16, + PromoteToRook = 32, + PromoteToBishop = 64, + PromoteToKnight = 128 Move* = object ## A chess move @@ -49,7 +48,6 @@ func `[]`*(self: MoveList, i: SomeInteger): Move = raise newException(IndexDefect, &"move list access out of bounds ({i} >= {self.len})") result = self.data[i] - iterator items*(self: MoveList): Move = var i = 0 while self.len > i: @@ -63,6 +61,15 @@ iterator pairs*(self: MoveList): tuple[i: int, move: Move] = yield (i, item) +func `$`*(self: MoveList): string = + result &= "[" + for i, move in self: + result &= $move + if i < self.len: + result &= ", " + result &= "]" + + func add*(self: var MoveList, move: Move) {.inline.} = self.data[self.len] = move inc(self.len) @@ -122,24 +129,13 @@ func getPromotionType*(move: Move): MoveFlag {.inline.} = func isCapture*(move: Move): bool {.inline.} = ## Returns whether the given move is a ## cature - result = (move.flags and Capture.uint16) == Capture.uint16 + result = (move.flags and Capture.uint16) != 0 func isCastling*(move: Move): bool {.inline.} = ## Returns whether the given move is a - ## castle - for flag in [CastleLong, CastleShort]: - if (move.flags and flag.uint16) != 0: - return true - - -func getCastlingType*(move: Move): MoveFlag {.inline.} = - ## Returns the castlingRights type of the given move. - ## The return value of this function is only valid - ## if isCastling() returns true - for flag in [CastleLong, CastleShort]: - if (move.flags and flag.uint16) != 0: - return flag + ## castling move + result = (move.flags and Castle.uint16) != 0 func isEnPassant*(move: Move): bool {.inline.} = @@ -156,9 +152,9 @@ func isDoublePush*(move: Move): bool {.inline.} = func getFlags*(move: Move): seq[MoveFlag] = ## Gets all the flags of this move - for flag in [EnPassant, Capture, DoublePush, CastleLong, CastleShort, - PromoteToBishop, PromoteToKnight, PromoteToQueen, - PromoteToRook]: + for flag in [EnPassant, Capture, DoublePush, Castle, + PromoteToBishop, PromoteToKnight, PromoteToQueen, + PromoteToRook]: if (move.flags and flag.uint16) == flag.uint16: result.add(flag) if result.len() == 0: diff --git a/Chess/nimfish/nimfishpkg/pieces.nim b/Chess/nimfish/nimfishpkg/pieces.nim index fecd281..068055b 100644 --- a/Chess/nimfish/nimfishpkg/pieces.nim +++ b/Chess/nimfish/nimfishpkg/pieces.nim @@ -93,11 +93,50 @@ proc toAlgebraic*(square: Square): string {.inline.} = proc `$`*(square: Square): string = square.toAlgebraic() func kingSideRook*(color: PieceColor): Square {.inline.} = (if color == White: "h1".toSquare() else: "h8".toSquare()) -func queenSideRook*(color: PieceColor): Square {.inline.} = (if color == White: "a8".toSquare() else: "a1".toSquare()) -func longCastleKing*(color: PieceColor): Square {.inline.} = (if color == White: "c1".toSquare() else: "c8".toSquare()) -func shortCastleKing*(color: PieceColor): Square {.inline.} = (if color == White: "g1".toSquare() else: "g8".toSquare()) -func longCastleRook*(color: PieceColor): Square {.inline.} = (if color == White: "d1".toSquare() else: "d8".toSquare()) -func shortCastleRook*(color: PieceColor): Square {.inline.} = (if color == White: "f1".toSquare() else: "f8".toSquare()) +func queenSideRook*(color: PieceColor): Square {.inline.} = (if color == White: "a1".toSquare() else: "a8".toSquare()) + +func kingSideCastling*(piece: Piece): Square {.inline.} = + case piece.kind: + of Rook: + case piece.color: + of White: + return "f1".toSquare() + of Black: + return "f8".toSquare() + else: + discard + of King: + case piece.color: + of White: + return "g1".toSquare() + of Black: + return "g8".toSquare() + else: + discard + else: + discard + + +func queenSideCastling*(piece: Piece): Square {.inline.} = + case piece.kind: + of Rook: + case piece.color: + of White: + return "d1".toSquare() + of Black: + return "d8".toSquare() + else: + discard + of King: + case piece.color: + of White: + return "c1".toSquare() + of Black: + return "c8".toSquare() + else: + discard + else: + discard proc toPretty*(piece: Piece): string = diff --git a/Chess/nimfish/nimfishpkg/position.nim b/Chess/nimfish/nimfishpkg/position.nim index 29342b0..81c1dac 100644 --- a/Chess/nimfish/nimfishpkg/position.nim +++ b/Chess/nimfish/nimfishpkg/position.nim @@ -26,7 +26,7 @@ type # of whether the king or the rooks on either side # moved, the actual checks for the legality of castling # are done elsewhere - castlingAvailability*: tuple[white, black: tuple[queen, king: bool]] + castlingAvailability*: array[2, tuple[queen, king: bool]] # Number of half-moves that were performed # to reach this position starting from the # root of the tree diff --git a/Chess/nimfish/nimfishpkg/rays.nim b/Chess/nimfish/nimfishpkg/rays.nim index 4e39a5e..89ab817 100644 --- a/Chess/nimfish/nimfishpkg/rays.nim +++ b/Chess/nimfish/nimfishpkg/rays.nim @@ -14,6 +14,11 @@ import bitboards import magics +import pieces + + +export bitboards, pieces + # Stolen from https://github.com/Ciekce/voidstar/blob/main/src/rays.rs :D @@ -46,3 +51,22 @@ let BETWEEN_RAYS = computeRaysBetweenSquares() proc getRayBetween*(source, target: Square): Bitboard {.inline.} = BETWEEN_RAYS[source.int][target.int] + +proc queenSideCastleRay*(color: PieceColor): Bitboard {.inline.} = + case color: + of White: + return getRayBetween("e1".toSquare(), "a1".toSquare()) + of Black: + return getRayBetween("e8".toSquare(), "a8".toSquare()) + else: + discard + + +proc kingSideCastleRay*(color: PieceColor): Bitboard {.inline.} = + case color: + of White: + return getRayBetween("e1".toSquare(), "h1".toSquare()) + of Black: + return getRayBetween("e8".toSquare(), "h8".toSquare()) + else: + discard \ No newline at end of file diff --git a/Chess/nimfish/nimfishpkg/resources/magics.json b/Chess/nimfish/nimfishpkg/resources/magics.json index f18ee2d..377f401 100644 --- a/Chess/nimfish/nimfishpkg/resources/magics.json +++ b/Chess/nimfish/nimfishpkg/resources/magics.json @@ -1 +1 @@ -{"bishops":[{"mask":18049651735527936,"value":586184988363063328,"indexBits":6},{"mask":70506452091904,"value":9263908836383785088,"indexBits":5},{"mask":275415828992,"value":1172088202056434704,"indexBits":5},{"mask":1075975168,"value":167763486313546242,"indexBits":5},{"mask":38021120,"value":36611606968795201,"indexBits":5},{"mask":8657588224,"value":595329506798206976,"indexBits":5},{"mask":2216338399232,"value":9908068748290695184,"indexBits":5},{"mask":567382630219776,"value":81366068874183680,"indexBits":6},{"mask":9024825867763712,"value":1819524626863292928,"indexBits":5},{"mask":18049651735527424,"value":19245877340799015,"indexBits":5},{"mask":70506452221952,"value":9229041137070243969,"indexBits":5},{"mask":275449643008,"value":4415286215684,"indexBits":5},{"mask":9733406720,"value":72341276896264218,"indexBits":5},{"mask":2216342585344,"value":301293308748352,"indexBits":5},{"mask":567382630203392,"value":90126970310443026,"indexBits":5},{"mask":1134765260406784,"value":2882357638677667840,"indexBits":5},{"mask":4512412933816832,"value":9245890550925034596,"indexBits":5},{"mask":9024825867633664,"value":306845247730942209,"indexBits":5},{"mask":18049651768822272,"value":9232451872734855233,"indexBits":7},{"mask":70515108615168,"value":9261652635868479528,"indexBits":7},{"mask":2491752130560,"value":4613098101132493060,"indexBits":7},{"mask":567383701868544,"value":3458835166037804160,"indexBits":7},{"mask":1134765256220672,"value":2306476345108205570,"indexBits":5},{"mask":2269530512441344,"value":4613093952798724402,"indexBits":5},{"mask":2256206450263040,"value":2311490582575321088,"indexBits":5},{"mask":4512412900526080,"value":11602697641605728308,"indexBits":5},{"mask":9024834391117824,"value":4615076912321528850,"indexBits":7},{"mask":18051867805491712,"value":39978242853191688,"indexBits":9},{"mask":637888545440768,"value":292737274349619200,"indexBits":9},{"mask":1135039602493440,"value":299702689070125056,"indexBits":7},{"mask":2269529440784384,"value":325670950414616576,"indexBits":5},{"mask":4539058881568768,"value":1199229635867513008,"indexBits":5},{"mask":1128098963916800,"value":7496243848055103793,"indexBits":5},{"mask":2256197927833600,"value":612647949965722624,"indexBits":5},{"mask":4514594912477184,"value":2308169919415975968,"indexBits":7},{"mask":9592139778506752,"value":18119985986570272,"indexBits":9},{"mask":19184279556981248,"value":5045161932147920912,"indexBits":9},{"mask":2339762086609920,"value":153140531428592130,"indexBits":7},{"mask":4538784537380864,"value":295127629806193152,"indexBits":5},{"mask":9077569074761728,"value":576614686116610192,"indexBits":5},{"mask":562958610993152,"value":9233295199091363840,"indexBits":5},{"mask":1125917221986304,"value":577024304164773904,"indexBits":5},{"mask":2814792987328512,"value":2667538457433215488,"indexBits":7},{"mask":5629586008178688,"value":648528316168406016,"indexBits":7},{"mask":11259172008099840,"value":105555867732096,"indexBits":7},{"mask":22518341868716544,"value":41097546730406144,"indexBits":7},{"mask":9007336962655232,"value":9227897666510260544,"indexBits":5},{"mask":18014673925310464,"value":583506435715909696,"indexBits":5},{"mask":2216338399232,"value":74599948658409504,"indexBits":5},{"mask":4432676798464,"value":4650107936998301732,"indexBits":5},{"mask":11064376819712,"value":5630601596257284,"indexBits":5},{"mask":22137335185408,"value":78417887232,"indexBits":5},{"mask":44272556441600,"value":288230420445921410,"indexBits":5},{"mask":87995357200384,"value":11529223911972143104,"indexBits":5},{"mask":35253226045952,"value":4802705580131332,"indexBits":5},{"mask":70506452091904,"value":585560877508347936,"indexBits":5},{"mask":567382630219776,"value":1153066645644911620,"indexBits":6},{"mask":1134765260406784,"value":1104653983752,"indexBits":5},{"mask":2832480465846272,"value":149540028549248,"indexBits":5},{"mask":5667157807464448,"value":9223382021733124096,"indexBits":5},{"mask":11333774449049600,"value":72057953792835840,"indexBits":5},{"mask":22526811443298304,"value":577305212132831361,"indexBits":5},{"mask":9024825867763712,"value":70377376325888,"indexBits":5},{"mask":18049651735527936,"value":1134704610902528,"indexBits":6}],"rooks":[{"mask":282578800148862,"value":4647717152219086848,"indexBits":12},{"mask":565157600297596,"value":162147196488531968,"indexBits":11},{"mask":1130315200595066,"value":36046389741912072,"indexBits":11},{"mask":2260630401190006,"value":4647732409782241280,"indexBits":11},{"mask":4521260802379886,"value":4755806807678550528,"indexBits":11},{"mask":9042521604759646,"value":72097176595005478,"indexBits":11},{"mask":18085043209519166,"value":2738197391579545732,"indexBits":11},{"mask":36170086419038334,"value":36033474791997824,"indexBits":12},{"mask":282578800180736,"value":9223794388906295296,"indexBits":11},{"mask":565157600328704,"value":703824889135105,"indexBits":10},{"mask":1130315200625152,"value":37436382358011976,"indexBits":10},{"mask":2260630401218048,"value":13836324761397362820,"indexBits":10},{"mask":4521260802403840,"value":4902590424046110721,"indexBits":10},{"mask":9042521604775424,"value":1189513320433734144,"indexBits":10},{"mask":18085043209518592,"value":36592030448879619,"indexBits":10},{"mask":36170086419037696,"value":703689589276928,"indexBits":11},{"mask":282578808340736,"value":2306019480901255552,"indexBits":11},{"mask":565157608292864,"value":1297213715128582272,"indexBits":10},{"mask":1130315208328192,"value":845524978667584,"indexBits":10},{"mask":2260630408398848,"value":1171501052430649408,"indexBits":10},{"mask":4521260808540160,"value":2306125583803746304,"indexBits":10},{"mask":9042521608822784,"value":146375788814667840,"indexBits":10},{"mask":18085043209388032,"value":57175278881281,"indexBits":10},{"mask":36170086418907136,"value":2035629230632730769,"indexBits":11},{"mask":282580897300736,"value":613088287090819072,"indexBits":11},{"mask":565159647117824,"value":1153290941587529729,"indexBits":10},{"mask":1130317180306432,"value":90168545542720,"indexBits":10},{"mask":2260632246683648,"value":17602923988096,"indexBits":10},{"mask":4521262379438080,"value":2308376357018798080,"indexBits":10},{"mask":9042522644946944,"value":4611967506290582528,"indexBits":10},{"mask":18085043175964672,"value":9223653533318119936,"indexBits":10},{"mask":36170086385483776,"value":9223512785081614592,"indexBits":11},{"mask":283115671060736,"value":14414022670750318720,"indexBits":11},{"mask":565681586307584,"value":1155315150044012608,"indexBits":10},{"mask":1130822006735872,"value":147953041809409,"indexBits":10},{"mask":2261102847592448,"value":4521196125167624,"indexBits":10},{"mask":4521664529305600,"value":281646792180752,"indexBits":10},{"mask":9042787892731904,"value":145137690739200,"indexBits":10},{"mask":18085034619584512,"value":17802706584072,"indexBits":10},{"mask":36170077829103616,"value":13723006002008204,"indexBits":11},{"mask":420017753620736,"value":90217402995867649,"indexBits":11},{"mask":699298018886144,"value":72480081398005794,"indexBits":10},{"mask":1260057572672512,"value":4611791581224173616,"indexBits":10},{"mask":2381576680245248,"value":10403596649367666721,"indexBits":10},{"mask":4624614895390720,"value":289356826217054212,"indexBits":10},{"mask":9110691325681664,"value":1801514617772474496,"indexBits":10},{"mask":18082844186263552,"value":2612106509966114832,"indexBits":10},{"mask":36167887395782656,"value":564095644729356,"indexBits":11},{"mask":35466950888980736,"value":4612319485386424832,"indexBits":11},{"mask":34905104758997504,"value":145410414871168,"indexBits":10},{"mask":34344362452452352,"value":598136495014528,"indexBits":10},{"mask":33222877839362048,"value":148627652517888256,"indexBits":10},{"mask":30979908613181440,"value":101155204006016,"indexBits":10},{"mask":26493970160820224,"value":41095363788018304,"indexBits":10},{"mask":17522093256097792,"value":24223884084224,"indexBits":10},{"mask":35607136465616896,"value":6994301619613508096,"indexBits":11},{"mask":9079539427579068672,"value":590257714395873313,"indexBits":12},{"mask":8935706818303361536,"value":9511884438011642401,"indexBits":11},{"mask":8792156787827803136,"value":36041037676838978,"indexBits":11},{"mask":8505056726876686336,"value":1460151995336773,"indexBits":11},{"mask":7930856604974452736,"value":2918895577345311890,"indexBits":11},{"mask":6782456361169985536,"value":162411070554898437,"indexBits":11},{"mask":4485655873561051136,"value":6038483777167691780,"indexBits":11},{"mask":9115426935197958144,"value":40686350839611426,"indexBits":12}]} \ No newline at end of file +{"bishops":[{"mask":18049651735527936,"value":4638709858298781826,"shift":58},{"mask":70506452091904,"value":3386805067980928,"shift":59},{"mask":275415828992,"value":601231460929654852,"shift":59},{"mask":1075975168,"value":326517571161949220,"shift":59},{"mask":38021120,"value":108651608754365608,"shift":59},{"mask":8657588224,"value":7350299073167245320,"shift":59},{"mask":2216338399232,"value":2537677337413644,"shift":59},{"mask":567382630219776,"value":18053989552626188,"shift":58},{"mask":9024825867763712,"value":1307345731153070336,"shift":59},{"mask":18049651735527424,"value":2450116716345581634,"shift":59},{"mask":70506452221952,"value":36319652745412608,"shift":59},{"mask":275449643008,"value":18019075731062788,"shift":59},{"mask":9733406720,"value":36029966323810568,"shift":59},{"mask":2216342585344,"value":3367358169344,"shift":59},{"mask":567382630203392,"value":9250680611718300672,"shift":59},{"mask":1134765260406784,"value":4702890516709196800,"shift":59},{"mask":4512412933816832,"value":2310351574091827200,"shift":59},{"mask":9024825867633664,"value":11259068056404032,"shift":59},{"mask":18049651768822272,"value":5088608541479168,"shift":57},{"mask":70515108615168,"value":7496242166054797345,"shift":57},{"mask":2491752130560,"value":4697395166026137616,"shift":57},{"mask":567383701868544,"value":14422214892156097537,"shift":57},{"mask":1134765256220672,"value":2882867812191311880,"shift":59},{"mask":2269530512441344,"value":4910612445846898848,"shift":59},{"mask":2256206450263040,"value":9315739982558529562,"shift":59},{"mask":4512412900526080,"value":109229888049791108,"shift":59},{"mask":9024834391117824,"value":288442582164570244,"shift":57},{"mask":18051867805491712,"value":162133984665471056,"shift":55},{"mask":637888545440768,"value":595183236334879232,"shift":55},{"mask":1135039602493440,"value":634418243831296,"shift":57},{"mask":2269529440784384,"value":2535559751273488,"shift":59},{"mask":4539058881568768,"value":581599878258398768,"shift":59},{"mask":1128098963916800,"value":9513856686774813700,"shift":59},{"mask":2256197927833600,"value":4902749024295847936,"shift":59},{"mask":4514594912477184,"value":6088941739026417152,"shift":57},{"mask":9592139778506752,"value":1188952511387009408,"shift":55},{"mask":19184279556981248,"value":869485007742706176,"shift":55},{"mask":2339762086609920,"value":595046910012817472,"shift":57},{"mask":4538784537380864,"value":283699791004930,"shift":59},{"mask":9077569074761728,"value":162306630640337408,"shift":59},{"mask":562958610993152,"value":9249285361669047304,"shift":59},{"mask":1125917221986304,"value":74835912819713,"shift":59},{"mask":2814792987328512,"value":13907398586766725120,"shift":57},{"mask":5629586008178688,"value":74155296768,"shift":57},{"mask":11259172008099840,"value":70370910671360,"shift":57},{"mask":22518341868716544,"value":4521261080248384,"shift":57},{"mask":9007336962655232,"value":6926540638934550592,"shift":59},{"mask":18014673925310464,"value":876838610232426880,"shift":59},{"mask":2216338399232,"value":9444261964911479312,"shift":59},{"mask":4432676798464,"value":758016514690515968,"shift":59},{"mask":11064376819712,"value":4616195399090200592,"shift":59},{"mask":22137335185408,"value":288511989674804480,"shift":59},{"mask":44272556441600,"value":9367487297978762256,"shift":59},{"mask":87995357200384,"value":9223407264447217680,"shift":59},{"mask":35253226045952,"value":4798816319934039296,"shift":59},{"mask":70506452091904,"value":369303974204940300,"shift":59},{"mask":567382630219776,"value":2594109703902732288,"shift":58},{"mask":1134765260406784,"value":316415295886984192,"shift":59},{"mask":2832480465846272,"value":76562312839858176,"shift":59},{"mask":5667157807464448,"value":35321815369216,"shift":59},{"mask":11333774449049600,"value":1158269804860541056,"shift":59},{"mask":22526811443298304,"value":11538820654696784128,"shift":59},{"mask":9024825867763712,"value":20486135293936672,"shift":59},{"mask":18049651735527936,"value":292751570515280456,"shift":58}],"rooks":[{"mask":282578800148862,"value":36028939826647168,"shift":52},{"mask":565157600297596,"value":72098278119833648,"shift":53},{"mask":1130315200595066,"value":4647723817706201088,"shift":53},{"mask":2260630401190006,"value":72098276236593184,"shift":53},{"mask":4521260802379886,"value":144132917768093736,"shift":53},{"mask":9042521604759646,"value":612491748412768640,"shift":53},{"mask":18085043209519166,"value":9295502765629374720,"shift":53},{"mask":36170086419038334,"value":2377900903901462784,"shift":52},{"mask":282578800180736,"value":1266707188424832,"shift":53},{"mask":565157600328704,"value":5188428401400152197,"shift":54},{"mask":1130315200625152,"value":180566266354868232,"shift":54},{"mask":2260630401218048,"value":1441574127658864640,"shift":54},{"mask":4521260802403840,"value":1801581138259478528,"shift":54},{"mask":9042521604775424,"value":4702321305196822532,"shift":54},{"mask":18085043209518592,"value":9223935022141026564,"shift":54},{"mask":36170086419037696,"value":792774308413325568,"shift":53},{"mask":282578808340736,"value":4791850069678620736,"shift":53},{"mask":565157608292864,"value":6567515444930945024,"shift":54},{"mask":1130315208328192,"value":153193856123670784,"shift":54},{"mask":2260630408398848,"value":4719783405138608192,"shift":54},{"mask":4521260808540160,"value":9264045720879629312,"shift":54},{"mask":9042521608822784,"value":1154047679425167616,"shift":54},{"mask":18085043209388032,"value":288653138473260288,"shift":54},{"mask":36170086418907136,"value":72567784245316,"shift":53},{"mask":282580897300736,"value":2307039288602141568,"shift":53},{"mask":565159647117824,"value":351863050341504,"shift":54},{"mask":1130317180306432,"value":218988090228772928,"shift":54},{"mask":2260632246683648,"value":144151476255133696,"shift":54},{"mask":4521262379438080,"value":144396736067534917,"shift":54},{"mask":9042522644946944,"value":81069193486794880,"shift":54},{"mask":18085043175964672,"value":281479280337408,"shift":54},{"mask":36170086385483776,"value":146367683674292484,"shift":53},{"mask":283115671060736,"value":4760375185620603296,"shift":53},{"mask":565681586307584,"value":76561331511099460,"shift":54},{"mask":1130822006735872,"value":594634037256012288,"shift":54},{"mask":2261102847592448,"value":567623045615648,"shift":54},{"mask":4521664529305600,"value":36169568875447296,"shift":54},{"mask":9042787892731904,"value":14073817655674948,"shift":54},{"mask":18085034619584512,"value":721193934969112649,"shift":54},{"mask":36170077829103616,"value":2342153282299891842,"shift":53},{"mask":420017753620736,"value":2323998146302115872,"shift":53},{"mask":699298018886144,"value":9223459999395627008,"shift":54},{"mask":1260057572672512,"value":2310355422116093952,"shift":54},{"mask":2381576680245248,"value":2263894710091808,"shift":54},{"mask":4624614895390720,"value":9225624047122448388,"shift":54},{"mask":9110691325681664,"value":307933693312368648,"shift":54},{"mask":18082844186263552,"value":5332827142415974529,"shift":54},{"mask":36167887395782656,"value":3046755931326382081,"shift":53},{"mask":35466950888980736,"value":2428271434137728,"shift":53},{"mask":34905104758997504,"value":18014673925308480,"shift":54},{"mask":34344362452452352,"value":81065068455796992,"shift":54},{"mask":33222877839362048,"value":1441443252145234176,"shift":54},{"mask":30979908613181440,"value":2317102081301284096,"shift":54},{"mask":26493970160820224,"value":4719103940001920,"shift":54},{"mask":17522093256097792,"value":9233839396158448640,"shift":54},{"mask":35607136465616896,"value":38281728892092928,"shift":53},{"mask":9079539427579068672,"value":351985463197713,"shift":52},{"mask":8935706818303361536,"value":4611974092622413922,"shift":53},{"mask":8792156787827803136,"value":974185517702725897,"shift":53},{"mask":8505056726876686336,"value":1162212395309883417,"shift":53},{"mask":7930856604974452736,"value":10385863708118622242,"shift":53},{"mask":6782456361169985536,"value":7638667952405164098,"shift":53},{"mask":4485655873561051136,"value":2324988259996271108,"shift":53},{"mask":9115426935197958144,"value":4622100593106846209,"shift":52}]} \ No newline at end of file diff --git a/Chess/nimfish/nimfishpkg/resources/movesets.json b/Chess/nimfish/nimfishpkg/resources/movesets.json index 2589588..132da14 100644 --- a/Chess/nimfish/nimfishpkg/resources/movesets.json +++ b/Chess/nimfish/nimfishpkg/resources/movesets.json @@ -1 +1 @@ -{"bishops":[[9241421688590303744,512,18049651735527936,512,262656,512,262656,512,134480384,512,134480384,512,262656,512,262656,512,68853957120,512,68853957120,512,262656,512,262656,512,134480384,512,134480384,512,262656,512,262656,512,35253226045952,512,35253226045952,512,262656,512,262656,512,134480384,512,134480384,512,262656,512,262656,512,68853957120,512,68853957120,512,262656,512,262656,512,134480384,512,134480384,512,262656,512,262656,512,0],[36099303471056128,137707914496,268961024,268961024,525568,525568,525568,525568,1280,1280,1280,1280,1280,1280,1280,1280,70506452092160,137707914496,268961024,268961024,525568,525568,525568,525568,1280,1280,1280,1280,1280,1280,1280,1280,0],[141012904249856,1051136,1116672,537922048,68096,2560,68096,2560,275415894528,1051136,537987584,1051136,68096,2560,68096,2560,1116672,141012904184320,537987584,1051136,68096,2560,68096,2560,1116672,275415828992,1116672,537922048,68096,2560,68096,2560,0],[550848566272,550831789056,5120,5120,1092752384,1075975168,5120,5120,16913408,136192,550831657984,550831657984,16913408,136192,1075844096,1075844096,19010560,2233344,5120,5120,19010560,2233344,5120,5120,16913408,136192,2102272,2102272,16913408,136192,2102272,2102272,0],[6480472064,272384,2151688192,10240,2185504768,272384,2151688192,10240,4328794112,2151950336,10240,2151688192,33826816,2151950336,10240,2151688192,4332988416,272384,4204544,10240,38021120,272384,4204544,10240,4328794112,4466688,10240,4204544,33826816,4466688,10240,4204544,0],[1108177604608,544768,20480,8409088,76042240,544768,8409088,20480,8657588224,8933376,8409088,20480,67653632,8933376,20480,8409088,8665976832,544768,20480,8409088,76042240,544768,8409088,20480,1108169216000,8933376,8409088,20480,67653632,8933376,20480,8409088,0],[283691315142656,2216338432000,40960,40960,17315176448,17315176448,40960,40960,135307264,135307264,40960,40960,135307264,135307264,40960,40960,1089536,1089536,40960,40960,1089536,1089536,40960,40960,1089536,1089536,40960,40960,1089536,1089536,40960,40960,0],[72624976668147712,16384,567382630219776,16384,4432676798464,16384,4432676798464,16384,270548992,16384,270548992,16384,270548992,16384,270548992,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,34630287360,16384,34630287360,16384,34630287360,16384,34630287360,16384,270548992,16384,270548992,16384,270548992,16384,270548992,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,2113536,16384,0],[4620710844295151618,67239938,131074,131074,34426978306,67239938,17626613022722,67239938,9024825867763714,67239938,34426978306,67239938,34426978306,67239938,17626613022722,67239938,131074,131074,34426978306,67239938,131074,131074,131074,131074,131074,131074,131074,131074,131074,131074,131074,131074,0],[9241421688590368773,18049651735592965,327685,327685,68854022149,68854022149,134545413,134545413,35253226110981,35253226110981,134545413,134545413,68854022149,68854022149,134545413,134545413,327685,327685,134545413,134545413,327685,327685,327685,327685,327685,327685,327685,327685,327685,327685,327685,327685,0],[36099303487963146,269090826,137724821514,269090826,17432586,655370,17432586,655370,285868042,36099303471185930,285868042,137708044298,17432586,655370,17432586,655370,70506468999178,269090826,137724821514,269090826,17432586,655370,17432586,655370,285868042,70506452221962,285868042,137708044298,17432586,655370,17432586,655370,0],[141017232965652,141012937998356,141012904443924,141012904443924,4329832468,34865172,1310740,1310740,4329832468,34865172,1310740,1310740,4866703380,571736084,538181652,538181652,4866703380,571736084,538181652,538181652,4329832468,34865172,1310740,1310740,4329832468,34865172,1310740,1310740,279744610324,275449643028,275416088596,275416088596,0],[1659000848424,550899286056,550832177192,550832177192,559489220648,550899286056,550832177192,550832177192,1108171292712,69730344,2621480,2621480,8659664936,69730344,2621480,2621480,1109245034536,1143472168,1076363304,1076363304,9733406760,1143472168,1076363304,1076363304,1108171292712,69730344,2621480,2621480,8659664936,69730344,2621480,2621480,0],[283693466779728,17319329872,5242960,5242960,2152726608,5242960,2286944336,139460688,19466813520,2218490069072,2152726608,5242960,2152726608,2152726608,2286944336,2286944336,283691319296080,19466813520,2152726608,2152726608,5242960,2152726608,139460688,2286944336,17319329872,2216342585424,5242960,2152726608,5242960,5242960,139460688,139460688,0],[72624976676520096,278921376,34638659744,278921376,4432685170848,278921376,34638659744,278921376,10485920,10485920,10485920,10485920,10485920,10485920,10485920,10485920,567382638592160,278921376,34638659744,278921376,4432685170848,278921376,34638659744,278921376,10485920,10485920,10485920,10485920,10485920,10485920,10485920,10485920,0],[145249953336262720,541065280,69260542016,541065280,8865353564224,541065280,69260542016,541065280,4194368,4194368,4194368,4194368,4194368,4194368,4194368,4194368,1134765260406848,541065280,69260542016,541065280,8865353564224,541065280,69260542016,541065280,4194368,4194368,4194368,4194368,4194368,4194368,4194368,4194368,0],[2310355422147510788,33554944,33554944,8813306446336,17213424128,33554948,33554948,8813306446340,4512412933816836,33554944,33554944,17213424128,17213424128,33554948,33554948,8813306446340,17213424132,33554944,33554944,17213424128,2310355422147510784,33554948,33554948,17213424132,17213424132,33554944,33554944,8813306446336,4512412933816832,33554948,33554948,17213424132,0],[4620710844311799048,4620710844311799040,83887368,83887360,9024825884411144,9024825884411136,83887368,83887360,34443625736,34443625728,17626629670152,17626629670144,34443625736,34443625728,17626629670152,17626629670144,83887368,83887360,34443625736,34443625728,83887368,83887360,34443625736,34443625728,83887368,83887360,83887368,83887360,83887368,83887360,83887368,83887360,0],[9241421692918565393,9241421692918565377,4462742033,4462742017,35257554307601,35257554307585,4462742033,4462742017,18049656063789585,18049656063789569,4462742033,4462742017,35257554307601,35257554307585,4462742033,4462742017,9241421688623598097,9241421688623598081,167774737,167774721,35253259340305,35253259340289,167774737,167774721,18049651768822289,18049651768822273,167774737,167774721,35253259340305,35253259340289,167774737,167774721,9241421692918565392,9241421692918565376,4462742032,4462742016,35257554307600,35257554307584,4462742032,4462742016,18049656063789584,18049656063789568,4462742032,4462742016,35257554307600,35257554307584,4462742032,4462742016,9241421688623598096,9241421688623598080,167774736,167774720,35253259340304,35253259340288,167774736,167774720,18049651768822288,18049651768822272,167774736,167774720,35253259340304,35253259340288,167774736,167774720,4462742033,4462742017,73182218769,73182218753,4462742033,4462742017,73182218769,73182218753,4462742033,4462742017,73182218769,73182218753,4462742033,4462742017,73182218769,73182218753,167774737,167774721,68887251473,68887251457,167774737,167774721,68887251473,68887251457,167774737,167774721,68887251473,68887251457,167774737,167774721,68887251473,68887251457,4462742032,4462742016,73182218768,73182218752,4462742032,4462742016,73182218768,73182218752,4462742032,4462742016,73182218768,73182218752,4462742032,4462742016,73182218768,73182218752,167774736,167774720,68887251472,68887251456,167774736,167774720,68887251472,68887251456,167774736,167774720,68887251472,68887251456,167774736,167774720,68887251472,68887251456,0],[36100411639206946,36099303537644578,36099312127579170,36099303537644578,1108437111842,335549474,8925484066,335549474,71614620242978,70506518680610,70515108615202,70506518680610,1108437111842,335549474,8925484066,335549474,36100411639206944,36099303537644576,36099312127579168,36099303537644576,1108437111840,335549472,8925484064,335549472,71614620242976,70506518680608,70515108615200,70506518680608,1108437111840,335549472,8925484064,335549472,1245876065314,137774502946,146364437538,137774502946,1108437111842,335549474,8925484066,335549474,1245876065314,137774502946,146364437538,137774502946,1108437111842,335549474,8925484066,335549474,1245876065312,137774502944,146364437536,137774502944,1108437111840,335549472,8925484064,335549472,1245876065312,137774502944,146364437536,137774502944,1108437111840,335549472,8925484064,335549472,36100411639206914,36099303537644546,36099312127579138,36099303537644546,1108437111810,335549442,8925484034,335549442,71614620242946,70506518680578,70515108615170,70506518680578,1108437111810,335549442,8925484034,335549442,36100411639206912,36099303537644544,36099312127579136,36099303537644544,1108437111808,335549440,8925484032,335549440,71614620242944,70506518680576,70515108615168,70506518680576,1108437111808,335549440,8925484032,335549440,1245876065282,137774502914,146364437506,137774502914,1108437111810,335549442,8925484034,335549442,1245876065282,137774502914,146364437506,137774502914,1108437111810,335549442,8925484034,335549442,1245876065280,137774502912,146364437504,137774502912,1108437111808,335549440,8925484032,335549440,1245876065280,137774502912,146364437504,137774502912,1108437111808,335549440,8925484032,335549440,0],[424704217196612,283966728841284,283691850934340,283691850934340,141013037361152,275549005824,671098880,671098880,143229240485956,2491752130628,2216874223684,2216874223684,141013037361152,275549005824,671098880,671098880,141030217230340,292728875012,17850968068,17850968068,424704217196608,283966728841280,283691850934336,283691850934336,141030217230340,292728875012,17850968068,17850968068,143229240485952,2491752130624,2216874223680,2216874223680,141013037361220,275549005892,671098948,671098948,141030217230336,292728875008,17850968064,17850968064,141013037361220,275549005892,671098948,671098948,141030217230336,292728875008,17850968064,17850968064,141013037361156,275549005828,671098884,671098884,141013037361216,275549005888,671098944,671098944,141013037361156,275549005828,671098884,671098884,141013037361216,275549005888,671098944,671098944,141030217230404,292728875076,17850968132,17850968132,141013037361152,275549005824,671098880,671098880,141030217230404,292728875076,17850968132,17850968132,141013037361152,275549005824,671098880,671098880,424704217196548,283966728841220,283691850934276,283691850934276,141030217230400,292728875072,17850968128,17850968128,143229240485892,2491752130564,2216874223620,2216874223620,141030217230400,292728875072,17850968128,17850968128,141013037361220,275549005892,671098948,671098948,424704217196544,283966728841216,283691850934272,283691850934272,141013037361220,275549005892,671098948,671098948,143229240485888,2491752130560,2216874223616,2216874223616,141013037361156,275549005828,671098884,671098884,141013037361216,275549005888,671098944,671098944,141013037361156,275549005828,671098884,671098884,141013037361216,275549005888,671098944,671098944,0],[72625527495610504,585457750152,72625527495610496,585457750144,567933457682568,585457750152,567933457682560,585457750144,72625527495610376,585457750024,72625527495610368,585457750016,567933457682440,585457750024,567933457682432,585457750016,551098011784,551098011784,551098011776,551098011776,551098011784,551098011784,551098011776,551098011776,551098011656,551098011656,551098011648,551098011648,551098011656,551098011656,551098011648,551098011648,4983504261256,585457750152,4983504261248,585457750144,4983504261256,585457750152,4983504261248,585457750144,4983504261128,585457750024,4983504261120,585457750016,4983504261128,585457750024,4983504261120,585457750016,551098011784,551098011784,551098011776,551098011776,551098011784,551098011784,551098011776,551098011776,551098011656,551098011656,551098011648,551098011648,551098011656,551098011656,551098011648,551098011648,72624977739796616,35701936264,72624977739796608,35701936256,567383701868680,35701936264,567383701868672,35701936256,72624977739796488,35701936136,72624977739796480,35701936128,567383701868552,35701936136,567383701868544,35701936128,1342197896,1342197896,1342197888,1342197888,1342197896,1342197896,1342197888,1342197888,1342197768,1342197768,1342197760,1342197760,1342197768,1342197768,1342197760,1342197760,4433748447368,35701936264,4433748447360,35701936256,4433748447368,35701936264,4433748447360,35701936256,4433748447240,35701936136,4433748447232,35701936128,4433748447240,35701936136,4433748447232,35701936128,1342197896,1342197896,1342197888,1342197888,1342197896,1342197896,1342197888,1342197888,1342197768,1342197768,1342197760,1342197760,1342197768,1342197768,1342197760,1342197760,0],[145249955479592976,2684395520,71403872272,2684395520,8867496894480,2684395520,71403872272,2684395520,1134767403737104,145249955479592960,71403872272,71403872256,8867496894480,8867496894464,71403872272,71403872256,2684395536,1134767403737088,2684395536,71403872256,2684395536,8867496894464,2684395536,71403872256,2684395536,2684395520,2684395536,2684395520,2684395536,2684395520,2684395536,2684395520,0],[290499906664153120,138512711712,1073758240,1073758240,17730698756128,138512711712,1073758240,1073758240,290499906664153088,138512711680,1073758208,1073758208,17730698756096,138512711680,1073758208,1073758208,138512711712,2269530512441376,1073758240,1073758240,138512711712,17730698756128,1073758240,1073758240,138512711680,2269530512441344,1073758208,1073758208,138512711680,17730698756096,1073758208,1073758208,0],[1155177711057110024,8590066696,4406636577792,8590066688,1155177711057108992,8590065664,4406636576768,8590065664,4406636577800,8590066696,1155177711057110016,8590066688,4406636576768,8590065664,1155177711057108992,8590065664,2256206450263048,8590066696,4406636577792,8590066688,2256206450262016,8590065664,4406636576768,8590065664,4406636577800,8590066696,2256206450263040,8590066688,4406636576768,8590065664,2256206450262016,8590065664,0],[2310355426409252880,8817568188416,21475166224,21475166208,8817568186368,2310355426409252864,21475164160,21475166208,2310355426409250816,8817568186368,21475164160,21475164160,8817568188432,2310355426409250816,21475166224,21475164160,4512417195558928,8817568188416,21475166224,21475166208,8817568186368,4512417195558912,21475164160,21475166208,4512417195556864,8817568186368,21475164160,21475164160,8817568188432,4512417195556864,21475166224,21475164160,0],[4620711952330133792,18734648004896,4620710852818506016,17635136377120,1142461956096,1142461956096,42950328320,42950328320,1142461960480,1142461960480,42950332704,42950332704,4620711952330133536,18734648004640,4620710852818505760,17635136376864,4620711952330129664,18734648000768,4620710852818501888,17635136372992,1142461960224,1142461960224,42950332448,42950332448,1142461956352,1142461956352,42950328576,42950328576,4620711952330129408,18734648000512,4620710852818501632,17635136372736,18734648004864,9025933902745856,17635136377088,9024834391118080,1142461956096,1142461956096,42950328320,42950328320,1142461960448,1142461960448,42950332672,42950332672,18734648004608,9025933902745600,17635136376832,9024834391117824,4620711952330129664,18734648000768,4620710852818501888,17635136372992,1142461960192,1142461960192,42950332416,42950332416,1142461956352,1142461956352,42950328576,42950328576,4620711952330129408,18734648000512,4620710852818501632,17635136372736,18734648004896,9025933902745888,17635136377120,9024834391118112,1142461956096,1142461956096,42950328320,42950328320,1142461960480,1142461960480,42950332704,42950332704,18734648004640,9025933902745632,17635136376864,9024834391117856,18734648000768,9025933902741760,17635136372992,9024834391113984,1142461960224,1142461960224,42950332448,42950332448,1142461956352,1142461956352,42950328576,42950328576,18734648000512,9025933902741504,17635136372736,9024834391113728,4620711952330133760,18734648004864,4620710852818505984,17635136377088,1142461956096,1142461956096,42950328320,42950328320,1142461960448,1142461960448,42950332672,42950332672,4620711952330133504,18734648004608,4620710852818505728,17635136376832,18734648000768,9025933902741760,17635136372992,9024834391113984,1142461960192,1142461960192,42950332416,42950332416,1142461956352,1142461956352,42950328576,42950328576,18734648000512,9025933902741504,17635136372736,9024834391113728,0],[9241705379636978241,2284923912192,283759900631553,9241423904660267008,18333342782202433,2284923912192,283759900631553,18051867805491200,318944272711680,9241423904660267585,283759900622848,2284923920897,318944272711680,18051867805491777,283759900622848,2284923920897,283759900623361,37469296001024,318944272720385,2284923912192,283759900623361,37469296001024,318944272720385,2284923912192,85900656640,2284923912705,9241421705637011456,37469296009729,85900656640,2284923912705,18049668782235648,37469296009729,9241421705637012033,85900656640,85900665345,9241421705637011456,18049668782236225,85900656640,85900665345,18049668782235648,35270272745472,9241421705637012033,85900656640,85900665345,35270272745472,18049668782236225,85900656640,85900665345,85900657153,35270272745472,35270272754177,85900656640,85900657153,35270272745472,35270272754177,85900656640,9241705379636978240,85900657153,283759900631552,35270272754177,18333342782202432,85900657153,283759900631552,35270272754177,9241705379636977728,9241423904660267584,283759900631040,2284923920896,18333342782201920,18051867805491776,283759900631040,2284923920896,283759900623360,9241423904660267072,318944272720384,2284923920384,283759900623360,18051867805491264,318944272720384,2284923920384,283759900622848,2284923912704,318944272719872,37469296009728,283759900622848,2284923912704,318944272719872,37469296009728,9241421705637012032,2284923912192,85900665344,37469296009216,18049668782236224,2284923912192,85900665344,37469296009216,9241421705637011520,9241421705637012032,85900664832,85900665344,18049668782235712,18049668782236224,85900664832,85900665344,85900657152,9241421705637011520,35270272754176,85900664832,85900657152,18049668782235712,35270272754176,85900664832,85900656640,85900657152,35270272753664,35270272754176,85900656640,85900657152,35270272753664,35270272754176,9241705379636977728,85900656640,283759900631040,35270272753664,18333342782201920,85900656640,283759900631040,35270272753664,283759900631617,9241423904660267072,9241705379636969985,2284923920384,283759900631617,18051867805491264,18333342782194177,2284923920384,283759900622848,2284923920961,318944272719872,9241423904660259329,283759900622848,2284923920961,318944272719872,18051867805483521,318944272720449,2284923912192,283759900631553,37469296009216,318944272720449,2284923912192,283759900631553,37469296009216,9241421705637011520,37469296009793,85900664832,2284923920897,18049668782235712,37469296009793,85900664832,2284923920897,85900665409,9241421705637011520,9241421705637003777,85900664832,85900665409,18049668782235712,18049668782227969,85900664832,85900656640,85900665409,35270272753664,9241421705637003777,85900656640,85900665409,35270272753664,18049668782227969,35270272754241,85900656640,85900665345,35270272753664,35270272754241,85900656640,85900665345,35270272753664,283759900631616,35270272754241,9241705379636969984,85900665345,283759900631616,35270272754241,18333342782194176,85900665345,283759900631104,2284923920960,9241705379636969472,9241423904660259328,283759900631104,2284923920960,18333342782193664,18051867805483520,318944272720448,2284923920448,283759900631552,9241423904660258816,318944272720448,2284923920448,283759900631552,18051867805483008,318944272719936,37469296009792,283759900631040,2284923920896,318944272719936,37469296009792,283759900631040,2284923920896,85900665408,37469296009280,9241421705637003776,2284923920384,85900665408,37469296009280,18049668782227968,2284923920384,85900664896,85900665408,9241421705637003264,9241421705637003776,85900664896,85900665408,18049668782227456,18049668782227968,35270272754240,85900664896,85900665344,9241421705637003264,35270272754240,85900664896,85900665344,18049668782227456,35270272753728,35270272754240,85900664832,85900665344,35270272753728,35270272754240,85900664832,85900665344,283759900631104,35270272753728,9241705379636969472,85900664832,283759900631104,35270272753728,18333342782193664,85900664832,9241705379636969985,2284923920448,283759900623361,9241423904660258816,18333342782194177,2284923920448,283759900623361,18051867805483008,318944272719936,9241423904660259329,283759900631040,2284923912705,318944272719936,18051867805483521,283759900631040,2284923912705,283759900631617,37469296009280,318944272712193,2284923920384,283759900631617,37469296009280,318944272712193,2284923920384,85900664896,2284923920961,9241421705637003264,37469296001537,85900664896,2284923920961,18049668782227456,37469296001537,9241421705637003777,85900664896,85900657153,9241421705637003264,18049668782227969,85900664896,85900657153,18049668782227456,35270272753728,9241421705637003777,85900664832,85900657153,35270272753728,18049668782227969,85900664832,85900657153,85900665409,35270272753728,35270272745985,85900664832,85900665409,35270272753728,35270272745985,85900664832,9241705379636969984,85900665409,283759900623360,35270272745985,18333342782194176,85900665409,283759900623360,35270272745985,9241705379636969472,9241423904660259328,283759900622848,2284923912704,18333342782193664,18051867805483520,283759900622848,2284923912704,283759900631616,9241423904660258816,318944272712192,2284923912192,283759900631616,18051867805483008,318944272712192,2284923912192,283759900631104,2284923920960,318944272711680,37469296001536,283759900631104,2284923920960,318944272711680,37469296001536,9241421705637003776,2284923920448,85900657152,37469296001024,18049668782227968,2284923920448,85900657152,37469296001024,9241421705637003264,9241421705637003776,85900656640,85900657152,18049668782227456,18049668782227968,85900656640,85900657152,85900665408,9241421705637003264,35270272745984,85900656640,85900665408,18049668782227456,35270272745984,85900656640,85900664896,85900665408,35270272745472,35270272745984,85900664896,85900665408,35270272745472,35270272745984,9241705379636969472,85900664896,283759900622848,35270272745472,18333342782193664,85900664896,283759900622848,35270272745472,283759900623361,9241423904660258816,9241705379636978177,2284923912192,283759900623361,18051867805483008,18333342782202369,2284923912192,283759900631104,2284923912705,318944272711680,9241423904660267521,283759900631104,2284923912705,318944272711680,18051867805491713,318944272712193,2284923920448,283759900623361,37469296001024,318944272712193,2284923920448,283759900623361,37469296001024,9241421705637003264,37469296001537,85900656640,2284923912705,18049668782227456,37469296001537,85900656640,2284923912705,85900657153,9241421705637003264,9241421705637011969,85900656640,85900657153,18049668782227456,18049668782236161,85900656640,85900664896,85900657153,35270272745472,9241421705637011969,85900664896,85900657153,35270272745472,18049668782236161,35270272745985,85900664896,85900657153,35270272745472,35270272745985,85900664896,85900657153,35270272745472,283759900623360,35270272745985,9241705379636978176,85900657153,283759900623360,35270272745985,18333342782202368,85900657153,283759900622848,2284923912704,9241705379636977664,9241423904660267520,283759900622848,2284923912704,18333342782201856,18051867805491712,318944272712192,2284923912192,283759900623360,9241423904660267008,318944272712192,2284923912192,283759900623360,18051867805491200,318944272711680,37469296001536,283759900622848,2284923912704,318944272711680,37469296001536,283759900622848,2284923912704,85900657152,37469296001024,9241421705637011968,2284923912192,85900657152,37469296001024,18049668782236160,2284923912192,85900656640,85900657152,9241421705637011456,9241421705637011968,85900656640,85900657152,18049668782235648,18049668782236160,35270272745984,85900656640,85900657152,9241421705637011456,35270272745984,85900656640,85900657152,18049668782235648,35270272745472,35270272745984,85900656640,85900657152,35270272745472,35270272745984,85900656640,85900657152,283759900622848,35270272745472,9241705379636977664,85900656640,283759900622848,35270272745472,18333342782201856,85900656640,0],[108724279602332802,108724279602332674,36099337564455938,36099337564455938,72695482583368834,72695482583368706,70540545491970,70540545491970,4569847841920,4569847841792,171801314304,171801314304,4569847841920,4569847841792,171801314304,171801314304,36103735610966016,36103735610966016,36099337564454912,36099337564454912,74938592002048,74938592002048,70540545490944,70540545490944,567519801245696,567519801245696,171801313280,171801313280,567519801245696,567519801245696,171801313280,171801313280,36666685564404866,36666685564404738,36099337564472450,36099337564472322,637888545440898,637888545440770,70540545508482,70540545508354,4569847841920,4569847841792,171801330816,171801330688,4569847841920,4569847841792,171801330816,171801330688,108724279602331776,108724279602331648,36099337564454912,36099337564454912,72695482583367808,72695482583367680,70540545490944,70540545490944,4569847840896,4569847840768,171801313280,171801313280,4569847840896,4569847840768,171801313280,171801313280,36103735610967040,36103735610967040,36099337564472450,36099337564472322,74938592003072,74938592003072,70540545508482,70540545508354,4569847825410,4569847825410,171801330816,171801330688,4569847825410,4569847825410,171801330816,171801330688,36666685564403840,36666685564403712,36099337564471424,36099337564471296,637888545439872,637888545439744,70540545507456,70540545507328,4569847840896,4569847840768,171801329792,171801329664,4569847840896,4569847840768,171801329792,171801329664,36103735610967040,36103735610967040,36099337564455936,36099337564455936,74938592003072,74938592003072,70540545491968,70540545491968,4569847825410,4569847825410,171801314306,171801314306,4569847825410,4569847825410,171801314306,171801314306,36103735610966016,36103735610966016,36099337564471424,36099337564471296,74938592002048,74938592002048,70540545507456,70540545507328,4569847824384,4569847824384,171801329792,171801329664,4569847824384,4569847824384,171801329792,171801329664,108724279602332800,108724279602332672,36099337564455936,36099337564455936,72695482583368832,72695482583368704,70540545491968,70540545491968,72625113839191170,72625113839191042,171801314306,171801314306,72625113839191170,72625113839191042,171801314306,171801314306,36103735610966016,36103735610966016,36099337564454912,36099337564454912,74938592002048,74938592002048,70540545490944,70540545490944,4569847824384,4569847824384,171801313280,171801313280,4569847824384,4569847824384,171801313280,171801313280,36666685564404864,36666685564404736,36099337564472448,36099337564472320,637888545440896,637888545440768,70540545508480,70540545508352,567519801263234,567519801263106,171801330818,171801330690,567519801263234,567519801263106,171801330818,171801330690,108724279602331776,108724279602331648,36099337564454912,36099337564454912,72695482583367808,72695482583367680,70540545490944,70540545490944,72625113839190144,72625113839190016,171801313280,171801313280,72625113839190144,72625113839190016,171801313280,171801313280,108724279602316290,108724279602316290,36099337564472448,36099337564472320,72695482583352322,72695482583352322,70540545508480,70540545508352,4569847825408,4569847825408,171801330818,171801330690,4569847825408,4569847825408,171801330818,171801330690,36666685564403840,36666685564403712,36099337564471424,36099337564471296,637888545439872,637888545439744,70540545507456,70540545507328,567519801262208,567519801262080,171801329792,171801329664,567519801262208,567519801262080,171801329792,171801329664,36666685564388354,36666685564388354,36099337564455938,36099337564455938,637888545424386,637888545424386,70540545491970,70540545491970,4569847825408,4569847825408,171801314304,171801314304,4569847825408,4569847825408,171801314304,171801314304,108724279602315264,108724279602315264,36099337564471424,36099337564471296,72695482583351296,72695482583351296,70540545507456,70540545507328,4569847824384,4569847824384,171801329792,171801329664,4569847824384,4569847824384,171801329792,171801329664,36103735610983554,36103735610983426,36099337564455938,36099337564455938,74938592019586,74938592019458,70540545491970,70540545491970,72625113839191168,72625113839191040,171801314304,171801314304,72625113839191168,72625113839191040,171801314304,171801314304,36666685564387328,36666685564387328,36099337564454912,36099337564454912,637888545423360,637888545423360,70540545490944,70540545490944,4569847824384,4569847824384,171801313280,171801313280,4569847824384,4569847824384,171801313280,171801313280,36103735610983554,36103735610983426,36099337564472450,36099337564472322,74938592019586,74938592019458,70540545508482,70540545508354,567519801263232,567519801263104,171801330816,171801330688,567519801263232,567519801263104,171801330816,171801330688,36103735610982528,36103735610982400,36099337564454912,36099337564454912,74938592018560,74938592018432,70540545490944,70540545490944,72625113839190144,72625113839190016,171801313280,171801313280,72625113839190144,72625113839190016,171801313280,171801313280,108724279602316288,108724279602316288,36099337564472450,36099337564472322,72695482583352320,72695482583352320,70540545508482,70540545508354,72625113839174658,72625113839174658,171801330816,171801330688,72625113839174658,72625113839174658,171801330816,171801330688,36103735610982528,36103735610982400,36099337564471424,36099337564471296,74938592018560,74938592018432,70540545507456,70540545507328,567519801262208,567519801262080,171801329792,171801329664,567519801262208,567519801262080,171801329792,171801329664,36666685564388352,36666685564388352,36099337564455936,36099337564455936,637888545424384,637888545424384,70540545491968,70540545491968,567519801246722,567519801246722,171801314306,171801314306,567519801246722,567519801246722,171801314306,171801314306,108724279602315264,108724279602315264,36099337564471424,36099337564471296,72695482583351296,72695482583351296,70540545507456,70540545507328,72625113839173632,72625113839173632,171801329792,171801329664,72625113839173632,72625113839173632,171801329792,171801329664,36103735610983552,36103735610983424,36099337564455936,36099337564455936,74938592019584,74938592019456,70540545491968,70540545491968,4569847841922,4569847841794,171801314306,171801314306,4569847841922,4569847841794,171801314306,171801314306,36666685564387328,36666685564387328,36099337564454912,36099337564454912,637888545423360,637888545423360,70540545490944,70540545490944,567519801245696,567519801245696,171801313280,171801313280,567519801245696,567519801245696,171801313280,171801313280,36103735610983552,36103735610983424,36099337564472448,36099337564472320,74938592019584,74938592019456,70540545508480,70540545508352,4569847841922,4569847841794,171801330818,171801330690,4569847841922,4569847841794,171801330818,171801330690,36103735610982528,36103735610982400,36099337564454912,36099337564454912,74938592018560,74938592018432,70540545490944,70540545490944,4569847840896,4569847840768,171801313280,171801313280,4569847840896,4569847840768,171801313280,171801313280,36103735610967042,36103735610967042,36099337564472448,36099337564472320,74938592003074,74938592003074,70540545508480,70540545508352,72625113839174656,72625113839174656,171801330818,171801330690,72625113839174656,72625113839174656,171801330818,171801330690,36103735610982528,36103735610982400,36099337564471424,36099337564471296,74938592018560,74938592018432,70540545507456,70540545507328,4569847840896,4569847840768,171801329792,171801329664,4569847840896,4569847840768,171801329792,171801329664,36103735610967042,36103735610967042,36099337564455938,36099337564455938,74938592003074,74938592003074,70540545491970,70540545491970,567519801246720,567519801246720,171801314304,171801314304,567519801246720,567519801246720,171801314304,171801314304,36103735610966016,36103735610966016,36099337564471424,36099337564471296,74938592002048,74938592002048,70540545507456,70540545507328,72625113839173632,72625113839173632,171801329792,171801329664,72625113839173632,72625113839173632,171801329792,171801329664,0],[145390965166737412,343602626560,141081091016708,1275777090848768,149877184038916,141081090983936,141081091016708,149877184006144,145250227678382084,141081090983936,343602661380,1135039602493440,9139695683588,343602628608,343602661380,9139695650816,145390965166735360,343602628608,141081091014656,1275777090846720,149877184036864,141081090981888,141081091014656,149877184004096,145250227678380032,141081090981888,343602659328,1135039602491392,9139695681536,343602626560,343602659328,9139695648768,1275777090881540,343602626560,141081091016708,145390965166737408,149877184038916,141081091016704,141081091016708,149877184038912,1135039602526212,141081091016704,343602661380,145250227678382080,9139695683588,343602661376,343602661380,9139695683584,1275777090879488,343602661376,141081091014656,145390965166735360,149877184036864,141081091014656,141081091014656,149877184036864,1135039602524160,141081091014656,343602659328,145250227678380032,9139695681536,343602659328,343602659328,9139695681536,145390965166704644,343602659328,141081090983940,1275777090881536,149877184006148,141081091016704,141081090983940,149877184038912,145250227678349316,141081091016704,343602628612,1135039602526208,9139695650820,343602661376,343602628612,9139695683584,145390965166702592,343602661376,141081090981888,1275777090879488,149877184004096,141081091014656,141081090981888,149877184036864,145250227678347264,141081091014656,343602626560,1135039602524160,9139695648768,343602659328,343602626560,9139695681536,1275777090848772,343602659328,141081090983940,145390965166704640,149877184006148,141081090983936,141081090983940,149877184006144,1135039602493444,141081090983936,343602628612,145250227678349312,9139695650820,343602628608,343602628612,9139695650816,1275777090846720,343602628608,141081090981888,145390965166702592,149877184004096,141081090981888,141081090981888,149877184004096,1135039602491392,141081090981888,343602626560,145250227678347264,9139695648768,343602626560,343602626560,9139695648768,0],[290500455356698632,18279391301640,2270079204982784,18279391297536,687205257224,687205257224,687205253120,687205253120,2270079204986888,18279391301640,290500455356698624,18279391301632,687205257224,687205257224,687205257216,687205257216,290500455356694528,18279391297536,2270079204986880,18279391301632,687205253120,687205253120,687205257216,687205257216,2270079204982784,18279391297536,290500455356694528,18279391297536,687205253120,687205253120,687205253120,687205253120,0],[580999811184992272,4539058881568784,274882109440,274882109440,35459254198288,35459254198288,274882109440,274882109440,580999811184984064,4539058881560576,274882101248,274882101248,35459254190080,35459254190080,274882101248,274882101248,274882109456,274882109456,580999811184992256,4539058881568768,274882109456,274882109456,35459254198272,35459254198272,274882101248,274882101248,580999811184984064,4539058881560576,274882101248,274882101248,35459254190080,35459254190080,0],[577588851267340304,577588851267338240,2199057074192,2199057072128,577588851267076096,577588851267076096,2199056809984,2199056809984,577588851267340288,577588851267338240,2199057074176,2199057072128,577588851267076096,577588851267076096,2199056809984,2199056809984,1128098963916816,1128098963914752,2199057074192,2199057072128,1128098963652608,1128098963652608,2199056809984,2199056809984,1128098963916800,1128098963914752,2199057074176,2199057072128,1128098963652608,1128098963652608,2199056809984,2199056809984,0],[1155178802063085600,1155178802063085568,5497642024960,5497642024960,2257297456238624,2257297456238592,5497642024960,5497642024960,1155178802062557184,1155178802062557184,5497642553376,5497642553344,2257297455710208,2257297455710208,5497642553376,5497642553344,1155178802063081472,1155178802063081472,5497642024960,5497642024960,2257297456234496,2257297456234496,5497642024960,5497642024960,1155178802062557184,1155178802062557184,5497642549248,5497642549248,2257297455710208,2257297455710208,5497642549248,5497642549248,0],[2310639079102947392,4796069889253440,292470260826112,292470260826112,2310639079102947328,4796069889253376,292470260826112,292470260826112,2310357604126236736,4514594912542784,10995284115456,10995284115456,2310357604126236672,4514594912542720,10995284115456,10995284115456,2310639079101825024,4796069888131072,292470261809152,292470261809152,2310639079101825024,4796069888131072,292470261809152,292470261809152,2310357604125114368,4514594911420416,10995285098496,10995285098496,2310357604125114368,4514594911420416,10995285098496,10995285098496,292470261882944,292470261882944,2310639079102939136,4796069889245184,292470261882880,292470261882880,2310639079102939136,4796069889245184,10995285172288,10995285172288,2310357604126228480,4514594912534528,10995285172224,10995285172224,2310357604126228480,4514594912534528,292470260760576,292470260760576,2310639079101825024,4796069888131072,292470260760576,292470260760576,2310639079101825024,4796069888131072,10995284049920,10995284049920,2310357604125114368,4514594911420416,10995284049920,10995284049920,2310357604125114368,4514594911420416,2310639079101890560,4796069888196608,292470261874688,292470261874688,2310639079101890560,4796069888196608,292470261874688,292470261874688,2310357604125179904,4514594911485952,10995285164032,10995285164032,2310357604125179904,4514594911485952,10995285164032,10995285164032,2310639079102881856,4796069889187904,292470260760576,292470260760576,2310639079102881792,4796069889187840,292470260760576,292470260760576,2310357604126171200,4514594912477248,10995284049920,10995284049920,2310357604126171136,4514594912477184,10995284049920,10995284049920,292470260826112,292470260826112,2310639079101890560,4796069888196608,292470260826112,292470260826112,2310639079101890560,4796069888196608,10995284115456,10995284115456,2310357604125179904,4514594911485952,10995284115456,10995284115456,2310357604125179904,4514594911485952,292470261817408,292470261817408,2310639079102873600,4796069889179648,292470261817344,292470261817344,2310639079102873600,4796069889179648,10995285106752,10995285106752,2310357604126162944,4514594912468992,10995285106688,10995285106688,2310357604126162944,4514594912468992,0],[4693335752243822976,72642534561562624,4693335752243806464,72642534561546240,4620715208252473472,21990568099840,4620715208252456960,21990568099840,81649733816435072,72642534561562624,81649733816418560,72642534561546240,9029189825085568,21990568099840,9029189825069056,21990568099840,4621278158205763584,72642534561694080,4621278158205747200,72642534561677568,4620715208250228736,21990570344576,4620715208250228736,21990570328064,9592139778375680,72642534561694080,9592139778359296,72642534561677568,9029189822840832,21990570344576,9029189822840832,21990570328064,4621278158205895040,584940523634688,4621278158205878528,584940523618304,4620715208252473472,21990568099840,4620715208252456960,21990568099840,9592139778507136,584940523634688,9592139778490624,584940523618304,9029189825085568,21990568099840,9029189825069056,21990568099840,4693335752243822848,584940523766144,4693335752243806464,584940523749632,4620715208252473344,21990570344576,4620715208252456960,21990570328064,81649733816434944,584940523766144,81649733816418560,584940523749632,9029189825085440,21990570344576,9029189825069056,21990570328064,4693335752243691648,72642534561693952,4693335752243675136,72642534561677568,4620715208252342400,21990570344448,4620715208252325888,21990570328064,81649733816303744,72642534561693952,81649733816287232,72642534561677568,9029189824954496,21990570344448,9029189824937984,21990570328064,4621278158205894912,72642534561562752,4621278158205878528,72642534561546240,4620715208252473344,21990570213504,4620715208252456960,21990570196992,9592139778507008,72642534561562752,9592139778490624,72642534561546240,9029189825085440,21990570213504,9029189825069056,21990570196992,4621278158205763712,584940523766016,4621278158205747200,584940523749632,4620715208252342400,21990570344448,4620715208252325888,21990570328064,9592139778375808,584940523766016,9592139778359296,584940523749632,9029189824954496,21990570344448,9029189824937984,21990570328064,4693335752243691520,584940523634816,4693335752243675136,584940523618304,4620715208252342272,21990570213504,4620715208252325888,21990570196992,81649733816303616,584940523634816,81649733816287232,584940523618304,9029189824954368,21990570213504,9029189824937984,21990570196992,4693335752241709056,72642534561562624,4693335752241709056,72642534561546240,4620715208252473728,21990570213376,4620715208252457216,21990570196992,81649733814321152,72642534561562624,81649733814321152,72642534561546240,9029189825085824,21990570213376,9029189825069312,21990570196992,4621278158205763584,72642534559580160,4621278158205747200,72642534559580160,4620715208252342272,21990570344832,4620715208252325888,21990570328320,9592139778375680,72642534559580160,9592139778359296,72642534559580160,9029189824954368,21990570344832,9029189824937984,21990570328320,4621278158203781120,584940523634688,4621278158203781120,584940523618304,4620715208252473728,21990570213376,4620715208252457216,21990570196992,9592139776393216,584940523634688,9592139776393216,584940523618304,9029189825085824,21990570213376,9029189825069312,21990570196992,4693335752241709056,584940521652224,4693335752241709056,584940521652224,4620715208252473600,21990570344832,4620715208252457216,21990570328320,81649733814321152,584940521652224,81649733814321152,584940521652224,9029189825085696,21990570344832,9029189825069312,21990570328320,4693335752241577984,72642534559580160,4693335752241577984,72642534559580160,4620715208252342400,21990570344704,4620715208252325888,21990570328320,81649733814190080,72642534559580160,81649733814190080,72642534559580160,9029189824954496,21990570344704,9029189824937984,21990570328320,4621278158203781120,72642534559449088,4621278158203781120,72642534559449088,4620715208252473600,21990570213504,4620715208252457216,21990570196992,9592139776393216,72642534559449088,9592139776393216,72642534559449088,9029189825085696,21990570213504,9029189825069312,21990570196992,4621278158203650048,584940521652224,4621278158203650048,584940521652224,4620715208252342400,21990570344704,4620715208252325888,21990570328320,9592139776262144,584940521652224,9592139776262144,584940521652224,9029189824954496,21990570344704,9029189824937984,21990570328320,4693335752241577984,584940521521152,4693335752241577984,584940521521152,4620715208252342272,21990570213504,4620715208252325888,21990570196992,81649733814190080,584940521521152,81649733814190080,584940521521152,9029189824954368,21990570213504,9029189824937984,21990570196992,4693335752241709312,72642534559449088,4693335752241709312,72642534559449088,4620715208250359808,21990570213376,4620715208250359808,21990570196992,81649733814321408,72642534559449088,81649733814321408,72642534559449088,9029189822971904,21990570213376,9029189822971904,21990570196992,4621278158203650048,72642534559580416,4621278158203650048,72642534559580416,4620715208252342272,21990568230912,4620715208252325888,21990568230912,9592139776262144,72642534559580416,9592139776262144,72642534559580416,9029189824954368,21990568230912,9029189824937984,21990568230912,4621278158203781376,584940521521152,4621278158203781376,584940521521152,4620715208250359808,21990570213376,4620715208250359808,21990570196992,9592139776393472,584940521521152,9592139776393472,584940521521152,9029189822971904,21990570213376,9029189822971904,21990570196992,4693335752241709312,584940521652480,4693335752241709312,584940521652480,4620715208250359808,21990568230912,4620715208250359808,21990568230912,81649733814321408,584940521652480,81649733814321408,584940521652480,9029189822971904,21990568230912,9029189822971904,21990568230912,4693335752241577984,72642534559580416,4693335752241577984,72642534559580416,4620715208250228736,21990568230912,4620715208250228736,21990568230912,81649733814190080,72642534559580416,81649733814190080,72642534559580416,9029189822840832,21990568230912,9029189822840832,21990568230912,4621278158203781376,72642534559449088,4621278158203781376,72642534559449088,4620715208250359808,21990568099840,4620715208250359808,21990568099840,9592139776393472,72642534559449088,9592139776393472,72642534559449088,9029189822971904,21990568099840,9029189822971904,21990568099840,4621278158203650048,584940521652480,4621278158203650048,584940521652480,4620715208250228736,21990568230912,4620715208250228736,21990568230912,9592139776262144,584940521652480,9592139776262144,584940521652480,9029189822840832,21990568230912,9029189822840832,21990568230912,4693335752241577984,584940521521152,4693335752241577984,584940521521152,4620715208250228736,21990568099840,4620715208250228736,21990568099840,81649733814190080,584940521521152,81649733814190080,584940521521152,9029189822840832,21990568099840,9029189822840832,21990568099840,4693335752243822720,72642534559449088,4693335752243806208,72642534559449088,4620715208250360064,21990568099840,4620715208250360064,21990568099840,81649733816434816,72642534559449088,81649733816418304,72642534559449088,9029189822972160,21990568099840,9029189822972160,21990568099840,4621278158203650048,72642534561693824,4621278158203650048,72642534561677312,4620715208250228736,21990568231168,4620715208250228736,21990568231168,9592139776262144,72642534561693824,9592139776262144,72642534561677312,9029189822840832,21990568231168,9029189822840832,21990568231168,4621278158205894784,584940521521152,4621278158205878272,584940521521152,4620715208250360064,21990568099840,4620715208250360064,21990568099840,9592139778506880,584940521521152,9592139778490368,584940521521152,9029189822972160,21990568099840,9029189822972160,21990568099840,4693335752243822592,584940523765888,4693335752243806208,584940523749376,4620715208250360064,21990568231168,4620715208250360064,21990568231168,81649733816434688,584940523765888,81649733816418304,584940523749376,9029189822972160,21990568231168,9029189822972160,21990568231168,4693335752243691648,72642534561693696,4693335752243675136,72642534561677312,4620715208250228736,21990568231168,4620715208250228736,21990568231168,81649733816303744,72642534561693696,81649733816287232,72642534561677312,9029189822840832,21990568231168,9029189822840832,21990568231168,4621278158205894656,72642534561562752,4621278158205878272,72642534561546240,4620715208250360064,21990568099840,4620715208250360064,21990568099840,9592139778506752,72642534561562752,9592139778490368,72642534561546240,9029189822972160,21990568099840,9029189822972160,21990568099840,4621278158205763712,584940523765760,4621278158205747200,584940523749376,4620715208250228736,21990568231168,4620715208250228736,21990568231168,9592139778375808,584940523765760,9592139778359296,584940523749376,9029189822840832,21990568231168,9029189822840832,21990568231168,4693335752243691520,584940523634816,4693335752243675136,584940523618304,4620715208250228736,21990568099840,4620715208250228736,21990568099840,81649733816303616,584940523634816,81649733816287232,584940523618304,9029189822840832,21990568099840,9029189822840832,21990568099840,0],[9386671504487645697,9241430416504947201,145285069118898176,43981136199680,145285069123387905,43981140689409,9386671504487612929,9241430416504914433,163299467632869889,18058379650171393,145285069123355137,43981140656641,145285069123387905,43981140689409,163299467632837121,18058379650138625,9386671504487645696,9241430416504947200,145285069123355137,43981140656641,145285069123387904,43981140689408,9386671504487612928,9241430416504914432,163299467632869888,18058379650171392,145285069123355136,43981140656640,145285069123387904,43981140689408,163299467632837120,18058379650138624,9386671504487645184,9241430416504946688,145285069123355136,43981140656640,145285069123387392,43981140688896,9386671504487612416,9241430416504913920,163299467632869376,18058379650170880,145285069123354624,43981140656128,145285069123387392,43981140688896,163299467632836608,18058379650138112,9386671504487645184,9241430416504946688,145285069123354624,43981140656128,145285069123387392,43981140688896,9386671504487612416,9241430416504913920,163299467632869376,18058379650170880,145285069123354624,43981140656128,145285069123387392,43981140688896,163299467632836608,18058379650138112,9242556316407300096,9241430416500457472,145285069123354624,43981140656128,1169881043042304,43981136199680,9242556316407300096,9241430416500457472,19184279552524288,18058379645681664,1169881043042304,43981136199680,1169881043042304,43981136199680,19184279552524288,18058379645681664,9242556316407300096,9241430416500457472,1169881043042304,43981136199680,1169881043042304,43981136199680,9242556316407300096,9241430416500457472,19184279552524288,18058379645681664,1169881043042304,43981136199680,1169881043042304,43981136199680,19184279552524288,18058379645681664,9242556316407300096,9241430416500457472,1169881043042304,43981136199680,1169881043042304,43981136199680,9242556316407300096,9241430416500457472,19184279552524288,18058379645681664,1169881043042304,43981136199680,1169881043042304,43981136199680,19184279552524288,18058379645681664,9242556316407300096,9241430416500457472,1169881043042304,43981136199680,1169881043042304,43981136199680,9242556316407300096,9241430416500457472,19184279552524288,18058379645681664,1169881043042304,43981136199680,1169881043042304,43981136199680,19184279552524288,18058379645681664,9242556316411789825,9241430416504947201,1169881043042304,43981136199680,1169881047532033,43981140689409,9242556316411757057,9241430416504914433,19184279557014017,18058379650171393,1169881047499265,43981140656641,1169881047532033,43981140689409,19184279556981249,18058379650138625,9242556316411789824,9241430416504947200,1169881047499265,43981140656641,1169881047532032,43981140689408,9242556316411757056,9241430416504914432,19184279557014016,18058379650171392,1169881047499264,43981140656640,1169881047532032,43981140689408,19184279556981248,18058379650138624,9242556316411789312,9241430416504946688,1169881047499264,43981140656640,1169881047531520,43981140688896,9242556316411756544,9241430416504913920,19184279557013504,18058379650170880,1169881047498752,43981140656128,1169881047531520,43981140688896,19184279556980736,18058379650138112,9242556316411789312,9241430416504946688,1169881047498752,43981140656128,1169881047531520,43981140688896,9242556316411756544,9241430416504913920,19184279557013504,18058379650170880,1169881047498752,43981140656128,1169881047531520,43981140688896,19184279556980736,18058379650138112,9386671504487383040,9241430416504684544,1169881047498752,43981140656128,145285069123125248,43981140426752,9386671504487350272,9241430416504651776,163299467632607232,18058379649908736,145285069123092480,43981140393984,145285069123125248,43981140426752,163299467632574464,18058379649875968,9386671504487383040,9241430416504684544,145285069123092480,43981140393984,145285069123125248,43981140426752,9386671504487350272,9241430416504651776,163299467632607232,18058379649908736,145285069123092480,43981140393984,145285069123125248,43981140426752,163299467632574464,18058379649875968,9386671504487383040,9241430416504684544,145285069123092480,43981140393984,145285069123125248,43981140426752,9386671504487350272,9241430416504651776,163299467632607232,18058379649908736,145285069123092480,43981140393984,145285069123125248,43981140426752,163299467632574464,18058379649875968,9386671504487383040,9241430416504684544,145285069123092480,43981140393984,145285069123125248,43981140426752,9386671504487350272,9241430416504651776,163299467632607232,18058379649908736,145285069123092480,43981140393984,145285069123125248,43981140426752,163299467632574464,18058379649875968,9386671504483418625,9241430416500720129,145285069123092480,43981140393984,145285069119160833,43981136462337,9386671504483418625,9241430416500720129,163299467628642817,18058379645944321,145285069119160833,43981136462337,145285069119160833,43981136462337,163299467628642817,18058379645944321,9386671504483418624,9241430416500720128,145285069119160833,43981136462337,145285069119160832,43981136462336,9386671504483418624,9241430416500720128,163299467628642816,18058379645944320,145285069119160832,43981136462336,145285069119160832,43981136462336,163299467628642816,18058379645944320,9386671504483418112,9241430416500719616,145285069119160832,43981136462336,145285069119160320,43981136461824,9386671504483418112,9241430416500719616,163299467628642304,18058379645943808,145285069119160320,43981136461824,145285069119160320,43981136461824,163299467628642304,18058379645943808,9386671504483418112,9241430416500719616,145285069119160320,43981136461824,145285069119160320,43981136461824,9386671504483418112,9241430416500719616,163299467628642304,18058379645943808,145285069119160320,43981136461824,145285069119160320,43981136461824,163299467628642304,18058379645943808,9242556316411527168,9241430416504684544,145285069119160320,43981136461824,1169881047269376,43981140426752,9242556316411494400,9241430416504651776,19184279556751360,18058379649908736,1169881047236608,43981140393984,1169881047269376,43981140426752,19184279556718592,18058379649875968,9242556316411527168,9241430416504684544,1169881047236608,43981140393984,1169881047269376,43981140426752,9242556316411494400,9241430416504651776,19184279556751360,18058379649908736,1169881047236608,43981140393984,1169881047269376,43981140426752,19184279556718592,18058379649875968,9242556316411527168,9241430416504684544,1169881047236608,43981140393984,1169881047269376,43981140426752,9242556316411494400,9241430416504651776,19184279556751360,18058379649908736,1169881047236608,43981140393984,1169881047269376,43981140426752,19184279556718592,18058379649875968,9242556316411527168,9241430416504684544,1169881047236608,43981140393984,1169881047269376,43981140426752,9242556316411494400,9241430416504651776,19184279556751360,18058379649908736,1169881047236608,43981140393984,1169881047269376,43981140426752,19184279556718592,18058379649875968,9242556316407562753,9241430416500720129,1169881047236608,43981140393984,1169881043304961,43981136462337,9242556316407562753,9241430416500720129,19184279552786945,18058379645944321,1169881043304961,43981136462337,1169881043304961,43981136462337,19184279552786945,18058379645944321,9242556316407562752,9241430416500720128,1169881043304961,43981136462337,1169881043304960,43981136462336,9242556316407562752,9241430416500720128,19184279552786944,18058379645944320,1169881043304960,43981136462336,1169881043304960,43981136462336,19184279552786944,18058379645944320,9242556316407562240,9241430416500719616,1169881043304960,43981136462336,1169881043304448,43981136461824,9242556316407562240,9241430416500719616,19184279552786432,18058379645943808,1169881043304448,43981136461824,1169881043304448,43981136461824,19184279552786432,18058379645943808,9242556316407562240,9241430416500719616,1169881043304448,43981136461824,1169881043304448,43981136461824,9242556316407562240,9241430416500719616,19184279552786432,18058379645943808,1169881043304448,43981136461824,1169881043304448,43981136461824,19184279552786432,18058379645943808,9386671504483155968,9241430416500457472,1169881043304448,43981136461824,145285069118898176,43981136199680,9386671504483155968,9241430416500457472,163299467628380160,18058379645681664,145285069118898176,43981136199680,145285069118898176,43981136199680,163299467628380160,18058379645681664,9386671504483155968,9241430416500457472,145285069118898176,43981136199680,145285069118898176,43981136199680,9386671504483155968,9241430416500457472,163299467628380160,18058379645681664,145285069118898176,43981136199680,145285069118898176,43981136199680,163299467628380160,18058379645681664,9386671504483155968,9241430416500457472,145285069118898176,43981136199680,145285069118898176,43981136199680,9386671504483155968,9241430416500457472,163299467628380160,18058379645681664,145285069118898176,43981136199680,145285069118898176,43981136199680,163299467628380160,18058379645681664,9386671504483155968,9241430416500457472,145285069118898176,43981136199680,145285069118898176,43981136199680,9386671504483155968,9241430416500457472,163299467628380160,18058379645681664,145285069118898176,43981136199680,145285069118898176,43981136199680,163299467628380160,18058379645681664,0],[326598935265674242,290570138246710274,326598935265673216,290570138246709248,326598935265148928,290570138246184960,326598935265148928,290570138246184960,36116759300277248,87962281313280,36116759300276224,87962281312256,36116759299751936,87962280787968,36116759299751936,87962280787968,326598935257285634,290570138238321666,326598935257284608,290570138238320640,326598935256760320,290570138237796352,326598935256760320,290570138237796352,36116759291888640,87962272924672,36116759291887616,87962272923648,36116759291363328,87962272399360,36116759291363328,87962272399360,36116759300277250,87962281313282,36116759300276224,87962281312256,36116759299751936,87962280787968,36116759299751936,87962280787968,38368559113962498,2339762094998530,38368559113961472,2339762094997504,38368559113437184,2339762094473216,38368559113437184,2339762094473216,36116759291888642,87962272924674,36116759291887616,87962272923648,36116759291363328,87962272399360,36116759291363328,87962272399360,38368559105573890,2339762086609922,38368559105572864,2339762086608896,38368559105048576,2339762086084608,38368559105048576,2339762086084608,326598935265674240,290570138246710272,326598935265673216,290570138246709248,326598935265148928,290570138246184960,326598935265148928,290570138246184960,36116759300277250,87962281313282,36116759300276224,87962281312256,36116759299751936,87962280787968,36116759299751936,87962280787968,326598935257285632,290570138238321664,326598935257284608,290570138238320640,326598935256760320,290570138237796352,326598935256760320,290570138237796352,36116759291888642,87962272924674,36116759291887616,87962272923648,36116759291363328,87962272399360,36116759291363328,87962272399360,36116759300277248,87962281313280,36116759300276224,87962281312256,36116759299751936,87962280787968,36116759299751936,87962280787968,38368559113962496,2339762094998528,38368559113961472,2339762094997504,38368559113437184,2339762094473216,38368559113437184,2339762094473216,36116759291888640,87962272924672,36116759291887616,87962272923648,36116759291363328,87962272399360,36116759291363328,87962272399360,38368559105573888,2339762086609920,38368559105572864,2339762086608896,38368559105048576,2339762086084608,38368559105048576,2339762086084608,0],[581140276476643332,175924545849348,581140276476641280,175924545847296,4679524172169216,175924544798720,4679524172169216,175924544798720,581140276475592704,175924544798720,581140276475592704,175924544798720,4679524173219840,175924545849344,4679524173217792,175924545847296,581140276475592704,175924544798720,581140276475592704,175924544798720,4679524173219844,175924545849348,4679524173217792,175924545847296,581140276476643328,175924545849344,581140276476641280,175924545847296,4679524172169216,175924544798720,4679524172169216,175924544798720,0],[1161999073681608712,1161999073681608704,9077569074761736,9077569074761728,1161999073679507456,1161999073679507456,9077569072660480,9077569072660480,70369820020744,70369820020736,70369820020744,70369820020736,70369817919488,70369817919488,70369817919488,70369817919488,1161999073681604608,1161999073681604608,9077569074757632,9077569074757632,1161999073679507456,1161999073679507456,9077569072660480,9077569072660480,70369820016640,70369820016640,70369820016640,70369820016640,70369817919488,70369817919488,70369817919488,70369817919488,0],[288793334762704928,288793334762700800,562958543355904,562958543355904,562958610993184,562958610989056,288793334762704896,288793334762700800,288793334762176512,288793334762176512,562958610993152,562958610989056,562958610464768,562958610464768,288793334762176512,288793334762176512,288793334695067648,288793334695067648,562958610464768,562958610464768,562958543355904,562958543355904,288793334695067648,288793334695067648,288793334695067648,288793334695067648,562958543355904,562958543355904,562958543355904,562958543355904,288793334695067648,288793334695067648,0],[577868148797087808,577868148797079552,1407396358389760,1407396358389760,1407396492607488,1407396492607488,577868148661813248,577868148661813248,577868148797087744,577868148797079552,1407396358389760,1407396358389760,577868148796030976,577868148796030976,1407396358389760,1407396358389760,1407396493664320,1407396493656064,577868148661813248,577868148661813248,577868148796030976,577868148796030976,1407396358389760,1407396358389760,1407396493664256,1407396493656064,577868148661813248,577868148661813248,1407396492607488,1407396492607488,577868148661813248,577868148661813248,0],[1227793891648880768,1227793891648864256,1155736297340403712,1155736297340403712,1227793891632103552,1227793891632087040,1155736297323626496,1155736297323626496,74872387039920128,74872387039920128,2814792733556736,2814792733556736,74872387023142912,74872387023142912,2814792716779520,2814792716779520,1227793891378331648,1227793891378331648,1155736297610952832,1155736297610936320,1227793891361554432,1227793891361554432,1155736297594175616,1155736297594159104,74872386771484672,74872386771484672,2814793001992192,2814793001992192,74872386754707456,74872386754707456,2814792985214976,2814792985214976,1227793891648880640,1227793891648864256,1155736297340403712,1155736297340403712,1227793891632103424,1227793891632087040,1155736297323626496,1155736297323626496,74872387039920128,74872387039920128,2814792733556736,2814792733556736,74872387023142912,74872387023142912,2814792716779520,2814792716779520,1227793891378331648,1227793891378331648,1155736297610952704,1155736297610936320,1227793891361554432,1227793891361554432,1155736297594175488,1155736297594159104,74872386771484672,74872386771484672,2814793001992192,2814793001992192,74872386754707456,74872386754707456,2814792985214976,2814792985214976,1227793891646767104,1227793891646767104,1155736297340403712,1155736297340403712,1227793891629989888,1227793891629989888,1155736297323626496,1155736297323626496,74872387042033792,74872387042017280,2814792733556736,2814792733556736,74872387025256576,74872387025240064,2814792716779520,2814792716779520,1227793891378331648,1227793891378331648,1155736297608839168,1155736297608839168,1227793891361554432,1227793891361554432,1155736297592061952,1155736297592061952,74872386771484672,74872386771484672,2814793004105856,2814793004089344,74872386754707456,74872386754707456,2814792987328640,2814792987312128,1227793891646767104,1227793891646767104,1155736297340403712,1155736297340403712,1227793891629989888,1227793891629989888,1155736297323626496,1155736297323626496,74872387042033664,74872387042017280,2814792733556736,2814792733556736,74872387025256448,74872387025240064,2814792716779520,2814792716779520,1227793891378331648,1227793891378331648,1155736297608839168,1155736297608839168,1227793891361554432,1227793891361554432,1155736297592061952,1155736297592061952,74872386771484672,74872386771484672,2814793004105728,2814793004089344,74872386754707456,74872386754707456,2814792987328512,2814792987312128,0],[2455587783297826816,149744773509414912,149744773543034880,2455587782723108864,149744773509414912,149744773542969344,2455587782723108864,2455587782756663296,2311472595221970944,5629585433559040,5629585467179008,2311472594647252992,5629585433559040,5629585467113472,2311472594647252992,2311472594680807424,2455587783264206848,2455587783297761280,149744773509414912,149744773542969344,2455587783293599744,149744773509414912,149744773543034880,2455587782723108864,2311472595188350976,2311472595221905408,5629585433559040,5629585467113472,2311472595217743872,5629585433559040,5629585467179008,2311472594647252992,149744774084132864,2455587783264206848,2455587783297794048,149744773509414912,2455587783259979776,2455587783293534208,149744773509414912,149744773542969344,5629586008276992,2311472595188350976,2311472595221938176,5629585433559040,2311472595184123904,2311472595217678336,5629585433559040,5629585467113472,149744774050512896,149744774084067328,2455587783264174080,2455587783297728512,149744774079905792,2455587783259979776,2455587783293599744,149744773509414912,5629585974657024,5629586008211456,2311472595188318208,2311472595221872640,5629586004049920,2311472595184123904,2311472595217743872,5629585433559040,2455587782756728832,149744774050512896,149744774084100096,2455587783264174080,149744774046285824,149744774079840256,2455587783259979776,2455587783293534208,2311472594680872960,5629585974657024,5629586008244224,2311472595188318208,5629585970429952,5629586003984384,2311472595184123904,2311472595217678336,2455587782723108864,2455587782756663296,149744774050480128,149744774084034560,2455587782756728832,149744774046285824,149744774079905792,2455587783259979776,2311472594647252992,2311472594680807424,5629585974624256,5629586008178688,2311472594680872960,5629585970429952,5629586004049920,2311472595184123904,149744773543034880,2455587782723108864,2455587782756728832,149744774050480128,2455587782723108864,2455587782756663296,149744774046285824,149744774079840256,5629585467179008,2311472594647252992,2311472594680872960,5629585974624256,2311472594647252992,2311472594680807424,5629585970429952,5629586003984384,149744773509414912,149744773542969344,2455587782723108864,2455587782756663296,149744773543034880,2455587782723108864,2455587782756728832,149744774046285824,5629585433559040,5629585467113472,2311472594647252992,2311472594680807424,5629585467179008,2311472594647252992,2311472594680872960,5629585970429952,0],[4911175566595588352,4911175566595457024,4622945190443876352,4622945190443745280,4911175566519959552,4911175566519959552,4622945189294505984,4622945189294505984,299489548168200448,299489548168069120,11259172016488448,11259172016357376,299489548092571648,299489548092571648,11259170867118080,11259170867118080,4911175566528348160,4911175566528348160,4622945190376636416,4622945190376636416,4911175566587199744,4911175566587068416,4622945190435487744,4622945190435356672,299489548100960256,299489548100960256,11259171949248512,11259171949248512,299489548159811840,299489548159680512,11259172008099840,11259172007968768,4911175565513457664,4911175565513326592,4622945190443876608,4622945190443745280,4911175566519959552,4911175566519959552,4622945190368247808,4622945190368247808,299489547086069760,299489547085938688,11259172016488704,11259172016357376,299489548092571648,299489548092571648,11259171940859904,11259171940859904,4911175565446217728,4911175565446217728,4622945190376636416,4622945190376636416,4911175565513457664,4911175565513326592,4622945190435488000,4622945190435356672,299489547018829824,299489547018829824,11259171949248512,11259171949248512,299489547086069760,299489547085938688,11259172008100096,11259172007968768,4911175565513457920,4911175565513326592,4622945189361745920,4622945189361614848,4911175565446217728,4911175565446217728,4622945190368247808,4622945190368247808,299489547086070016,299489547085938688,11259170934358016,11259170934226944,299489547018829824,299489547018829824,11259171940859904,11259171940859904,4911175565446217728,4911175565446217728,4622945189294505984,4622945189294505984,4911175565513457920,4911175565513326592,4622945189361745920,4622945189361614848,299489547018829824,299489547018829824,11259170867118080,11259170867118080,299489547086070016,299489547085938688,11259170934358016,11259170934226944,4911175566595588096,4911175566595457024,4622945189361746176,4622945189361614848,4911175565446217728,4911175565446217728,4622945189294505984,4622945189294505984,299489548168200192,299489548168069120,11259170934358272,11259170934226944,299489547018829824,299489547018829824,11259170867118080,11259170867118080,4911175566528348160,4911175566528348160,4622945189294505984,4622945189294505984,4911175566587199488,4911175566587068416,4622945189361746176,4622945189361614848,299489548100960256,299489548100960256,11259170867118080,11259170867118080,299489548159811584,299489548159680512,11259170934358272,11259170934226944,0],[9822351133174399489,9822351133174136832,598979094037659648,598979094037659648,9822351133174398976,9822351133174136832,598979094037659648,598979094037659648,9245890380870976001,9245890380870713344,22518341734236160,22518341734236160,9245890380870975488,9245890380870713344,22518341734236160,22518341734236160,9822351133039919104,9822351133039919104,9822351133174399488,9822351133174136832,9822351133039919104,9822351133039919104,9822351133174398976,9822351133174136832,9245890380736495616,9245890380736495616,9245890380870976000,9245890380870713344,9245890380736495616,9245890380736495616,9245890380870975488,9245890380870713344,598979096319623681,598979096319361024,9822351133039919104,9822351133039919104,598979096319623168,598979096319361024,9822351133039919104,9822351133039919104,22518344016200193,22518344015937536,9245890380736495616,9245890380736495616,22518344016199680,22518344015937536,9245890380736495616,9245890380736495616,598979096185143296,598979096185143296,598979096319623680,598979096319361024,598979096185143296,598979096185143296,598979096319623168,598979096319361024,22518343881719808,22518343881719808,22518344016200192,22518344015937536,22518343881719808,22518343881719808,22518344016199680,22518344015937536,9822351131026915841,9822351131026653184,598979096185143296,598979096185143296,9822351131026915328,9822351131026653184,598979096185143296,598979096185143296,9245890378723492353,9245890378723229696,22518343881719808,22518343881719808,9245890378723491840,9245890378723229696,22518343881719808,22518343881719808,9822351130892435456,9822351130892435456,9822351131026915840,9822351131026653184,9822351130892435456,9822351130892435456,9822351131026915328,9822351131026653184,9245890378589011968,9245890378589011968,9245890378723492352,9245890378723229696,9245890378589011968,9245890378589011968,9245890378723491840,9245890378723229696,598979094172140033,598979094171877376,9822351130892435456,9822351130892435456,598979094172139520,598979094171877376,9822351130892435456,9822351130892435456,22518341868716545,22518341868453888,9245890378589011968,9245890378589011968,22518341868716032,22518341868453888,9245890378589011968,9245890378589011968,598979094037659648,598979094037659648,598979094172140032,598979094171877376,598979094037659648,598979094037659648,598979094172139520,598979094171877376,22518341734236160,22518341734236160,22518341868716544,22518341868453888,22518341734236160,22518341734236160,22518341868716032,22518341868453888,0],[1197958188344280066,45036683737432064,1197958188075319296,45036683468472320,1197958188075319296,45036683737433090,1197958188343754752,45036683468472320,1197958188344280064,45036683468472320,1197958188075319296,45036683736907776,1197958188075319296,45036683737433088,1197958188343754752,45036683468472320,1197958188075319296,45036683468472320,1197958188343754752,45036683736907776,1197958188344279040,45036683468472320,1197958188075319296,45036683736907776,1197958188075319296,45036683737432064,1197958188343754752,45036683468472320,1197958188344279040,45036683468472320,1197958188075319296,45036683736907776,0],[2323857683139004420,2323857682601082880,18014673925310468,18014673387388928,2323857682601082880,2323857683137953792,18014673387388928,18014673924259840,2323857682601082880,2323857683139002368,18014673387388928,18014673925308416,2323857683137953792,2323857682601082880,18014673924259840,18014673387388928,2323857683139002368,2323857682601082880,18014673925308416,18014673387388928,2323857682601082880,2323857683137953792,18014673387388928,18014673924259840,2323857682601082880,2323857683139004416,18014673387388928,18014673925310464,2323857683137953792,2323857682601082880,18014673924259840,18014673387388928,0],[144117404414255168,144117387099111424,144117404413198336,144117387099111424,144117404414255104,144117387099111424,144117404413198336,144117387099111424,144117404278980608,144117387099111424,144117404278980608,144117387099111424,144117404278980608,144117387099111424,144117404278980608,144117387099111424,144117404414246912,144117387099111424,144117404413198336,144117387099111424,144117404414246912,144117387099111424,144117404413198336,144117387099111424,144117404278980608,144117387099111424,144117404278980608,144117387099111424,144117404278980608,144117387099111424,144117404278980608,144117387099111424,0],[360293502378066048,360293467747778560,360293502378049536,360293467747778560,360293502378065920,360293467747778560,360293502378049536,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502375952384,360293467747778560,360293502375952384,360293467747778560,360293502375952384,360293467747778560,360293502375952384,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,0],[720587009051099136,720587004756131840,720587009046872064,720587004751904768,720586939790524416,720586935495557120,720586939790524416,720586935495557120,720587009051066368,720587004756099072,720587009046872064,720587004751904768,720586939790524416,720586935495557120,720586939790524416,720586935495557120,720587008510001152,720587004215033856,720587008510001152,720587004215033856,720586939790524416,720586935495557120,720586939790524416,720586935495557120,720587008510001152,720587004215033856,720587008510001152,720587004215033856,720586939790524416,720586935495557120,720586939790524416,720586935495557120,0],[1441174018118909952,1441174008430067712,1441174018093744128,1441174008430067712,1441173879597826048,1441173870991114240,1441173879581048832,1441173870991114240,1441174017036779520,1441174009512198144,1441174017020002304,1441174009503809536,1441173879597826048,1441173870991114240,1441173879581048832,1441173870991114240,1441174018102132736,1441174008430067712,1441174018110521344,1441174008430067712,1441173879581048832,1441173870991114240,1441173879597826048,1441173870991114240,1441174017020002304,1441174009512198144,1441174017036779520,1441174009503809536,1441173879581048832,1441173870991114240,1441173879597826048,1441173870991114240,0],[2882348036221108224,2882348034073624576,2882348036221042688,2882348034073559040,2882348019007619072,2882348016860135424,2882348019007619072,2882348016860135424,2882348036187488256,2882348034040004608,2882348036187488256,2882348034040004608,2882348019007619072,2882348016860135424,2882348019007619072,2882348016860135424,2882347759195717632,2882347759195717632,2882347759195652096,2882347759195652096,2882347741982228480,2882347741982228480,2882347741982228480,2882347741982228480,2882347759162097664,2882347759162097664,2882347759162097664,2882347759162097664,2882347741982228480,2882347741982228480,2882347741982228480,2882347741982228480,0],[5764696068147249408,5764696068080009216,5764696068147249152,5764696068080009216,5764695483964456960,5764695483964456960,5764695483964456960,5764695483964456960,5764696068147118080,5764696068080009216,5764696068147118080,5764696068080009216,5764695483964456960,5764695483964456960,5764695483964456960,5764695483964456960,5764695518391435520,5764695518324195328,5764695518391435264,5764695518324195328,5764696033720270848,5764696033720270848,5764696033720270848,5764696033720270848,5764695518391304192,5764695518324195328,5764695518391304192,5764695518324195328,5764696033720270848,5764696033720270848,5764696033720270848,5764696033720270848,0],[11529391036782871041,11529391036648390656,11529390967928913920,11529390967928913920,11529391036782871040,11529391036648390656,11529390967928913920,11529390967928913920,11529391036782870528,11529391036782608384,11529390967928913920,11529390967928913920,11529391036782870528,11529391036782608384,11529390967928913920,11529390967928913920,11529391036648390656,11529391036782608384,11529390967928913920,11529390967928913920,11529391036648390656,11529391036782608384,11529390967928913920,11529390967928913920,11529391036648390656,11529391036648390656,11529390967928913920,11529390967928913920,11529391036648390656,11529391036648390656,11529390967928913920,11529390967928913920,0],[4611756524879479810,4611756524610519040,4611756387171565568,4611756387171565568,4611756524879478784,4611756524610519040,4611756387171565568,4611756387171565568,4611756524878954496,4611756524610519040,4611756387171565568,4611756387171565568,4611756524878954496,4611756524610519040,4611756387171565568,4611756387171565568,4611756524879479808,4611756524610519040,4611756387171565568,4611756387171565568,4611756524879478784,4611756524610519040,4611756387171565568,4611756387171565568,4611756524878954496,4611756524610519040,4611756387171565568,4611756387171565568,4611756524878954496,4611756524610519040,4611756387171565568,4611756387171565568,0],[567382630219904,567347999932416,562949953421312,562949953421312,567347999932416,567382628106240,562949953421312,562949953421312,567382630219776,567347999932416,562949953421312,562949953421312,567347999932416,567382628106240,562949953421312,562949953421312,567382359670784,567347999932416,562949953421312,562949953421312,567347999932416,567382359670784,562949953421312,562949953421312,567382359670784,567347999932416,562949953421312,562949953421312,567347999932416,567382359670784,562949953421312,562949953421312,567382630203392,567347999932416,562949953421312,562949953421312,567347999932416,567382628106240,562949953421312,562949953421312,567382630203392,567347999932416,562949953421312,562949953421312,567347999932416,567382628106240,562949953421312,562949953421312,567382359670784,567347999932416,562949953421312,562949953421312,567347999932416,567382359670784,562949953421312,562949953421312,567382359670784,567347999932416,562949953421312,562949953421312,567347999932416,567382359670784,562949953421312,562949953421312,0],[1416240237150208,1407374883553280,1416170976575488,1407374883553280,1416240232923136,1416239696052224,1416170976575488,1416170976575488,1416240237117440,1416239696052224,1416170976575488,1416170976575488,1416240232923136,1416239696052224,1416170976575488,1416170976575488,1407374883553280,1416239696052224,1407374883553280,1416170976575488,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,1407374883553280,0],[2833579985862656,2833578903732224,2832480474234880,2832479392104448,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2833579977474048,2833578903732224,2832480465846272,2832479392104448,2833441464778752,2833441464778752,2832341953150976,2832341953150976,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2833441464778752,2833441464778752,2832341953150976,2832341953150976,0],[5667164249915392,5631698557468672,5666887224524800,5631698557468672,5664960931692544,5629499534213120,5664683906301952,5629499534213120,5667159954948096,5667162102431744,5666882929557504,5666887224524800,5664960931692544,5664958784208896,5664683906301952,5664683906301952,5631702852435968,5667157807464448,5631702852435968,5666882929557504,5629499534213120,5664958784208896,5629499534213120,5664683906301952,5631698557468672,5631702852435968,5631698557468672,5631702852435968,5629499534213120,5629499534213120,5629499534213120,5629499534213120,0],[11334324221640704,11329917568417792,11333774465826816,11329367812603904,11263405721649152,11258999068426240,11263405721649152,11258999068426240,11334315614928896,11329917568417792,11333765859115008,11329367812603904,11263397114937344,11258999068426240,11263397114937344,11258999068426240,11334324204863488,11329917568417792,11333774449049600,11329367812603904,11263405704871936,11258999068426240,11263405704871936,11258999068426240,11334315614928896,11329917568417792,11333765859115008,11329367812603904,11263397114937344,11258999068426240,11263397114937344,11258999068426240,0],[22667548931719168,22658735625207808,22667548931653632,22658735625207808,22526811443363840,22517998136852480,22526811443298304,22517998136852480,22667531718230016,22658735625207808,22667531718230016,22658735625207808,22526794229874688,22517998136852480,22526794229874688,22517998136852480,22667548898099200,22658735625207808,22667548898099200,22658735625207808,22526811409743872,22517998136852480,22526811409743872,22517998136852480,22667531718230016,22658735625207808,22667531718230016,22658735625207808,22526794229874688,22517998136852480,22526794229874688,22517998136852480,0],[45053622886727936,45053622886596608,45053622819487744,45053622819487744,45035996273704960,45035996273704960,45035996273704960,45035996273704960,45053588459749376,45053588459749376,45053588459749376,45053588459749376,45035996273704960,45035996273704960,45035996273704960,45035996273704960,45053622886727680,45053622886596608,45053622819487744,45053622819487744,45035996273704960,45035996273704960,45035996273704960,45035996273704960,45053588459749376,45053588459749376,45053588459749376,45053588459749376,45035996273704960,45035996273704960,45035996273704960,45035996273704960,0],[18049651735527937,18014398509481984,18049651735527936,18014398509481984,18049651735265280,18049651601047552,18049651735265280,18049651601047552,18049651735527424,18049651601047552,18049651735527424,18049651601047552,18049651735265280,18049651601047552,18049651735265280,18049651601047552,18049582881570816,18049651601047552,18049582881570816,18049651601047552,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18049582881570816,18014398509481984,18049582881570816,18014398509481984,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18014398509481984,0]],"rooks":[[72340172838076926,382,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,258,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076678,262,66046,382,510,16843134,65798,65798,318,318,262,262,4311810310,16843014,65806,65806,258,16843010,258,65794,1103823438082,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076686,270,65798,262,262,16843014,510,65918,262,262,318,318,4311810366,16843070,65798,65798,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076678,262,65806,270,270,16843022,262,65798,270,270,262,262,4311810310,16843014,65854,65854,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076702,286,65798,262,262,16843014,270,65806,262,262,270,270,4311810318,16843022,65798,65798,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076678,262,65822,286,286,16843038,262,65798,286,286,262,262,4311810310,16843014,65806,65806,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076686,270,65798,262,262,16843014,286,65822,262,262,286,286,4311810334,16843038,65798,65798,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076678,262,65806,270,270,16843022,262,65798,270,270,262,262,4311810310,16843014,65822,65822,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076734,318,65798,262,262,16843014,270,65806,262,262,270,270,4311810318,16843022,65798,65798,258,16843010,258,65794,1103823438082,258,65794,258,4311810306,16843010,65794,65794,258,258,258,258,72340172838076678,262,65854,318,318,16843070,262,65798,4311810558,382,262,262,4311810310,16843014,65806,65806,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,65794,65794,258,258,258,258,72340172838076686,270,65798,262,262,16843014,318,65854,4311810310,262,66046,382,510,16843134,65798,65798,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,258,258,72340172838076678,262,65806,270,270,16843022,262,65798,4311810318,270,65798,262,262,16843014,510,65918,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076702,286,65798,262,262,16843014,270,65806,4311810310,262,65806,270,270,16843022,262,65798,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,262,65822,286,286,16843038,262,65798,4311810334,286,65798,262,262,16843014,270,65806,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076686,270,65798,262,262,16843014,286,65822,4311810310,262,65822,286,286,16843038,262,65798,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,262,65806,270,270,16843022,262,65798,4311810318,270,65798,262,262,16843014,286,65822,258,16843010,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076798,16843262,65798,262,262,16843014,270,65806,4311810310,262,65806,270,270,16843022,262,65798,258,258,258,65794,1103823438082,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,16843014,65918,66046,382,510,262,65798,4311810366,318,65798,262,262,16843014,270,65806,258,258,258,258,1103823438082,16843010,65794,258,258,16843010,258,65794,4311810306,258,65794,258,72340172838076686,16843022,65798,65798,262,262,382,510,4311810310,262,65854,318,318,16843070,262,65798,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,16843014,65806,65806,270,270,262,262,4311810318,270,65798,262,262,16843014,318,65854,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076702,16843038,65798,65798,262,262,270,270,4311810310,262,65806,270,270,16843022,262,65798,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,16843014,65822,65822,286,286,262,262,4311810334,286,65798,262,262,16843014,270,65806,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076686,16843022,65798,65798,262,262,286,286,4311810310,262,65822,286,286,16843038,262,65798,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,16843014,65806,65806,270,270,262,262,4311810318,270,65798,262,262,16843014,286,65822,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076734,16843070,65798,65798,262,262,270,270,4311810310,262,65806,270,270,16843022,262,65798,258,258,258,258,1103823438082,16843010,65794,65794,258,16843010,258,65794,4311810306,258,65794,258,72340172838076678,16843014,65854,65854,318,318,262,262,4311810430,16843262,65798,262,262,16843014,270,65806,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,65794,4311810306,258,65794,258,72340172838076686,16843022,65798,65798,262,262,318,318,4311810310,16843014,65918,66046,382,510,262,65798,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,258,72340172838076678,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,382,510,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,72340172838076702,16843038,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,72340172838076678,16843014,65822,65822,286,286,262,262,4311810334,16843038,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,72340172838076686,16843022,65798,65798,262,262,286,286,4311810310,16843014,65822,65822,286,286,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,72340172838076678,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,286,286,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148990,16843134,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,66046,65918,510,382,262,262,4311810366,16843070,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,510,382,4311810310,16843014,65854,65854,318,318,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,318,318,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148766,16843038,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65822,65822,286,286,262,262,4311810334,16843038,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,286,286,4311810310,16843014,65822,65822,286,286,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,286,286,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148798,16843070,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65854,65854,318,318,262,262,4311810558,16843134,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,318,318,4311810310,16843014,66046,65918,510,382,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,510,382,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148766,16843038,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65822,65822,286,286,262,262,4311810334,16843038,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,286,286,4311810310,16843014,65822,65822,286,286,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,286,286,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148862,16843262,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65918,66046,382,510,262,262,4311810366,16843070,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,382,510,4311810310,16843014,65854,65854,318,318,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,318,318,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148766,16843038,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65822,65822,286,286,262,262,4311810334,16843038,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,286,286,4311810310,16843014,65822,65822,286,286,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,286,286,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148798,16843070,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65854,65854,318,318,262,262,4311810430,16843262,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,318,318,4311810310,16843014,65918,66046,382,510,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,382,510,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148766,16843038,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65822,65822,286,286,262,262,4311810334,16843038,65798,65798,262,262,270,270,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148750,16843022,65798,65798,262,262,286,286,4311810310,16843014,65822,65822,286,286,262,262,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,282578800148742,16843014,65806,65806,270,270,262,262,4311810318,16843022,65798,65798,262,262,286,286,258,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,510,16843134,65798,65798,262,262,270,270,4311810310,16843014,65806,65806,270,270,262,262,72340172838076674,258,258,258,1103823438082,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,262,16843014,510,65918,1103823438334,382,262,262,4311810366,16843070,65798,65798,262,262,270,270,72340172838076674,258,65794,258,258,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,270,16843022,262,65798,1103823438086,262,66046,382,4311810310,16843014,65854,65854,318,318,262,262,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,262,16843014,270,65806,1103823438094,270,65798,262,4311810318,16843022,65798,65798,262,262,318,318,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,286,16843038,262,65798,1103823438086,262,65806,270,4311810310,16843014,65806,65806,270,270,262,262,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,262,16843014,286,65822,1103823438110,286,65798,262,4311810334,16843038,65798,65798,262,262,270,270,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,270,16843022,262,65798,1103823438086,262,65822,286,4311810310,16843014,65822,65822,286,286,262,262,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,262,16843014,270,65806,1103823438094,270,65798,262,4311810318,16843022,65798,65798,262,262,286,286,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,318,16843070,262,65798,1103823438086,262,65806,270,4311810310,16843014,65806,65806,270,270,262,262,72340172838076674,258,65794,258,258,16843010,258,65794,258,258,258,258,4311810306,16843010,65794,65794,262,16843014,318,65854,1103823438142,318,65798,262,510,16843134,65798,65798,262,262,270,270,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,258,258,4311810306,16843010,65794,65794,270,16843022,262,65798,1103823438086,262,65854,318,262,16843014,510,65918,4311810558,382,262,262,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,65794,65794,262,16843014,270,65806,1103823438094,270,65798,262,270,16843022,262,65798,4311810310,262,66046,382,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,258,65794,286,16843038,262,65798,1103823438086,262,65806,270,262,16843014,270,65806,4311810318,270,65798,262,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,258,65794,262,16843014,286,65822,1103823438110,286,65798,262,286,16843038,262,65798,4311810310,262,65806,270,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,258,65794,270,16843022,262,65798,1103823438086,262,65822,286,262,16843014,286,65822,4311810334,286,65798,262,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,258,65794,262,16843014,270,65806,1103823438094,270,65798,262,270,16843022,262,65798,4311810310,262,65822,286,72340172838076674,258,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,258,65794,382,510,262,65798,1103823438086,262,65806,270,262,16843014,270,65806,4311810318,270,65798,262,72340172838076674,16843010,65794,258,258,16843010,258,65794,4311810306,258,65794,258,258,16843010,258,65794,262,262,382,510,1103823438206,16843262,65798,262,318,16843070,262,65798,4311810310,262,65806,270,72340172838076674,16843010,65794,65794,258,258,258,65794,4311810306,258,65794,258,258,16843010,258,65794,270,270,262,262,1103823438086,16843014,65918,66046,262,16843014,318,65854,4311810366,318,65798,262,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,262,262,270,270,1103823438094,16843022,65798,65798,270,16843022,262,65798,4311810310,262,65854,318,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,286,286,262,262,1103823438086,16843014,65806,65806,262,16843014,270,65806,4311810318,270,65798,262,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,262,262,286,286,1103823438110,16843038,65798,65798,286,16843038,262,65798,4311810310,262,65806,270,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,270,270,262,262,1103823438086,16843014,65822,65822,262,16843014,286,65822,4311810334,286,65798,262,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,262,262,270,270,1103823438094,16843022,65798,65798,270,16843022,262,65798,4311810310,262,65822,286,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,318,318,262,262,1103823438086,16843014,65806,65806,262,16843014,270,65806,4311810318,270,65798,262,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,258,65794,258,258,16843010,258,65794,262,262,318,318,1103823438142,16843070,65798,65798,382,510,262,65798,4311810310,262,65806,270,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,258,258,16843010,258,65794,270,270,262,262,1103823438086,16843014,65854,65854,262,262,382,510,4311810430,16843262,65798,262,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,65794,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65918,66046,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,286,286,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,286,286,1103823438110,16843038,65798,65798,286,286,262,262,4311810310,16843014,65806,65806,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65822,65822,262,262,286,286,4311810334,16843038,65798,65798,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65822,65822,72340172838076674,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,510,382,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,510,382,1103823438334,16843134,65798,65798,318,318,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,66046,65918,262,262,318,318,4311810366,16843070,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65854,65854,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,286,286,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,286,286,1103823438110,16843038,65798,65798,286,286,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65822,65822,262,262,286,286,4311810334,16843038,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65822,65822,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,318,318,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,318,318,1103823438142,16843070,65798,65798,510,382,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65854,65854,262,262,510,382,4311810558,16843134,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,66046,65918,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,286,286,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,286,286,1103823438110,16843038,65798,65798,286,286,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65822,65822,262,262,286,286,4311810334,16843038,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65822,65822,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,382,510,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,382,510,1103823438206,16843262,65798,65798,318,318,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65918,66046,262,262,318,318,4311810366,16843070,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65854,65854,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,286,286,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,286,286,1103823438110,16843038,65798,65798,286,286,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65822,65822,262,262,286,286,4311810334,16843038,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65822,65822,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,318,318,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,318,318,1103823438142,16843070,65798,65798,382,510,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65854,65854,262,262,382,510,4311810430,16843262,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65918,66046,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,286,286,262,262,1103823438086,16843014,65806,65806,262,262,270,270,4311810318,16843022,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,286,286,1103823438110,16843038,65798,65798,286,286,262,262,4311810310,16843014,65806,65806,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,270,270,262,262,1103823438086,16843014,65822,65822,262,262,286,286,4311810334,16843038,65798,65798,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,262,262,270,270,1103823438094,16843022,65798,65798,270,270,262,262,4311810310,16843014,65822,65822,282578800148738,16843010,65794,65794,258,258,258,258,4311810306,16843010,65794,65794,258,258,258,258,0],[144680345676153597,765,131645,573,8623620637,541,33686045,541,131589,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,131597,525,131589,517,131589,517,131589,517,131589,517,131613,541,33686045,541,131645,573,131709,637,144680345676153349,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,131597,525,565157600297477,517,33686021,517,131589,517,33686021,517,8623620669,573,33686269,765,2207646876189,541,33686045,541,144680345676153349,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,131589,517,131613,541,131613,541,2207646876413,765,131645,573,131589,517,33686021,517,131589,517,131589,517,144680345676153357,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,131589,517,565157600297597,637,33686077,573,131613,541,33686045,541,8623620613,517,33686021,517,2207646876165,517,33686021,517,144680345676153357,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,33686021,517,131613,541,131613,541,8623620669,573,33686269,765,131589,517,131589,517,2207646876165,517,131589,517,131597,525,33686029,525,131597,525,131597,525,144680345676153349,517,33686021,517,131589,517,131589,517,8623620669,573,33686141,637,131613,541,131613,541,565157600297477,517,33686021,517,131589,517,33686021,517,8623620621,525,33686029,525,2207646876173,525,33686029,525,144680345676153349,517,131589,517,8623620613,517,33686021,517,131613,541,131613,541,2207646876285,637,33686077,573,131589,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,131597,525,131589,517,33686021,517,131589,517,131589,517,131837,765,33686077,573,131613,541,131613,541,8623620613,517,33686021,517,131589,517,131589,517,565157600297485,525,33686029,525,131597,525,33686029,525,8623620613,517,33686021,517,2207646876165,517,33686021,517,144680345676153373,541,131613,541,8623620669,573,33686141,637,131589,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,131589,517,131645,573,131837,765,131613,541,131613,541,131589,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,131597,525,565157600297477,517,33686021,517,131589,517,33686021,517,8623620637,541,33686045,541,131837,765,33686077,573,144680345676153349,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,33686021,517,131709,637,131645,573,2207646876189,541,131613,541,131589,517,131589,517,131589,517,131589,517,131597,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,131589,517,565157600297501,541,33686045,541,131645,573,131837,765,8623620613,517,33686021,517,131589,517,33686021,517,144680345676153357,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,33686021,517,131645,573,131709,637,8623620637,541,33686045,541,131589,517,131589,517,2207646876165,517,131589,517,131597,525,131597,525,131597,525,131597,525,131589,517,33686021,517,131589,517,131589,517,8623620637,541,33686045,541,131709,637,131645,573,565157600297477,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,33686029,525,144680345676153349,517,131589,517,8623620613,517,33686021,517,8623620861,765,131645,573,2207646876189,541,33686045,541,131589,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,131597,525,131589,517,131589,517,131589,517,131589,517,131613,541,33686045,541,131645,573,131709,637,8623620613,517,33686021,517,131589,517,131589,517,565157600297485,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,33686021,517,144680345676153405,573,33686269,765,8623620637,541,33686045,541,8623620613,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,131589,517,131613,541,131613,541,8623620861,765,131645,573,131589,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,131597,525,565157600297477,517,33686021,517,131589,517,131589,517,8623620733,637,33686077,573,131613,541,33686045,541,144680345676153349,517,33686021,517,8623620613,517,33686021,517,8623620621,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,33686021,517,131613,541,131613,541,2207646876221,573,33686269,765,131589,517,131589,517,8623620613,517,131589,517,131597,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,131589,517,565157600297533,573,33686141,637,131613,541,131613,541,8623620613,517,33686021,517,131589,517,33686021,517,144680345676153357,525,33686029,525,8623620621,525,33686029,525,8623620613,517,131589,517,2207646876165,517,33686021,517,131613,541,131613,541,8623620733,637,33686077,573,131589,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,131597,525,131589,517,33686021,517,131589,517,131589,517,131837,765,33686077,573,131613,541,131613,541,565157600297477,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,33686029,525,144680345676153349,517,33686021,517,8623620613,517,33686021,517,8623620637,541,131613,541,2207646876221,573,33686141,637,131589,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,131589,517,131645,573,131837,765,131613,541,131613,541,131589,517,33686021,517,131589,517,131589,517,565157600297485,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,33686021,517,144680345676153373,541,33686045,541,131837,765,33686077,573,8623620613,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,33686021,517,131709,637,131645,573,8623620637,541,131613,541,131589,517,131589,517,131589,517,131589,517,131597,525,33686029,525,131597,525,131597,525,565157600297477,517,33686021,517,131589,517,131589,517,8623620637,541,33686045,541,131645,573,131837,765,144680345676153349,517,33686021,517,131589,517,33686021,517,8623620621,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,33686021,517,131645,573,131709,637,2207646876189,541,33686045,541,131589,517,131589,517,8623620613,517,131589,517,131597,525,131597,525,131597,525,131597,525,131589,517,33686021,517,131589,517,131589,517,565157600297501,541,33686045,541,131709,637,131645,573,8623620613,517,33686021,517,131589,517,131589,517,144680345676153357,525,33686029,525,131597,525,33686029,525,8623620613,517,131589,517,2207646876165,517,33686021,517,565157600297725,765,131645,573,8623620637,541,33686045,541,131589,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,131597,525,131589,517,131589,517,131589,517,131589,517,131613,541,33686045,541,131645,573,131709,637,565157600297477,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,131597,525,144680345676153349,517,33686021,517,131589,517,33686021,517,8623620669,573,33686269,765,2207646876189,541,33686045,541,565157600297477,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,131589,517,131613,541,131613,541,2207646876413,765,131645,573,131589,517,33686021,517,131589,517,131589,517,565157600297485,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,131589,517,144680345676153469,637,33686077,573,131613,541,33686045,541,8623620613,517,33686021,517,2207646876165,517,33686021,517,565157600297485,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,33686021,517,131613,541,131613,541,8623620669,573,33686269,765,131589,517,131589,517,2207646876165,517,131589,517,131597,525,33686029,525,131597,525,131597,525,565157600297477,517,33686021,517,131589,517,131589,517,8623620669,573,33686141,637,131613,541,131613,541,144680345676153349,517,33686021,517,131589,517,33686021,517,8623620621,525,33686029,525,2207646876173,525,33686029,525,565157600297477,517,131589,517,8623620613,517,33686021,517,131613,541,131613,541,2207646876285,637,33686077,573,131589,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,131597,525,131589,517,33686021,517,131589,517,131589,517,131837,765,33686077,573,131613,541,131613,541,8623620613,517,33686021,517,131589,517,131589,517,144680345676153357,525,33686029,525,131597,525,33686029,525,8623620613,517,33686021,517,2207646876165,517,33686021,517,565157600297501,541,131613,541,8623620669,573,33686141,637,131589,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,131589,517,131645,573,131837,765,131613,541,131613,541,131589,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,131597,525,144680345676153349,517,33686021,517,131589,517,33686021,517,8623620637,541,33686045,541,131837,765,33686077,573,565157600297477,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,33686021,517,131709,637,131645,573,2207646876189,541,131613,541,131589,517,131589,517,131589,517,131589,517,131597,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,131589,517,144680345676153373,541,33686045,541,131645,573,131837,765,8623620613,517,33686021,517,131589,517,33686021,517,565157600297485,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,33686021,517,131645,573,131709,637,8623620637,541,33686045,541,131589,517,131589,517,2207646876165,517,131589,517,131597,525,131597,525,131597,525,131597,525,131589,517,33686021,517,131589,517,131589,517,8623620637,541,33686045,541,131709,637,131645,573,144680345676153349,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,33686029,525,565157600297477,517,131589,517,8623620613,517,33686021,517,8623620861,765,131645,573,2207646876189,541,33686045,541,131589,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,131597,525,131589,517,131589,517,131589,517,131589,517,131613,541,33686045,541,131645,573,131709,637,8623620613,517,33686021,517,131589,517,131589,517,144680345676153357,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,33686021,517,565157600297533,573,33686269,765,8623620637,541,33686045,541,8623620613,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,131589,517,131613,541,131613,541,8623620861,765,131645,573,131589,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,131597,525,144680345676153349,517,33686021,517,131589,517,131589,517,8623620733,637,33686077,573,131613,541,33686045,541,565157600297477,517,33686021,517,8623620613,517,33686021,517,8623620621,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,33686021,517,131613,541,131613,541,2207646876221,573,33686269,765,131589,517,131589,517,8623620613,517,131589,517,131597,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,131589,517,144680345676153405,573,33686141,637,131613,541,131613,541,8623620613,517,33686021,517,131589,517,33686021,517,565157600297485,525,33686029,525,8623620621,525,33686029,525,8623620613,517,131589,517,2207646876165,517,33686021,517,131613,541,131613,541,8623620733,637,33686077,573,131589,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,131597,525,131589,517,33686021,517,131589,517,131589,517,131837,765,33686077,573,131613,541,131613,541,144680345676153349,517,33686021,517,131589,517,131589,517,8623620621,525,33686029,525,131597,525,33686029,525,565157600297477,517,33686021,517,8623620613,517,33686021,517,8623620637,541,131613,541,2207646876221,573,33686141,637,131589,517,131589,517,8623620613,517,33686021,517,131597,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,131589,517,131645,573,131837,765,131613,541,131613,541,131589,517,33686021,517,131589,517,131589,517,144680345676153357,525,33686029,525,131597,525,131597,525,8623620613,517,33686021,517,131589,517,33686021,517,565157600297501,541,33686045,541,131837,765,33686077,573,8623620613,517,131589,517,2207646876165,517,33686021,517,131597,525,131597,525,8623620621,525,33686029,525,131589,517,131589,517,2207646876165,517,33686021,517,131709,637,131645,573,8623620637,541,131613,541,131589,517,131589,517,131589,517,131589,517,131597,525,33686029,525,131597,525,131597,525,144680345676153349,517,33686021,517,131589,517,131589,517,8623620637,541,33686045,541,131645,573,131837,765,565157600297477,517,33686021,517,131589,517,33686021,517,8623620621,525,131597,525,2207646876173,525,33686029,525,131589,517,131589,517,8623620613,517,33686021,517,131645,573,131709,637,2207646876189,541,33686045,541,131589,517,131589,517,8623620613,517,131589,517,131597,525,131597,525,131597,525,131597,525,131589,517,33686021,517,131589,517,131589,517,144680345676153373,541,33686045,541,131709,637,131645,573,8623620613,517,33686021,517,131589,517,131589,517,565157600297485,525,33686029,525,131597,525,33686029,525,8623620613,517,131589,517,2207646876165,517,33686021,517,0],[289360691352306939,1130315200595195,1275,1275,67372283,67372283,1275,1275,289360691352306938,1130315200595194,1274,1274,67372282,67372282,1274,1274,4415293752571,4415293752571,1275,1275,67372283,67372283,1275,1275,4415293752570,4415293752570,1274,1274,67372282,67372282,1274,1274,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306715,1130315200594971,1051,1051,67372059,67372059,1051,1051,289360691352306714,1130315200594970,1050,1050,67372058,67372058,1050,1050,4415293752347,4415293752347,1051,1051,67372059,67372059,1051,1051,4415293752346,4415293752346,1050,1050,67372058,67372058,1050,1050,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306747,1130315200595003,1083,1083,67372091,67372091,1083,1083,289360691352306746,1130315200595002,1082,1082,67372090,67372090,1082,1082,4415293752379,4415293752379,1083,1083,67372091,67372091,1083,1083,4415293752378,4415293752378,1082,1082,67372090,67372090,1082,1082,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306715,1130315200594971,1051,1051,67372059,67372059,1051,1051,289360691352306714,1130315200594970,1050,1050,67372058,67372058,1050,1050,4415293752347,4415293752347,1051,1051,67372059,67372059,1051,1051,4415293752346,4415293752346,1050,1050,67372058,67372058,1050,1050,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306811,1130315200595067,1147,1147,67372155,67372155,1147,1147,289360691352306810,1130315200595066,1146,1146,67372154,67372154,1146,1146,4415293752443,4415293752443,1147,1147,67372155,67372155,1147,1147,4415293752442,4415293752442,1146,1146,67372154,67372154,1146,1146,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306715,1130315200594971,1051,1051,67372059,67372059,1051,1051,289360691352306714,1130315200594970,1050,1050,67372058,67372058,1050,1050,4415293752347,4415293752347,1051,1051,67372059,67372059,1051,1051,4415293752346,4415293752346,1050,1050,67372058,67372058,1050,1050,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306747,1130315200595003,1083,1083,67372091,67372091,1083,1083,289360691352306746,1130315200595002,1082,1082,67372090,67372090,1082,1082,4415293752379,4415293752379,1083,1083,67372091,67372091,1083,1083,4415293752378,4415293752378,1082,1082,67372090,67372090,1082,1082,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,289360691352306715,1130315200594971,1051,1051,67372059,67372059,1051,1051,289360691352306714,1130315200594970,1050,1050,67372058,67372058,1050,1050,4415293752347,4415293752347,1051,1051,67372059,67372059,1051,1051,4415293752346,4415293752346,1050,1050,67372058,67372058,1050,1050,289360691352306699,1130315200594955,1035,1035,67372043,67372043,1035,1035,289360691352306698,1130315200594954,1034,1034,67372042,67372042,1034,1034,4415293752331,4415293752331,1035,1035,67372043,67372043,1035,1035,4415293752330,4415293752330,1034,1034,67372042,67372042,1034,1034,263419,263419,1275,1275,263419,263419,1275,1275,263418,263418,1274,1274,263418,263418,1274,1274,263419,263419,1275,1275,263419,263419,1275,1275,263418,263418,1274,1274,263418,263418,1274,1274,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263291,263291,1147,1147,263291,263291,1147,1147,263290,263290,1146,1146,263290,263290,1146,1146,263291,263291,1147,1147,263291,263291,1147,1147,263290,263290,1146,1146,263290,263290,1146,1146,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,17247241467,17247241467,1275,1275,67372283,67372283,1275,1275,17247241466,17247241466,1274,1274,67372282,67372282,1274,1274,17247241467,17247241467,1275,1275,67372283,67372283,1275,1275,17247241466,17247241466,1274,1274,67372282,67372282,1274,1274,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241275,17247241275,1083,1083,67372091,67372091,1083,1083,17247241274,17247241274,1082,1082,67372090,67372090,1082,1082,17247241275,17247241275,1083,1083,67372091,67372091,1083,1083,17247241274,17247241274,1082,1082,67372090,67372090,1082,1082,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241339,17247241339,1147,1147,67372155,67372155,1147,1147,17247241338,17247241338,1146,1146,67372154,67372154,1146,1146,17247241339,17247241339,1147,1147,67372155,67372155,1147,1147,17247241338,17247241338,1146,1146,67372154,67372154,1146,1146,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241275,17247241275,1083,1083,67372091,67372091,1083,1083,17247241274,17247241274,1082,1082,67372090,67372090,1082,1082,17247241275,17247241275,1083,1083,67372091,67372091,1083,1083,17247241274,17247241274,1082,1082,67372090,67372090,1082,1082,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241243,17247241243,1051,1051,67372059,67372059,1051,1051,17247241242,17247241242,1050,1050,67372058,67372058,1050,1050,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,17247241227,17247241227,1035,1035,67372043,67372043,1035,1035,17247241226,17247241226,1034,1034,67372042,67372042,1034,1034,263419,263419,1275,1275,263419,263419,1275,1275,263418,263418,1274,1274,263418,263418,1274,1274,263419,263419,1275,1275,263419,263419,1275,1275,263418,263418,1274,1274,263418,263418,1274,1274,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263291,263291,1147,1147,263291,263291,1147,1147,263290,263290,1146,1146,263290,263290,1146,1146,263291,263291,1147,1147,263291,263291,1147,1147,263290,263290,1146,1146,263290,263290,1146,1146,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263227,263227,1083,1083,263227,263227,1083,1083,263226,263226,1082,1082,263226,263226,1082,1082,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263195,263195,1051,1051,263195,263195,1051,1051,263194,263194,1050,1050,263194,263194,1050,1050,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,263179,263179,1035,1035,263179,263179,1035,1035,263178,263178,1034,1034,263178,263178,1034,1034,0],[578721382704613623,134744084,526455,134744084,2295,2068,2167,2068,526582,34494482679,8830587504758,526455,2294,2295,2166,2167,578721382704613620,526582,526452,34494482550,2292,2294,2164,2166,526580,34494482676,8830587504756,526452,2292,2292,2164,2164,134744311,526580,526455,34494482548,2295,2292,2167,2164,526582,134744311,134744182,526455,2294,2295,2166,2167,134744308,526582,526452,134744182,2292,2294,2164,2166,526580,134744308,134744180,526452,2292,2292,2164,2164,578721382704613399,526580,526359,134744180,2071,2292,2071,2164,526358,34494482455,8830587504662,526359,2070,2071,2070,2071,578721382704613396,526358,526356,34494482454,2068,2070,2068,2070,526356,34494482452,8830587504660,526356,2068,2068,2068,2068,134744087,526356,526359,34494482452,2071,2068,2071,2068,526358,134744087,134744086,526359,2070,2071,2070,2071,134744084,526358,526356,134744086,2068,2070,2068,2070,526356,134744084,134744084,526356,2068,2068,2068,2068,578721382704613431,526356,526391,134744084,2103,2068,2103,2068,526390,34494482487,8830587504694,526391,2102,2103,2102,2103,578721382704613428,526390,526388,34494482486,2100,2102,2100,2102,526388,34494482484,8830587504692,526388,2100,2100,2100,2100,134744119,526388,526391,34494482484,2103,2100,2103,2100,526390,134744119,134744118,526391,2102,2103,2102,2103,134744116,526390,526388,134744118,2100,2102,2100,2102,526388,134744116,134744116,526388,2100,2100,2100,2100,578721382704613399,526388,526359,134744116,2071,2100,2071,2100,526358,34494482455,8830587504662,526359,2070,2071,2070,2071,578721382704613396,526358,526356,34494482454,2068,2070,2068,2070,526356,34494482452,8830587504660,526356,2068,2068,2068,2068,134744087,526356,526359,34494482452,2071,2068,2071,2068,526358,134744087,134744086,526359,2070,2071,2070,2071,134744084,526358,526356,134744086,2068,2070,2068,2070,526356,134744084,134744084,526356,2068,2068,2068,2068,578721382704613495,526356,8830587504887,134744084,2167,2068,2295,2068,526454,34494482551,526582,34494482679,2166,2167,2294,2295,578721382704613492,526454,8830587504884,526582,2164,2166,2292,2294,526452,34494482548,526580,34494482676,2164,2164,2292,2292,134744183,526452,134744311,526580,2167,2164,2295,2292,526454,134744183,526582,134744311,2166,2167,2294,2295,134744180,526454,134744308,526582,2164,2166,2292,2294,526452,134744180,526580,134744308,2164,2164,2292,2292,578721382704613399,526452,8830587504663,526580,2071,2164,2071,2292,526358,34494482455,526358,34494482455,2070,2071,2070,2071,578721382704613396,526358,8830587504660,526358,2068,2070,2068,2070,526356,34494482452,526356,34494482452,2068,2068,2068,2068,134744087,526356,134744087,526356,2071,2068,2071,2068,526358,134744087,526358,134744087,2070,2071,2070,2071,134744084,526358,134744084,526358,2068,2070,2068,2070,526356,134744084,526356,134744084,2068,2068,2068,2068,578721382704613431,526356,8830587504695,526356,2103,2068,2103,2068,526390,34494482487,526390,34494482487,2102,2103,2102,2103,578721382704613428,526390,8830587504692,526390,2100,2102,2100,2102,526388,34494482484,526388,34494482484,2100,2100,2100,2100,134744119,526388,134744119,526388,2103,2100,2103,2100,526390,134744119,526390,134744119,2102,2103,2102,2103,134744116,526390,134744116,526390,2100,2102,2100,2102,526388,134744116,526388,134744116,2100,2100,2100,2100,578721382704613399,526388,8830587504663,526388,2071,2100,2071,2100,526358,34494482455,526358,34494482455,2070,2071,2070,2071,578721382704613396,526358,8830587504660,526358,2068,2070,2068,2070,526356,34494482452,526356,34494482452,2068,2068,2068,2068,134744087,526356,134744087,526356,2071,2068,2071,2068,526358,134744087,526358,134744087,2070,2071,2070,2071,134744084,526358,134744084,526358,2068,2070,2068,2070,526356,134744084,526356,134744084,2068,2068,2068,2068,2260630401190135,526356,8830587504759,526356,2295,2068,2167,2068,526582,34494482679,526454,34494482551,2294,2295,2166,2167,2260630401190132,526582,8830587504756,526454,2292,2294,2164,2166,526580,34494482676,526452,34494482548,2292,2292,2164,2164,134744311,526580,134744183,526452,2295,2292,2167,2164,526582,134744311,526454,134744183,2294,2295,2166,2167,134744308,526582,134744180,526454,2292,2294,2164,2166,526580,134744308,526452,134744180,2292,2292,2164,2164,2260630401189911,526580,8830587504663,526452,2071,2292,2071,2164,526358,34494482455,526358,34494482455,2070,2071,2070,2071,2260630401189908,526358,8830587504660,526358,2068,2070,2068,2070,526356,34494482452,526356,34494482452,2068,2068,2068,2068,134744087,526356,134744087,526356,2071,2068,2071,2068,526358,134744087,526358,134744087,2070,2071,2070,2071,134744084,526358,134744084,526358,2068,2070,2068,2070,526356,134744084,526356,134744084,2068,2068,2068,2068,2260630401189943,526356,8830587504695,526356,2103,2068,2103,2068,526390,34494482487,526390,34494482487,2102,2103,2102,2103,2260630401189940,526390,8830587504692,526390,2100,2102,2100,2102,526388,34494482484,526388,34494482484,2100,2100,2100,2100,134744119,526388,134744119,526388,2103,2100,2103,2100,526390,134744119,526390,134744119,2102,2103,2102,2103,134744116,526390,134744116,526390,2100,2102,2100,2102,526388,134744116,526388,134744116,2100,2100,2100,2100,2260630401189911,526388,8830587504663,526388,2071,2100,2071,2100,526358,34494482455,526358,34494482455,2070,2071,2070,2071,2260630401189908,526358,8830587504660,526358,2068,2070,2068,2070,526356,34494482452,526356,34494482452,2068,2068,2068,2068,134744087,526356,134744087,526356,2071,2068,2071,2068,526358,134744087,526358,134744087,2070,2071,2070,2071,134744084,526358,134744084,526358,2068,2070,2068,2070,526356,134744084,526356,134744084,2068,2068,2068,2068,2260630401190007,526356,8830587504887,526356,2167,2068,2295,2068,526454,34494482551,526582,34494482679,2166,2167,2294,2295,2260630401190004,526454,8830587504884,526582,2164,2166,2292,2294,526452,34494482548,526580,34494482676,2164,2164,2292,2292,134744183,526452,134744311,526580,2167,2164,2295,2292,526454,134744183,526582,134744311,2166,2167,2294,2295,134744180,526454,134744308,526582,2164,2166,2292,2294,526452,134744180,526580,134744308,2164,2164,2292,2292,2260630401189911,526452,8830587504663,526580,2071,2164,2071,2292,526358,34494482455,526358,34494482455,2070,2071,2070,2071,2260630401189908,526358,8830587504660,526358,2068,2070,2068,2070,526356,34494482452,526356,34494482452,2068,2068,2068,2068,134744087,526356,134744087,526356,2071,2068,2071,2068,526358,134744087,526358,134744087,2070,2071,2070,2071,134744084,526358,134744084,526358,2068,2070,2068,2070,526356,134744084,526356,134744084,2068,2068,2068,2068,2260630401189943,526356,8830587504695,526356,2103,2068,2103,2068,526390,34494482487,526390,34494482487,2102,2103,2102,2103,2260630401189940,526390,8830587504692,526390,2100,2102,2100,2102,526388,34494482484,526388,34494482484,2100,2100,2100,2100,134744119,526388,134744119,526388,2103,2100,2103,2100,526390,134744119,526390,134744119,2102,2103,2102,2103,134744116,526390,134744116,526390,2100,2102,2100,2102,526388,134744116,526388,134744116,2100,2100,2100,2100,2260630401189911,526388,8830587504663,526388,2071,2100,2071,2100,526358,34494482455,526358,34494482455,2070,2071,2070,2071,2260630401189908,526358,8830587504660,526358,2068,2070,2068,2070,526356,34494482452,526356,34494482452,2068,2068,2068,2068,134744087,526356,134744087,526356,2071,2068,2071,2068,526358,134744087,526358,134744087,2070,2071,2070,2071,134744084,526358,134744084,526358,2068,2070,2068,2070,526356,134744084,526356,134744084,2068,2068,2068,2068,526583,526356,8830587504759,526356,2295,2068,2167,2068,578721382704613622,526583,526454,34494482551,2294,2295,2166,2167,526580,34494482678,8830587504756,526454,2292,2294,2164,2166,578721382704613620,526580,526452,34494482548,2292,2292,2164,2164,526583,34494482676,134744183,526452,2295,2292,2167,2164,134744310,526583,526454,134744183,2294,2295,2166,2167,526580,134744310,134744180,526454,2292,2294,2164,2166,134744308,526580,526452,134744180,2292,2292,2164,2164,526359,134744308,8830587504663,526452,2071,2292,2071,2164,578721382704613398,526359,526358,34494482455,2070,2071,2070,2071,526356,34494482454,8830587504660,526358,2068,2070,2068,2070,578721382704613396,526356,526356,34494482452,2068,2068,2068,2068,526359,34494482452,134744087,526356,2071,2068,2071,2068,134744086,526359,526358,134744087,2070,2071,2070,2071,526356,134744086,134744084,526358,2068,2070,2068,2070,134744084,526356,526356,134744084,2068,2068,2068,2068,526391,134744084,8830587504695,526356,2103,2068,2103,2068,578721382704613430,526391,526390,34494482487,2102,2103,2102,2103,526388,34494482486,8830587504692,526390,2100,2102,2100,2102,578721382704613428,526388,526388,34494482484,2100,2100,2100,2100,526391,34494482484,134744119,526388,2103,2100,2103,2100,134744118,526391,526390,134744119,2102,2103,2102,2103,526388,134744118,134744116,526390,2100,2102,2100,2102,134744116,526388,526388,134744116,2100,2100,2100,2100,526359,134744116,8830587504663,526388,2071,2100,2071,2100,578721382704613398,526359,526358,34494482455,2070,2071,2070,2071,526356,34494482454,8830587504660,526358,2068,2070,2068,2070,578721382704613396,526356,526356,34494482452,2068,2068,2068,2068,526359,34494482452,134744087,526356,2071,2068,2071,2068,134744086,526359,526358,134744087,2070,2071,2070,2071,526356,134744086,134744084,526358,2068,2070,2068,2070,134744084,526356,526356,134744084,2068,2068,2068,2068,526455,134744084,526583,526356,2167,2068,2295,2068,578721382704613494,526455,8830587504886,526583,2166,2167,2294,2295,526452,34494482550,526580,34494482678,2164,2166,2292,2294,578721382704613492,526452,8830587504884,526580,2164,2164,2292,2292,526455,34494482548,526583,34494482676,2167,2164,2295,2292,134744182,526455,134744310,526583,2166,2167,2294,2295,526452,134744182,526580,134744310,2164,2166,2292,2294,134744180,526452,134744308,526580,2164,2164,2292,2292,526359,134744180,526359,134744308,2071,2164,2071,2292,578721382704613398,526359,8830587504662,526359,2070,2071,2070,2071,526356,34494482454,526356,34494482454,2068,2070,2068,2070,578721382704613396,526356,8830587504660,526356,2068,2068,2068,2068,526359,34494482452,526359,34494482452,2071,2068,2071,2068,134744086,526359,134744086,526359,2070,2071,2070,2071,526356,134744086,526356,134744086,2068,2070,2068,2070,134744084,526356,134744084,526356,2068,2068,2068,2068,526391,134744084,526391,134744084,2103,2068,2103,2068,578721382704613430,526391,8830587504694,526391,2102,2103,2102,2103,526388,34494482486,526388,34494482486,2100,2102,2100,2102,578721382704613428,526388,8830587504692,526388,2100,2100,2100,2100,526391,34494482484,526391,34494482484,2103,2100,2103,2100,134744118,526391,134744118,526391,2102,2103,2102,2103,526388,134744118,526388,134744118,2100,2102,2100,2102,134744116,526388,134744116,526388,2100,2100,2100,2100,526359,134744116,526359,134744116,2071,2100,2071,2100,578721382704613398,526359,8830587504662,526359,2070,2071,2070,2071,526356,34494482454,526356,34494482454,2068,2070,2068,2070,578721382704613396,526356,8830587504660,526356,2068,2068,2068,2068,526359,34494482452,526359,34494482452,2071,2068,2071,2068,134744086,526359,134744086,526359,2070,2071,2070,2071,526356,134744086,526356,134744086,2068,2070,2068,2070,134744084,526356,134744084,526356,2068,2068,2068,2068,526583,134744084,526455,134744084,2295,2068,2167,2068,2260630401190134,526583,8830587504758,526455,2294,2295,2166,2167,526580,34494482678,526452,34494482550,2292,2294,2164,2166,2260630401190132,526580,8830587504756,526452,2292,2292,2164,2164,526583,34494482676,526455,34494482548,2295,2292,2167,2164,134744310,526583,134744182,526455,2294,2295,2166,2167,526580,134744310,526452,134744182,2292,2294,2164,2166,134744308,526580,134744180,526452,2292,2292,2164,2164,526359,134744308,526359,134744180,2071,2292,2071,2164,2260630401189910,526359,8830587504662,526359,2070,2071,2070,2071,526356,34494482454,526356,34494482454,2068,2070,2068,2070,2260630401189908,526356,8830587504660,526356,2068,2068,2068,2068,526359,34494482452,526359,34494482452,2071,2068,2071,2068,134744086,526359,134744086,526359,2070,2071,2070,2071,526356,134744086,526356,134744086,2068,2070,2068,2070,134744084,526356,134744084,526356,2068,2068,2068,2068,526391,134744084,526391,134744084,2103,2068,2103,2068,2260630401189942,526391,8830587504694,526391,2102,2103,2102,2103,526388,34494482486,526388,34494482486,2100,2102,2100,2102,2260630401189940,526388,8830587504692,526388,2100,2100,2100,2100,526391,34494482484,526391,34494482484,2103,2100,2103,2100,134744118,526391,134744118,526391,2102,2103,2102,2103,526388,134744118,526388,134744118,2100,2102,2100,2102,134744116,526388,134744116,526388,2100,2100,2100,2100,526359,134744116,526359,134744116,2071,2100,2071,2100,2260630401189910,526359,8830587504662,526359,2070,2071,2070,2071,526356,34494482454,526356,34494482454,2068,2070,2068,2070,2260630401189908,526356,8830587504660,526356,2068,2068,2068,2068,526359,34494482452,526359,34494482452,2071,2068,2071,2068,134744086,526359,134744086,526359,2070,2071,2070,2071,526356,134744086,526356,134744086,2068,2070,2068,2070,134744084,526356,134744084,526356,2068,2068,2068,2068,526455,134744084,526583,134744084,2167,2068,2295,2068,2260630401190006,526455,8830587504886,526583,2166,2167,2294,2295,526452,34494482550,526580,34494482678,2164,2166,2292,2294,2260630401190004,526452,8830587504884,526580,2164,2164,2292,2292,526455,34494482548,526583,34494482676,2167,2164,2295,2292,134744182,526455,134744310,526583,2166,2167,2294,2295,526452,134744182,526580,134744310,2164,2166,2292,2294,134744180,526452,134744308,526580,2164,2164,2292,2292,526359,134744180,526359,134744308,2071,2164,2071,2292,2260630401189910,526359,8830587504662,526359,2070,2071,2070,2071,526356,34494482454,526356,34494482454,2068,2070,2068,2070,2260630401189908,526356,8830587504660,526356,2068,2068,2068,2068,526359,34494482452,526359,34494482452,2071,2068,2071,2068,134744086,526359,134744086,526359,2070,2071,2070,2071,526356,134744086,526356,134744086,2068,2070,2068,2070,134744084,526356,134744084,526356,2068,2068,2068,2068,526391,134744084,526391,134744084,2103,2068,2103,2068,2260630401189942,526391,8830587504694,526391,2102,2103,2102,2103,526388,34494482486,526388,34494482486,2100,2102,2100,2102,2260630401189940,526388,8830587504692,526388,2100,2100,2100,2100,526391,34494482484,526391,34494482484,2103,2100,2103,2100,134744118,526391,134744118,526391,2102,2103,2102,2103,526388,134744118,526388,134744118,2100,2102,2100,2102,134744116,526388,134744116,526388,2100,2100,2100,2100,526359,134744116,526359,134744116,2071,2100,2071,2100,2260630401189910,526359,8830587504662,526359,2070,2071,2070,2071,526356,34494482454,526356,34494482454,2068,2070,2068,2070,2260630401189908,526356,8830587504660,526356,2068,2068,2068,2068,526359,34494482452,526359,34494482452,2071,2068,2071,2068,134744086,526359,134744086,526359,2070,2071,2070,2071,526356,134744086,526356,134744086,2068,2070,2068,2070,134744084,526356,134744084,526356,2068,2068,2068,2068,0],[1157442765409226991,17661175009320,4335,4136,1052780,1052782,4204,4206,68988965103,68988964904,4335,4136,1052776,1052780,4200,4204,269488239,269488168,4207,4136,1052776,1052780,4200,4204,269488239,269488168,4207,4136,1052904,1052908,4328,4332,1157442765409226862,17661175009320,4206,4136,1052904,1052908,4328,4332,68988964974,68988964904,4206,4136,1052904,1052908,4328,4332,269488366,269488168,4334,4136,1052904,1052908,4328,4332,269488366,269488168,4334,4136,1052776,1052780,4200,4204,1157442765409226988,17661175009519,4332,4335,1052776,1052780,4200,4204,68988965100,68988965103,4332,4335,1052776,1052776,4200,4200,269488236,269488239,4204,4207,1052776,1052776,4200,4200,269488236,269488239,4204,4207,1052904,1052904,4328,4328,1157442765409226860,17661175009390,4204,4206,1052904,1052904,4328,4328,68988964972,68988964974,4204,4206,1052904,1052904,4328,4328,269488364,269488366,4332,4334,1052904,1052904,4328,4328,269488364,269488366,4332,4334,1052776,1052776,4200,4200,1157442765409226984,17661175009516,4328,4332,1052776,1052776,4200,4200,68988965096,68988965100,4328,4332,1052719,1052776,4143,4200,269488232,269488236,4200,4204,1052719,1052776,4143,4200,269488232,269488236,4200,4204,1052719,1052904,4143,4328,1157442765409226856,17661175009388,4200,4204,1052719,1052904,4143,4328,68988964968,68988964972,4200,4204,1052718,1052904,4142,4328,269488360,269488364,4328,4332,1052718,1052904,4142,4328,269488360,269488364,4328,4332,1052718,1052776,4142,4200,1157442765409226984,17661175009512,4328,4328,1052718,1052776,4142,4200,68988965096,68988965096,4328,4328,1052716,1052719,4140,4143,269488232,269488232,4200,4200,1052716,1052719,4140,4143,269488232,269488232,4200,4200,1052716,1052719,4140,4143,1157442765409226856,17661175009384,4200,4200,1052716,1052719,4140,4143,68988964968,68988964968,4200,4200,1052716,1052718,4140,4142,269488360,269488360,4328,4328,1052716,1052718,4140,4142,269488360,269488360,4328,4328,1052716,1052718,4140,4142,4521260802380015,17661175009512,4335,4328,1052716,1052718,4140,4142,68988965103,68988965096,4335,4328,1052712,1052716,4136,4140,269488239,269488232,4207,4200,1052712,1052716,4136,4140,269488239,269488232,4207,4200,1052712,1052716,4136,4140,4521260802379886,17661175009384,4206,4200,1052712,1052716,4136,4140,68988964974,68988964968,4206,4200,1052712,1052716,4136,4140,269488366,269488360,4334,4328,1052712,1052716,4136,4140,269488366,269488360,4334,4328,1052712,1052716,4136,4140,4521260802380012,17661175009519,4332,4335,1052712,1052716,4136,4140,68988965100,68988965103,4332,4335,1052712,1052712,4136,4136,269488236,269488239,4204,4207,1052712,1052712,4136,4136,269488236,269488239,4204,4207,1052712,1052712,4136,4136,4521260802379884,17661175009390,4204,4206,1052712,1052712,4136,4136,68988964972,68988964974,4204,4206,1052712,1052712,4136,4136,269488364,269488366,4332,4334,1052712,1052712,4136,4136,269488364,269488366,4332,4334,1052712,1052712,4136,4136,4521260802380008,17661175009516,4328,4332,1052712,1052712,4136,4136,68988965096,68988965100,4328,4332,1052719,1052712,4143,4136,269488232,269488236,4200,4204,1052719,1052712,4143,4136,269488232,269488236,4200,4204,1052719,1052712,4143,4136,4521260802379880,17661175009388,4200,4204,1052719,1052712,4143,4136,68988964968,68988964972,4200,4204,1052718,1052712,4142,4136,269488360,269488364,4328,4332,1052718,1052712,4142,4136,269488360,269488364,4328,4332,1052718,1052712,4142,4136,4521260802380008,17661175009512,4328,4328,1052718,1052712,4142,4136,68988965096,68988965096,4328,4328,1052716,1052719,4140,4143,269488232,269488232,4200,4200,1052716,1052719,4140,4143,269488232,269488232,4200,4200,1052716,1052719,4140,4143,4521260802379880,17661175009384,4200,4200,1052716,1052719,4140,4143,68988964968,68988964968,4200,4200,1052716,1052718,4140,4142,269488360,269488360,4328,4328,1052716,1052718,4140,4142,269488360,269488360,4328,4328,1052716,1052718,4140,4142,1157442765409226799,17661175009512,4143,4328,1052716,1052718,4140,4142,68988964911,68988965096,4143,4328,1052712,1052716,4136,4140,269488175,269488232,4143,4200,1052712,1052716,4136,4140,269488175,269488232,4143,4200,1052712,1052716,4136,4140,1157442765409226798,17661175009384,4142,4200,1052712,1052716,4136,4140,68988964910,68988964968,4142,4200,1052712,1052716,4136,4140,269488174,269488360,4142,4328,1052712,1052716,4136,4140,269488174,269488360,4142,4328,1052712,1052716,4136,4140,1157442765409226796,17661175009327,4140,4143,1052712,1052716,4136,4140,68988964908,68988964911,4140,4143,1052712,1052712,4136,4136,269488172,269488175,4140,4143,1052712,1052712,4136,4136,269488172,269488175,4140,4143,1052712,1052712,4136,4136,1157442765409226796,17661175009326,4140,4142,1052712,1052712,4136,4136,68988964908,68988964910,4140,4142,1052712,1052712,4136,4136,269488172,269488174,4140,4142,1052712,1052712,4136,4136,269488172,269488174,4140,4142,1052712,1052712,4136,4136,1157442765409226792,17661175009324,4136,4140,1052712,1052712,4136,4136,68988964904,68988964908,4136,4140,1052911,1052712,4335,4136,269488168,269488172,4136,4140,1052911,1052712,4335,4136,269488168,269488172,4136,4140,1052783,1052712,4207,4136,1157442765409226792,17661175009324,4136,4140,1052783,1052712,4207,4136,68988964904,68988964908,4136,4140,1052782,1052712,4206,4136,269488168,269488172,4136,4140,1052782,1052712,4206,4136,269488168,269488172,4136,4140,1052910,1052712,4334,4136,1157442765409226792,17661175009320,4136,4136,1052910,1052712,4334,4136,68988964904,68988964904,4136,4136,1052908,1052911,4332,4335,269488168,269488168,4136,4136,1052908,1052911,4332,4335,269488168,269488168,4136,4136,1052780,1052783,4204,4207,1157442765409226792,17661175009320,4136,4136,1052780,1052783,4204,4207,68988964904,68988964904,4136,4136,1052780,1052782,4204,4206,269488168,269488168,4136,4136,1052780,1052782,4204,4206,269488168,269488168,4136,4136,1052908,1052910,4332,4334,4521260802379823,17661175009320,4143,4136,1052908,1052910,4332,4334,68988964911,68988964904,4143,4136,1052904,1052908,4328,4332,269488175,269488168,4143,4136,1052904,1052908,4328,4332,269488175,269488168,4143,4136,1052776,1052780,4200,4204,4521260802379822,17661175009320,4142,4136,1052776,1052780,4200,4204,68988964910,68988964904,4142,4136,1052776,1052780,4200,4204,269488174,269488168,4142,4136,1052776,1052780,4200,4204,269488174,269488168,4142,4136,1052904,1052908,4328,4332,4521260802379820,17661175009327,4140,4143,1052904,1052908,4328,4332,68988964908,68988964911,4140,4143,1052904,1052904,4328,4328,269488172,269488175,4140,4143,1052904,1052904,4328,4328,269488172,269488175,4140,4143,1052776,1052776,4200,4200,4521260802379820,17661175009326,4140,4142,1052776,1052776,4200,4200,68988964908,68988964910,4140,4142,1052776,1052776,4200,4200,269488172,269488174,4140,4142,1052776,1052776,4200,4200,269488172,269488174,4140,4142,1052904,1052904,4328,4328,4521260802379816,17661175009324,4136,4140,1052904,1052904,4328,4328,68988964904,68988964908,4136,4140,1052911,1052904,4335,4328,269488168,269488172,4136,4140,1052911,1052904,4335,4328,269488168,269488172,4136,4140,1052783,1052776,4207,4200,4521260802379816,17661175009324,4136,4140,1052783,1052776,4207,4200,68988964904,68988964908,4136,4140,1052782,1052776,4206,4200,269488168,269488172,4136,4140,1052782,1052776,4206,4200,269488168,269488172,4136,4140,1052910,1052904,4334,4328,4521260802379816,17661175009320,4136,4136,1052910,1052904,4334,4328,68988964904,68988964904,4136,4136,1052908,1052911,4332,4335,269488168,269488168,4136,4136,1052908,1052911,4332,4335,269488168,269488168,4136,4136,1052780,1052783,4204,4207,4521260802379816,17661175009320,4136,4136,1052780,1052783,4204,4207,68988964904,68988964904,4136,4136,1052780,1052782,4204,4206,269488168,269488168,4136,4136,1052780,1052782,4204,4206,269488168,269488168,4136,4136,1052908,1052910,4332,4334,1157442765409226863,17661175009320,4207,4136,1052908,1052910,4332,4334,68988964975,68988964904,4207,4136,1052904,1052908,4328,4332,269488367,269488168,4335,4136,1052904,1052908,4328,4332,269488367,269488168,4335,4136,1052776,1052780,4200,4204,1157442765409226990,17661175009320,4334,4136,1052776,1052780,4200,4204,68988965102,68988964904,4334,4136,1052776,1052780,4200,4204,269488238,269488168,4206,4136,1052776,1052780,4200,4204,269488238,269488168,4206,4136,1052904,1052908,4328,4332,1157442765409226860,17661175009391,4204,4207,1052904,1052908,4328,4332,68988964972,68988964975,4204,4207,1052904,1052904,4328,4328,269488364,269488367,4332,4335,1052904,1052904,4328,4328,269488364,269488367,4332,4335,1052776,1052776,4200,4200,1157442765409226988,17661175009518,4332,4334,1052776,1052776,4200,4200,68988965100,68988965102,4332,4334,1052776,1052776,4200,4200,269488236,269488238,4204,4206,1052776,1052776,4200,4200,269488236,269488238,4204,4206,1052904,1052904,4328,4328,1157442765409226856,17661175009388,4200,4204,1052904,1052904,4328,4328,68988964968,68988964972,4200,4204,1052719,1052904,4143,4328,269488360,269488364,4328,4332,1052719,1052904,4143,4328,269488360,269488364,4328,4332,1052719,1052776,4143,4200,1157442765409226984,17661175009516,4328,4332,1052719,1052776,4143,4200,68988965096,68988965100,4328,4332,1052718,1052776,4142,4200,269488232,269488236,4200,4204,1052718,1052776,4142,4200,269488232,269488236,4200,4204,1052718,1052904,4142,4328,1157442765409226856,17661175009384,4200,4200,1052718,1052904,4142,4328,68988964968,68988964968,4200,4200,1052716,1052719,4140,4143,269488360,269488360,4328,4328,1052716,1052719,4140,4143,269488360,269488360,4328,4328,1052716,1052719,4140,4143,1157442765409226984,17661175009512,4328,4328,1052716,1052719,4140,4143,68988965096,68988965096,4328,4328,1052716,1052718,4140,4142,269488232,269488232,4200,4200,1052716,1052718,4140,4142,269488232,269488232,4200,4200,1052716,1052718,4140,4142,4521260802379887,17661175009384,4207,4200,1052716,1052718,4140,4142,68988964975,68988964968,4207,4200,1052712,1052716,4136,4140,269488367,269488360,4335,4328,1052712,1052716,4136,4140,269488367,269488360,4335,4328,1052712,1052716,4136,4140,4521260802380014,17661175009512,4334,4328,1052712,1052716,4136,4140,68988965102,68988965096,4334,4328,1052712,1052716,4136,4140,269488238,269488232,4206,4200,1052712,1052716,4136,4140,269488238,269488232,4206,4200,1052712,1052716,4136,4140,4521260802379884,17661175009391,4204,4207,1052712,1052716,4136,4140,68988964972,68988964975,4204,4207,1052712,1052712,4136,4136,269488364,269488367,4332,4335,1052712,1052712,4136,4136,269488364,269488367,4332,4335,1052712,1052712,4136,4136,4521260802380012,17661175009518,4332,4334,1052712,1052712,4136,4136,68988965100,68988965102,4332,4334,1052712,1052712,4136,4136,269488236,269488238,4204,4206,1052712,1052712,4136,4136,269488236,269488238,4204,4206,1052712,1052712,4136,4136,4521260802379880,17661175009388,4200,4204,1052712,1052712,4136,4136,68988964968,68988964972,4200,4204,1052719,1052712,4143,4136,269488360,269488364,4328,4332,1052719,1052712,4143,4136,269488360,269488364,4328,4332,1052719,1052712,4143,4136,4521260802380008,17661175009516,4328,4332,1052719,1052712,4143,4136,68988965096,68988965100,4328,4332,1052718,1052712,4142,4136,269488232,269488236,4200,4204,1052718,1052712,4142,4136,269488232,269488236,4200,4204,1052718,1052712,4142,4136,4521260802379880,17661175009384,4200,4200,1052718,1052712,4142,4136,68988964968,68988964968,4200,4200,1052716,1052719,4140,4143,269488360,269488360,4328,4328,1052716,1052719,4140,4143,269488360,269488360,4328,4328,1052716,1052719,4140,4143,4521260802380008,17661175009512,4328,4328,1052716,1052719,4140,4143,68988965096,68988965096,4328,4328,1052716,1052718,4140,4142,269488232,269488232,4200,4200,1052716,1052718,4140,4142,269488232,269488232,4200,4200,1052716,1052718,4140,4142,1157442765409226799,17661175009384,4143,4200,1052716,1052718,4140,4142,68988964911,68988964968,4143,4200,1052712,1052716,4136,4140,269488175,269488360,4143,4328,1052712,1052716,4136,4140,269488175,269488360,4143,4328,1052712,1052716,4136,4140,1157442765409226798,17661175009512,4142,4328,1052712,1052716,4136,4140,68988964910,68988965096,4142,4328,1052712,1052716,4136,4140,269488174,269488232,4142,4200,1052712,1052716,4136,4140,269488174,269488232,4142,4200,1052712,1052716,4136,4140,1157442765409226796,17661175009327,4140,4143,1052712,1052716,4136,4140,68988964908,68988964911,4140,4143,1052712,1052712,4136,4136,269488172,269488175,4140,4143,1052712,1052712,4136,4136,269488172,269488175,4140,4143,1052712,1052712,4136,4136,1157442765409226796,17661175009326,4140,4142,1052712,1052712,4136,4136,68988964908,68988964910,4140,4142,1052712,1052712,4136,4136,269488172,269488174,4140,4142,1052712,1052712,4136,4136,269488172,269488174,4140,4142,1052712,1052712,4136,4136,1157442765409226792,17661175009324,4136,4140,1052712,1052712,4136,4136,68988964904,68988964908,4136,4140,1052783,1052712,4207,4136,269488168,269488172,4136,4140,1052783,1052712,4207,4136,269488168,269488172,4136,4140,1052911,1052712,4335,4136,1157442765409226792,17661175009324,4136,4140,1052911,1052712,4335,4136,68988964904,68988964908,4136,4140,1052910,1052712,4334,4136,269488168,269488172,4136,4140,1052910,1052712,4334,4136,269488168,269488172,4136,4140,1052782,1052712,4206,4136,1157442765409226792,17661175009320,4136,4136,1052782,1052712,4206,4136,68988964904,68988964904,4136,4136,1052780,1052783,4204,4207,269488168,269488168,4136,4136,1052780,1052783,4204,4207,269488168,269488168,4136,4136,1052908,1052911,4332,4335,1157442765409226792,17661175009320,4136,4136,1052908,1052911,4332,4335,68988964904,68988964904,4136,4136,1052908,1052910,4332,4334,269488168,269488168,4136,4136,1052908,1052910,4332,4334,269488168,269488168,4136,4136,1052780,1052782,4204,4206,4521260802379823,17661175009320,4143,4136,1052780,1052782,4204,4206,68988964911,68988964904,4143,4136,1052776,1052780,4200,4204,269488175,269488168,4143,4136,1052776,1052780,4200,4204,269488175,269488168,4143,4136,1052904,1052908,4328,4332,4521260802379822,17661175009320,4142,4136,1052904,1052908,4328,4332,68988964910,68988964904,4142,4136,1052904,1052908,4328,4332,269488174,269488168,4142,4136,1052904,1052908,4328,4332,269488174,269488168,4142,4136,1052776,1052780,4200,4204,4521260802379820,17661175009327,4140,4143,1052776,1052780,4200,4204,68988964908,68988964911,4140,4143,1052776,1052776,4200,4200,269488172,269488175,4140,4143,1052776,1052776,4200,4200,269488172,269488175,4140,4143,1052904,1052904,4328,4328,4521260802379820,17661175009326,4140,4142,1052904,1052904,4328,4328,68988964908,68988964910,4140,4142,1052904,1052904,4328,4328,269488172,269488174,4140,4142,1052904,1052904,4328,4328,269488172,269488174,4140,4142,1052776,1052776,4200,4200,4521260802379816,17661175009324,4136,4140,1052776,1052776,4200,4200,68988964904,68988964908,4136,4140,1052783,1052776,4207,4200,269488168,269488172,4136,4140,1052783,1052776,4207,4200,269488168,269488172,4136,4140,1052911,1052904,4335,4328,4521260802379816,17661175009324,4136,4140,1052911,1052904,4335,4328,68988964904,68988964908,4136,4140,1052910,1052904,4334,4328,269488168,269488172,4136,4140,1052910,1052904,4334,4328,269488168,269488172,4136,4140,1052782,1052776,4206,4200,4521260802379816,17661175009320,4136,4136,1052782,1052776,4206,4200,68988964904,68988964904,4136,4136,1052780,1052783,4204,4207,269488168,269488168,4136,4136,1052780,1052783,4204,4207,269488168,269488168,4136,4136,1052908,1052911,4332,4335,4521260802379816,17661175009320,4136,4136,1052908,1052911,4332,4335,68988964904,68988964904,4136,4136,1052908,1052910,4332,4334,269488168,269488168,4136,4136,1052908,1052910,4332,4334,269488168,269488168,4136,4136,1052780,1052782,4204,4206,0],[2314885530818453727,2105424,8272,8280,8272,8272,2105424,2105424,538976479,2105424,8272,8272,8272,8272,2105424,2105424,2314885530818453726,2105424,8272,8272,8272,8272,2105424,2105424,538976478,2105424,8272,8272,8272,8272,2105424,2105424,2314885530818453724,2105424,8272,8272,8415,8272,9042521604759775,2105424,538976476,2105424,8272,8272,8415,8272,538976479,2105424,2314885530818453724,2105424,8272,8272,8414,8272,9042521604759774,2105424,538976476,2105424,8272,8272,8414,8272,538976478,2105424,2314885530818453720,137977929951,8272,8272,8412,8272,9042521604759772,2105424,538976472,538976479,8415,8272,8412,8272,538976476,2105424,2314885530818453720,137977929950,8415,8272,8412,8272,9042521604759772,2105424,538976472,538976478,8414,8272,8412,8272,538976476,2105424,2314885530818453720,137977929948,8414,8272,8408,8415,9042521604759768,137977929951,538976472,538976476,8412,8272,8408,8415,538976472,538976479,2314885530818453720,137977929948,8412,8272,8408,8414,9042521604759768,137977929950,538976472,538976476,8412,8272,8408,8414,538976472,538976478,2314885530818453712,137977929944,8412,8272,8408,8412,9042521604759768,137977929948,538976464,538976472,8408,8415,8408,8412,538976472,538976476,2314885530818453712,137977929944,8408,8415,8408,8412,9042521604759768,137977929948,538976464,538976472,8408,8414,8408,8412,538976472,538976476,2314885530818453712,137977929944,8408,8414,8400,8408,9042521604759760,137977929944,538976464,538976472,8408,8412,8400,8408,538976464,538976472,2314885530818453712,137977929944,8408,8412,8400,8408,9042521604759760,137977929944,538976464,538976472,8408,8412,8400,8408,538976464,538976472,2314885530818453712,137977929936,8408,8412,8400,8408,9042521604759760,137977929944,538976464,538976464,8400,8408,8400,8408,538976464,538976472,2314885530818453712,137977929936,8400,8408,8400,8408,9042521604759760,137977929944,538976464,538976464,8400,8408,8400,8408,538976464,538976472,2314885530818453712,137977929936,8400,8408,8400,8400,9042521604759760,137977929936,538976464,538976464,8400,8408,8400,8400,538976464,538976464,2314885530818453712,137977929936,8400,8408,8400,8400,9042521604759760,137977929936,538976464,538976464,8400,8408,8400,8400,538976464,538976464,35322350018783,137977929936,8400,8408,8400,8400,9042521604759760,137977929936,538976479,538976464,8400,8400,8400,8400,538976464,538976464,35322350018782,137977929936,8400,8400,8400,8400,9042521604759760,137977929936,538976478,538976464,8400,8400,8400,8400,538976464,538976464,35322350018780,137977929936,8400,8400,8415,8400,35322350018783,137977929936,538976476,538976464,8400,8400,8415,8400,538976479,538976464,35322350018780,137977929936,8400,8400,8414,8400,35322350018782,137977929936,538976476,538976464,8400,8400,8414,8400,538976478,538976464,35322350018776,137977929951,8400,8400,8412,8400,35322350018780,137977929936,538976472,538976479,8415,8400,8412,8400,538976476,538976464,35322350018776,137977929950,8415,8400,8412,8400,35322350018780,137977929936,538976472,538976478,8414,8400,8412,8400,538976476,538976464,35322350018776,137977929948,8414,8400,8408,8415,35322350018776,137977929951,538976472,538976476,8412,8400,8408,8415,538976472,538976479,35322350018776,137977929948,8412,8400,8408,8414,35322350018776,137977929950,538976472,538976476,8412,8400,8408,8414,538976472,538976478,35322350018768,137977929944,8412,8400,8408,8412,35322350018776,137977929948,538976464,538976472,8408,8415,8408,8412,538976472,538976476,35322350018768,137977929944,8408,8415,8408,8412,35322350018776,137977929948,538976464,538976472,8408,8414,8408,8412,538976472,538976476,35322350018768,137977929944,8408,8414,8400,8408,35322350018768,137977929944,538976464,538976472,8408,8412,8400,8408,538976464,538976472,35322350018768,137977929944,8408,8412,8400,8408,35322350018768,137977929944,538976464,538976472,8408,8412,8400,8408,538976464,538976472,35322350018768,137977929936,8408,8412,8400,8408,35322350018768,137977929944,538976464,538976464,8400,8408,8400,8408,538976464,538976472,35322350018768,137977929936,8400,8408,8400,8408,35322350018768,137977929944,538976464,538976464,8400,8408,8400,8408,538976464,538976472,35322350018768,137977929936,8400,8408,8400,8400,35322350018768,137977929936,538976464,538976464,8400,8408,8400,8400,538976464,538976464,35322350018768,137977929936,8400,8408,8400,8400,35322350018768,137977929936,538976464,538976464,8400,8408,8400,8400,538976464,538976464,2314885530818453599,137977929936,8400,8408,8400,8400,35322350018768,137977929936,538976351,538976464,8400,8400,8400,8400,538976464,538976464,2314885530818453598,137977929936,8400,8400,8400,8400,35322350018768,137977929936,538976350,538976464,8400,8400,8400,8400,538976464,538976464,2314885530818453596,137977929936,8400,8400,8287,8400,9042521604759647,137977929936,538976348,538976464,8400,8400,8287,8400,538976351,538976464,2314885530818453596,137977929936,8400,8400,8286,8400,9042521604759646,137977929936,538976348,538976464,8400,8400,8286,8400,538976350,538976464,2314885530818453592,137977929823,8400,8400,8284,8400,9042521604759644,137977929936,538976344,538976351,8287,8400,8284,8400,538976348,538976464,2314885530818453592,137977929822,8287,8400,8284,8400,9042521604759644,137977929936,538976344,538976350,8286,8400,8284,8400,538976348,538976464,2314885530818453592,137977929820,8286,8400,8280,8287,9042521604759640,137977929823,538976344,538976348,8284,8400,8280,8287,538976344,538976351,2314885530818453592,137977929820,8284,8400,8280,8286,9042521604759640,137977929822,538976344,538976348,8284,8400,8280,8286,538976344,538976350,2314885530818453584,137977929816,8284,8400,8280,8284,9042521604759640,137977929820,538976336,538976344,8280,8287,8280,8284,538976344,538976348,2314885530818453584,137977929816,8280,8287,8280,8284,9042521604759640,137977929820,538976336,538976344,8280,8286,8280,8284,538976344,538976348,2314885530818453584,137977929816,8280,8286,8272,8280,9042521604759632,137977929816,538976336,538976344,8280,8284,8272,8280,538976336,538976344,2314885530818453584,137977929816,8280,8284,8272,8280,9042521604759632,137977929816,538976336,538976344,8280,8284,8272,8280,538976336,538976344,2314885530818453584,137977929808,8280,8284,8272,8280,9042521604759632,137977929816,538976336,538976336,8272,8280,8272,8280,538976336,538976344,2314885530818453584,137977929808,8272,8280,8272,8280,9042521604759632,137977929816,538976336,538976336,8272,8280,8272,8280,538976336,538976344,2314885530818453584,137977929808,8272,8280,8272,8272,9042521604759632,137977929808,538976336,538976336,8272,8280,8272,8272,538976336,538976336,2314885530818453584,137977929808,8272,8280,8272,8272,9042521604759632,137977929808,538976336,538976336,8272,8280,8272,8272,538976336,538976336,35322350018655,137977929808,8272,8280,8272,8272,9042521604759632,137977929808,538976351,538976336,8272,8272,8272,8272,538976336,538976336,35322350018654,137977929808,8272,8272,8272,8272,9042521604759632,137977929808,538976350,538976336,8272,8272,8272,8272,538976336,538976336,35322350018652,137977929808,8272,8272,8287,8272,35322350018655,137977929808,538976348,538976336,8272,8272,8287,8272,538976351,538976336,35322350018652,137977929808,8272,8272,8286,8272,35322350018654,137977929808,538976348,538976336,8272,8272,8286,8272,538976350,538976336,35322350018648,137977929823,8272,8272,8284,8272,35322350018652,137977929808,538976344,538976351,8287,8272,8284,8272,538976348,538976336,35322350018648,137977929822,8287,8272,8284,8272,35322350018652,137977929808,538976344,538976350,8286,8272,8284,8272,538976348,538976336,35322350018648,137977929820,8286,8272,8280,8287,35322350018648,137977929823,538976344,538976348,8284,8272,8280,8287,538976344,538976351,35322350018648,137977929820,8284,8272,8280,8286,35322350018648,137977929822,538976344,538976348,8284,8272,8280,8286,538976344,538976350,35322350018640,137977929816,8284,8272,8280,8284,35322350018648,137977929820,538976336,538976344,8280,8287,8280,8284,538976344,538976348,35322350018640,137977929816,8280,8287,8280,8284,35322350018648,137977929820,538976336,538976344,8280,8286,8280,8284,538976344,538976348,35322350018640,137977929816,8280,8286,8272,8280,35322350018640,137977929816,538976336,538976344,8280,8284,8272,8280,538976336,538976344,35322350018640,137977929816,8280,8284,8272,8280,35322350018640,137977929816,538976336,538976344,8280,8284,8272,8280,538976336,538976344,35322350018640,137977929808,8280,8284,8272,8280,35322350018640,137977929816,538976336,538976336,8272,8280,8272,8280,538976336,538976344,35322350018640,137977929808,8272,8280,8272,8280,35322350018640,137977929816,538976336,538976336,8272,8280,8272,8280,538976336,538976344,35322350018640,137977929808,8272,8280,8272,8272,35322350018640,137977929808,538976336,538976336,8272,8280,8272,8272,538976336,538976336,35322350018640,137977929808,8272,8280,8272,8272,35322350018640,137977929808,538976336,538976336,8272,8280,8272,8272,538976336,538976336,2105567,137977929808,8272,8280,8272,8272,35322350018640,137977929808,2105567,538976336,8272,8272,8272,8272,538976336,538976336,2105566,137977929808,8272,8272,8272,8272,35322350018640,137977929808,2105566,538976336,8272,8272,8272,8272,538976336,538976336,2105564,137977929808,8272,8272,8415,8272,2105567,137977929808,2105564,538976336,8272,8272,8415,8272,2105567,538976336,2105564,137977929808,8272,8272,8414,8272,2105566,137977929808,2105564,538976336,8272,8272,8414,8272,2105566,538976336,2105560,2105567,8272,8272,8412,8272,2105564,137977929808,2105560,2105567,8415,8272,8412,8272,2105564,538976336,2105560,2105566,8415,8272,8412,8272,2105564,137977929808,2105560,2105566,8414,8272,8412,8272,2105564,538976336,2105560,2105564,8414,8272,8408,8415,2105560,2105567,2105560,2105564,8412,8272,8408,8415,2105560,2105567,2105560,2105564,8412,8272,8408,8414,2105560,2105566,2105560,2105564,8412,8272,8408,8414,2105560,2105566,2105552,2105560,8412,8272,8408,8412,2105560,2105564,2105552,2105560,8408,8415,8408,8412,2105560,2105564,2105552,2105560,8408,8415,8408,8412,2105560,2105564,2105552,2105560,8408,8414,8408,8412,2105560,2105564,2105552,2105560,8408,8414,8400,8408,2105552,2105560,2105552,2105560,8408,8412,8400,8408,2105552,2105560,2105552,2105560,8408,8412,8400,8408,2105552,2105560,2105552,2105560,8408,8412,8400,8408,2105552,2105560,2105552,2105552,8408,8412,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105567,2105552,8400,8408,8400,8400,2105552,2105552,2105567,2105552,8400,8400,8400,8400,2105552,2105552,2105566,2105552,8400,8400,8400,8400,2105552,2105552,2105566,2105552,8400,8400,8400,8400,2105552,2105552,2105564,2105552,8400,8400,8415,8400,2105567,2105552,2105564,2105552,8400,8400,8415,8400,2105567,2105552,2105564,2105552,8400,8400,8414,8400,2105566,2105552,2105564,2105552,8400,8400,8414,8400,2105566,2105552,2105560,2105567,8400,8400,8412,8400,2105564,2105552,2105560,2105567,8415,8400,8412,8400,2105564,2105552,2105560,2105566,8415,8400,8412,8400,2105564,2105552,2105560,2105566,8414,8400,8412,8400,2105564,2105552,2105560,2105564,8414,8400,8408,8415,2105560,2105567,2105560,2105564,8412,8400,8408,8415,2105560,2105567,2105560,2105564,8412,8400,8408,8414,2105560,2105566,2105560,2105564,8412,8400,8408,8414,2105560,2105566,2105552,2105560,8412,8400,8408,8412,2105560,2105564,2105552,2105560,8408,8415,8408,8412,2105560,2105564,2105552,2105560,8408,8415,8408,8412,2105560,2105564,2105552,2105560,8408,8414,8408,8412,2105560,2105564,2105552,2105560,8408,8414,8400,8408,2105552,2105560,2105552,2105560,8408,8412,8400,8408,2105552,2105560,2105552,2105560,8408,8412,8400,8408,2105552,2105560,2105552,2105560,8408,8412,8400,8408,2105552,2105560,2105552,2105552,8408,8412,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8408,2105552,2105560,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105552,2105552,8400,8408,8400,8400,2105552,2105552,2105439,2105552,8400,8408,8400,8400,2105552,2105552,2105439,2105552,8400,8400,8400,8400,2105552,2105552,2105438,2105552,8400,8400,8400,8400,2105552,2105552,2105438,2105552,8400,8400,8400,8400,2105552,2105552,2105436,2105552,8400,8400,8287,8400,2105439,2105552,2105436,2105552,8400,8400,8287,8400,2105439,2105552,2105436,2105552,8400,8400,8286,8400,2105438,2105552,2105436,2105552,8400,8400,8286,8400,2105438,2105552,2105432,2105439,8400,8400,8284,8400,2105436,2105552,2105432,2105439,8287,8400,8284,8400,2105436,2105552,2105432,2105438,8287,8400,8284,8400,2105436,2105552,2105432,2105438,8286,8400,8284,8400,2105436,2105552,2105432,2105436,8286,8400,8280,8287,2105432,2105439,2105432,2105436,8284,8400,8280,8287,2105432,2105439,2105432,2105436,8284,8400,8280,8286,2105432,2105438,2105432,2105436,8284,8400,8280,8286,2105432,2105438,2105424,2105432,8284,8400,8280,8284,2105432,2105436,2105424,2105432,8280,8287,8280,8284,2105432,2105436,2105424,2105432,8280,8287,8280,8284,2105432,2105436,2105424,2105432,8280,8286,8280,8284,2105432,2105436,2105424,2105432,8280,8286,8272,8280,2105424,2105432,2105424,2105432,8280,8284,8272,8280,2105424,2105432,2105424,2105432,8280,8284,8272,8280,2105424,2105432,2105424,2105432,8280,8284,8272,8280,2105424,2105432,2105424,2105424,8280,8284,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105439,2105424,8272,8280,8272,8272,2105424,2105424,2105439,2105424,8272,8272,8272,8272,2105424,2105424,2105438,2105424,8272,8272,8272,8272,2105424,2105424,2105438,2105424,8272,8272,8272,8272,2105424,2105424,2105436,2105424,8272,8272,8287,8272,2105439,2105424,2105436,2105424,8272,8272,8287,8272,2105439,2105424,2105436,2105424,8272,8272,8286,8272,2105438,2105424,2105436,2105424,8272,8272,8286,8272,2105438,2105424,2105432,2105439,8272,8272,8284,8272,2105436,2105424,2105432,2105439,8287,8272,8284,8272,2105436,2105424,2105432,2105438,8287,8272,8284,8272,2105436,2105424,2105432,2105438,8286,8272,8284,8272,2105436,2105424,2105432,2105436,8286,8272,8280,8287,2105432,2105439,2105432,2105436,8284,8272,8280,8287,2105432,2105439,2105432,2105436,8284,8272,8280,8286,2105432,2105438,2105432,2105436,8284,8272,8280,8286,2105432,2105438,2105424,2105432,8284,8272,8280,8284,2105432,2105436,2105424,2105432,8280,8287,8280,8284,2105432,2105436,2105424,2105432,8280,8287,8280,8284,2105432,2105436,2105424,2105432,8280,8286,8280,8284,2105432,2105436,2105424,2105432,8280,8286,8272,8280,2105424,2105432,2105424,2105432,8280,8284,8272,8280,2105424,2105432,2105424,2105432,8280,8284,8272,8280,2105424,2105432,2105424,2105432,8280,8284,8272,8280,2105424,2105432,2105424,2105424,8280,8284,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8280,2105424,2105432,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105424,2105424,8272,8280,8272,8272,2105424,2105424,2105424,2105424,8272,8280,8272,8272,2105424,2105424,0],[4629771061636907199,70644700037311,16560,16560,1077952672,1077952672,16568,16568,275955859632,275955859632,4210879,4210879,1077952700,1077952700,4210848,4210848,16575,16575,4210864,4210864,16544,16544,4210876,4210876,16560,16560,16575,16575,16572,16572,16544,16544,4629771061636907168,70644700037280,16560,16560,1077952672,1077952672,16572,16572,18085043209519292,70644700037308,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210876,4210876,16544,16544,4210848,4210848,16572,16572,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16572,16572,1077952672,1077952672,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210848,4210848,16544,16544,4210848,4210848,16544,16544,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16544,16544,1077952688,1077952688,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952696,1077952696,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,4629771061636907192,70644700037304,16544,16544,1077952702,1077952702,16560,16560,275955859632,275955859632,4210872,4210872,1077952688,1077952688,4210878,4210878,16568,16568,4210864,4210864,16574,16574,4210864,4210864,16560,16560,16568,16568,16560,16560,16574,16574,275955859644,275955859644,16560,16560,1077952672,1077952672,16560,16560,18085043209519280,70644700037296,4210876,4210876,1077952696,1077952696,4210848,4210848,16572,16572,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16572,16572,16568,16568,16544,16544,275955859616,275955859616,16560,16560,1077952672,1077952672,16568,16568,275955859640,275955859640,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210848,4210848,16568,16568,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16568,16568,1077952672,1077952672,16544,16544,18085043209519295,70644700037311,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210879,4210879,16544,16544,4210848,4210848,16575,16575,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16575,16575,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952688,1077952688,16544,16544,275955859616,275955859616,4210864,4210864,1077952672,1077952672,4210864,4210864,16560,16560,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16560,16560,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952700,1077952700,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952688,1077952688,4210876,4210876,16560,16560,4210848,4210848,16572,16572,4210864,4210864,16544,16544,16560,16560,16560,16560,16572,16572,4629771061636907192,70644700037304,16544,16544,1077952672,1077952672,16560,16560,275955859632,275955859632,4210872,4210872,1077952696,1077952696,4210848,4210848,16568,16568,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16568,16568,16568,16568,16544,16544,4629771061636907168,70644700037280,16560,16560,1077952672,1077952672,16568,16568,18085043209519288,70644700037304,4210848,4210848,1077952702,1077952702,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210878,4210878,16568,16568,16544,16544,16574,16574,16544,16544,275955859616,275955859616,16568,16568,1077952672,1077952672,16574,16574,275955859644,275955859644,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210876,4210876,16544,16544,4210848,4210848,16572,16572,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16572,16572,1077952688,1077952688,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,275955859616,275955859616,16544,16544,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952696,1077952696,16544,16544,275955859616,275955859616,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,275955859640,275955859640,16544,16544,1077952703,1077952703,16560,16560,18085043209519280,70644700037296,4210872,4210872,1077952688,1077952688,4210879,4210879,16568,16568,4210864,4210864,16575,16575,4210864,4210864,16560,16560,16568,16568,16560,16560,16575,16575,4629771061636907198,70644700037310,16560,16560,1077952672,1077952672,16560,16560,275955859632,275955859632,4210878,4210878,1077952700,1077952700,4210848,4210848,16574,16574,4210864,4210864,16544,16544,4210876,4210876,16560,16560,16574,16574,16572,16572,16544,16544,4629771061636907168,70644700037280,16560,16560,1077952672,1077952672,16572,16572,18085043209519288,70644700037304,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210848,4210848,16568,16568,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16568,16568,1077952672,1077952672,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210848,4210848,16544,16544,4210848,4210848,16544,16544,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16544,16544,1077952688,1077952688,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952696,1077952696,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,4629771061636907184,70644700037296,16544,16544,1077952700,1077952700,16560,16560,275955859616,275955859616,4210864,4210864,1077952688,1077952688,4210876,4210876,16560,16560,4210848,4210848,16572,16572,4210864,4210864,16544,16544,16560,16560,16560,16560,16572,16572,275955859644,275955859644,16544,16544,1077952672,1077952672,16560,16560,18085043209519280,70644700037296,4210876,4210876,1077952696,1077952696,4210848,4210848,16572,16572,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16572,16572,16568,16568,16544,16544,275955859616,275955859616,16560,16560,1077952672,1077952672,16568,16568,275955859640,275955859640,4210848,4210848,1077952703,1077952703,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210879,4210879,16568,16568,16544,16544,16575,16575,16544,16544,4629771061636907168,70644700037280,16568,16568,1077952672,1077952672,16575,16575,18085043209519294,70644700037310,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210878,4210878,16544,16544,4210848,4210848,16574,16574,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16574,16574,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952688,1077952688,16544,16544,275955859616,275955859616,4210864,4210864,1077952672,1077952672,4210864,4210864,16560,16560,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16560,16560,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952696,1077952696,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,4629771061636907192,70644700037304,16544,16544,1077952672,1077952672,16560,16560,275955859632,275955859632,4210872,4210872,1077952696,1077952696,4210848,4210848,16568,16568,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16568,16568,16568,16568,16544,16544,275955859647,275955859647,16560,16560,1077952672,1077952672,16568,16568,18085043209519280,70644700037296,4210879,4210879,1077952700,1077952700,4210848,4210848,16575,16575,4210864,4210864,16544,16544,4210876,4210876,16560,16560,16575,16575,16572,16572,16544,16544,275955859616,275955859616,16560,16560,1077952672,1077952672,16572,16572,275955859644,275955859644,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210876,4210876,16544,16544,4210848,4210848,16572,16572,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16572,16572,1077952672,1077952672,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210848,4210848,16544,16544,4210848,4210848,16544,16544,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16544,16544,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952696,1077952696,16544,16544,275955859616,275955859616,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,275955859640,275955859640,16544,16544,1077952702,1077952702,16560,16560,18085043209519280,70644700037296,4210872,4210872,1077952688,1077952688,4210878,4210878,16568,16568,4210864,4210864,16574,16574,4210864,4210864,16560,16560,16568,16568,16560,16560,16574,16574,4629771061636907196,70644700037308,16560,16560,1077952672,1077952672,16560,16560,275955859632,275955859632,4210876,4210876,1077952696,1077952696,4210848,4210848,16572,16572,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16572,16572,16568,16568,16544,16544,4629771061636907168,70644700037280,16560,16560,1077952672,1077952672,16568,16568,18085043209519288,70644700037304,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210848,4210848,16568,16568,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16568,16568,1077952672,1077952672,16544,16544,275955859647,275955859647,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210879,4210879,16544,16544,4210848,4210848,16575,16575,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16575,16575,1077952688,1077952688,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952672,1077952672,4210864,4210864,16560,16560,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16560,16560,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952700,1077952700,16544,16544,275955859616,275955859616,4210864,4210864,1077952688,1077952688,4210876,4210876,16560,16560,4210848,4210848,16572,16572,4210864,4210864,16544,16544,16560,16560,16560,16560,16572,16572,275955859640,275955859640,16544,16544,1077952672,1077952672,16560,16560,18085043209519280,70644700037296,4210872,4210872,1077952696,1077952696,4210848,4210848,16568,16568,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16568,16568,16568,16568,16544,16544,275955859616,275955859616,16560,16560,1077952672,1077952672,16568,16568,275955859640,275955859640,4210848,4210848,1077952702,1077952702,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210878,4210878,16568,16568,16544,16544,16574,16574,16544,16544,4629771061636907168,70644700037280,16568,16568,1077952672,1077952672,16574,16574,18085043209519292,70644700037308,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210876,4210876,16544,16544,4210848,4210848,16572,16572,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16572,16572,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,4629771061636907168,70644700037280,16544,16544,1077952688,1077952688,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952696,1077952696,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,4629771061636907192,70644700037304,16544,16544,1077952703,1077952703,16560,16560,275955859632,275955859632,4210872,4210872,1077952688,1077952688,4210879,4210879,16568,16568,4210864,4210864,16575,16575,4210864,4210864,16560,16560,16568,16568,16560,16560,16575,16575,275955859646,275955859646,16560,16560,1077952672,1077952672,16560,16560,18085043209519280,70644700037296,4210878,4210878,1077952700,1077952700,4210848,4210848,16574,16574,4210864,4210864,16544,16544,4210876,4210876,16560,16560,16574,16574,16572,16572,16544,16544,275955859616,275955859616,16560,16560,1077952672,1077952672,16572,16572,275955859640,275955859640,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210848,4210848,16568,16568,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16568,16568,1077952672,1077952672,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210848,4210848,16544,16544,4210848,4210848,16544,16544,16544,16544,16544,16544,16544,16544,275955859616,275955859616,16544,16544,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952696,1077952696,16544,16544,275955859616,275955859616,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,275955859632,275955859632,16544,16544,1077952700,1077952700,16560,16560,18085043209519264,70644700037280,4210864,4210864,1077952688,1077952688,4210876,4210876,16560,16560,4210848,4210848,16572,16572,4210864,4210864,16544,16544,16560,16560,16560,16560,16572,16572,4629771061636907196,70644700037308,16544,16544,1077952672,1077952672,16560,16560,275955859632,275955859632,4210876,4210876,1077952696,1077952696,4210848,4210848,16572,16572,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16572,16572,16568,16568,16544,16544,4629771061636907168,70644700037280,16560,16560,1077952672,1077952672,16568,16568,18085043209519288,70644700037304,4210848,4210848,1077952703,1077952703,4210848,4210848,16544,16544,4210872,4210872,16544,16544,4210879,4210879,16568,16568,16544,16544,16575,16575,16544,16544,275955859616,275955859616,16568,16568,1077952672,1077952672,16575,16575,275955859646,275955859646,4210848,4210848,1077952672,1077952672,4210848,4210848,16544,16544,4210878,4210878,16544,16544,4210848,4210848,16574,16574,16544,16544,16544,16544,16544,16544,4629771061636907168,70644700037280,16574,16574,1077952688,1077952688,16544,16544,275955859616,275955859616,4210848,4210848,1077952672,1077952672,4210864,4210864,16544,16544,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16544,16544,16544,16544,16560,16560,275955859632,275955859632,16544,16544,1077952688,1077952688,16544,16544,18085043209519264,70644700037280,4210864,4210864,1077952672,1077952672,4210864,4210864,16560,16560,4210848,4210848,16560,16560,4210848,4210848,16544,16544,16560,16560,16544,16544,16560,16560,4629771061636907184,70644700037296,16544,16544,1077952696,1077952696,16544,16544,275955859616,275955859616,4210864,4210864,1077952688,1077952688,4210872,4210872,16560,16560,4210848,4210848,16568,16568,4210864,4210864,16544,16544,16560,16560,16560,16560,16568,16568,275955859640,275955859640,16544,16544,1077952672,1077952672,16560,16560,18085043209519280,70644700037296,4210872,4210872,1077952696,1077952696,4210848,4210848,16568,16568,4210864,4210864,16544,16544,4210872,4210872,16560,16560,16568,16568,16568,16568,16544,16544,0],[9259542123273814143,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421440,32832,32864,141289400074367,8421488,32832,32880,9259542123273814142,8421472,32832,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32864,141289400074366,8421472,32832,32880,9259542123273814140,8421472,32895,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32832,141289400074364,8421472,32895,32880,9259542123273814140,8421472,32894,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074364,8421472,32894,32864,9259542123273814136,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32892,32864,9259542123273814136,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32892,32864,9259542123273814136,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32888,32864,9259542123273814136,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32888,32864,9259542123273814128,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32888,32864,9259542123273814128,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32888,32864,9259542123273814128,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,9259542123273814128,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,9259542123273814128,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,9259542123273814128,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,9259542123273814128,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,9259542123273814128,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,9259542123273814112,8421472,32880,32864,2155905088,8421440,32832,32832,2155905151,8421440,32832,32832,141289400074336,8421472,32880,32864,9259542123273814112,8421440,32880,32864,2155905151,8421440,32832,32832,2155905150,8421440,32832,32832,141289400074336,8421440,32880,32864,9259542123273814112,8421440,32864,32864,2155905150,8421440,32832,32832,2155905148,8421440,32895,32832,141289400074336,8421440,32864,32864,9259542123273814112,8421440,32864,32832,2155905148,8421440,32895,32832,2155905148,8421440,32894,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905148,8421440,32894,32832,2155905144,8421440,32892,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32892,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32888,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905144,8421440,32888,32832,2155905144,8421440,32888,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905144,8421440,32888,32832,2155905136,8421440,32888,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32888,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,9259542123273814112,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,9259542123273814080,8421440,32864,32832,2155905136,8421440,32880,32832,2155905120,8421503,32880,32832,141289400074304,8421440,32864,32832,9259542123273814080,8421440,32864,32832,2155905120,8421503,32880,32832,2155905120,8421502,32880,32832,141289400074304,8421440,32864,32832,9259542123273814080,8421440,32832,32832,2155905120,8421502,32880,32832,2155905120,8421500,32864,32895,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421500,32864,32895,2155905120,8421500,32864,32894,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421500,32864,32894,2155905120,8421496,32864,32892,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32892,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32888,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421496,32864,32888,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421488,32864,32888,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32888,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421440,32832,32832,2155905120,8421488,32864,32880,2155905088,8421472,32864,32880,141289400074304,8421440,32832,32832,9259542123273814080,8421503,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32864,32880,141289400074304,8421503,32832,32832,9259542123273814080,8421502,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32832,32864,141289400074304,8421502,32832,32832,9259542123273814080,8421500,32832,32895,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421500,32832,32895,9259542123273814080,8421500,32832,32894,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421500,32832,32894,9259542123273814080,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32892,9259542123273814080,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32892,9259542123273814080,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32888,9259542123273814080,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32888,9259542123273814080,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32888,9259542123273814080,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32888,9259542123273814080,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,9259542123273814080,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,9259542123273814080,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,9259542123273814080,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,9259542123273814080,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,551911719039,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421440,32832,32864,551911719039,8421488,32832,32880,551911719038,8421472,32832,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32864,551911719038,8421472,32832,32880,551911719036,8421472,32895,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32832,551911719036,8421472,32895,32880,551911719036,8421472,32894,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719036,8421472,32894,32864,551911719032,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32892,32864,551911719032,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32892,32864,551911719032,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32888,32864,551911719032,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32888,32864,551911719024,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32888,32864,551911719024,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32888,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719008,8421472,32880,32864,2155905088,8421440,32832,32832,2155905151,8421440,32832,32832,551911719008,8421472,32880,32864,551911719008,8421440,32880,32864,2155905151,8421440,32832,32832,2155905150,8421440,32832,32832,551911719008,8421440,32880,32864,551911719008,8421440,32864,32864,2155905150,8421440,32832,32832,2155905148,8421440,32895,32832,551911719008,8421440,32864,32864,551911719008,8421440,32864,32832,2155905148,8421440,32895,32832,2155905148,8421440,32894,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905148,8421440,32894,32832,2155905144,8421440,32892,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32892,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32888,32832,2155905144,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32888,32832,2155905136,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911718976,8421440,32864,32832,2155905136,8421440,32880,32832,2155905120,8421503,32880,32832,551911718976,8421440,32864,32832,551911718976,8421440,32864,32832,2155905120,8421503,32880,32832,2155905120,8421502,32880,32832,551911718976,8421440,32864,32832,551911718976,8421440,32832,32832,2155905120,8421502,32880,32832,2155905120,8421500,32864,32895,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421500,32864,32895,2155905120,8421500,32864,32894,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421500,32864,32894,2155905120,8421496,32864,32892,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32892,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421496,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421488,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905088,8421472,32864,32880,551911718976,8421440,32832,32832,551911718976,8421503,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32864,32880,551911718976,8421503,32832,32832,551911718976,8421502,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32832,32864,551911718976,8421502,32832,32832,551911718976,8421500,32832,32895,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421500,32832,32895,551911718976,8421500,32832,32894,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421500,32832,32894,551911718976,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32892,551911718976,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32892,551911718976,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32888,551911718976,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32888,551911718976,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32888,551911718976,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32888,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911719039,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421440,32832,32864,551911719039,8421488,32832,32880,551911719038,8421472,32832,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32864,551911719038,8421472,32832,32880,551911719036,8421472,32895,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32832,551911719036,8421472,32895,32880,551911719036,8421472,32894,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719036,8421472,32894,32864,551911719032,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32892,32864,551911719032,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32892,32864,551911719032,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32888,32864,551911719032,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719032,8421472,32888,32864,551911719024,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32888,32864,551911719024,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32888,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719024,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,551911719024,8421472,32880,32864,551911719008,8421472,32880,32864,2155905088,8421440,32832,32832,2155905151,8421440,32832,32832,551911719008,8421472,32880,32864,551911719008,8421440,32880,32864,2155905151,8421440,32832,32832,2155905150,8421440,32832,32832,551911719008,8421440,32880,32864,551911719008,8421440,32864,32864,2155905150,8421440,32832,32832,2155905148,8421440,32895,32832,551911719008,8421440,32864,32864,551911719008,8421440,32864,32832,2155905148,8421440,32895,32832,2155905148,8421440,32894,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905148,8421440,32894,32832,2155905144,8421440,32892,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32892,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32888,32832,2155905144,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905144,8421440,32888,32832,2155905136,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32888,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911719008,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,551911719008,8421440,32864,32832,551911718976,8421440,32864,32832,2155905136,8421440,32880,32832,2155905120,8421503,32880,32832,551911718976,8421440,32864,32832,551911718976,8421440,32864,32832,2155905120,8421503,32880,32832,2155905120,8421502,32880,32832,551911718976,8421440,32864,32832,551911718976,8421440,32832,32832,2155905120,8421502,32880,32832,2155905120,8421500,32864,32895,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421500,32864,32895,2155905120,8421500,32864,32894,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421500,32864,32894,2155905120,8421496,32864,32892,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32892,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421496,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421488,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32888,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,551911718976,8421440,32832,32832,551911718976,8421440,32832,32832,2155905120,8421488,32864,32880,2155905088,8421472,32864,32880,551911718976,8421440,32832,32832,551911718976,8421503,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32864,32880,551911718976,8421503,32832,32832,551911718976,8421502,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32832,32864,551911718976,8421502,32832,32832,551911718976,8421500,32832,32895,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421500,32832,32895,551911718976,8421500,32832,32894,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421500,32832,32894,551911718976,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32892,551911718976,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32892,551911718976,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32888,551911718976,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421496,32832,32888,551911718976,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32888,551911718976,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32888,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,551911718976,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,551911718976,8421488,32832,32880,36170086419038335,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421440,32832,32864,141289400074367,8421488,32832,32880,36170086419038334,8421472,32832,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32864,141289400074366,8421472,32832,32880,36170086419038332,8421472,32895,32880,2155905088,8421440,32832,32864,2155905088,8421440,32832,32832,141289400074364,8421472,32895,32880,36170086419038332,8421472,32894,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074364,8421472,32894,32864,36170086419038328,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32892,32864,36170086419038328,8421472,32892,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32892,32864,36170086419038328,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32888,32864,36170086419038328,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074360,8421472,32888,32864,36170086419038320,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32888,32864,36170086419038320,8421472,32888,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32888,32864,36170086419038320,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,36170086419038320,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,36170086419038320,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,36170086419038320,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,36170086419038320,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,36170086419038320,8421472,32880,32864,2155905088,8421440,32832,32832,2155905088,8421440,32832,32832,141289400074352,8421472,32880,32864,36170086419038304,8421472,32880,32864,2155905088,8421440,32832,32832,2155905151,8421440,32832,32832,141289400074336,8421472,32880,32864,36170086419038304,8421440,32880,32864,2155905151,8421440,32832,32832,2155905150,8421440,32832,32832,141289400074336,8421440,32880,32864,36170086419038304,8421440,32864,32864,2155905150,8421440,32832,32832,2155905148,8421440,32895,32832,141289400074336,8421440,32864,32864,36170086419038304,8421440,32864,32832,2155905148,8421440,32895,32832,2155905148,8421440,32894,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905148,8421440,32894,32832,2155905144,8421440,32892,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32892,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905144,8421440,32892,32832,2155905144,8421440,32888,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905144,8421440,32888,32832,2155905144,8421440,32888,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905144,8421440,32888,32832,2155905136,8421440,32888,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32888,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32888,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,36170086419038304,8421440,32864,32832,2155905136,8421440,32880,32832,2155905136,8421440,32880,32832,141289400074336,8421440,32864,32832,36170086419038272,8421440,32864,32832,2155905136,8421440,32880,32832,2155905120,8421503,32880,32832,141289400074304,8421440,32864,32832,36170086419038272,8421440,32864,32832,2155905120,8421503,32880,32832,2155905120,8421502,32880,32832,141289400074304,8421440,32864,32832,36170086419038272,8421440,32832,32832,2155905120,8421502,32880,32832,2155905120,8421500,32864,32895,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421500,32864,32895,2155905120,8421500,32864,32894,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421500,32864,32894,2155905120,8421496,32864,32892,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32892,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421496,32864,32892,2155905120,8421496,32864,32888,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421496,32864,32888,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421496,32864,32888,2155905120,8421488,32864,32888,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32888,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32888,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32880,2155905120,8421488,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421440,32832,32832,2155905120,8421488,32864,32880,2155905088,8421472,32864,32880,141289400074304,8421440,32832,32832,36170086419038272,8421503,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32864,32880,141289400074304,8421503,32832,32832,36170086419038272,8421502,32832,32832,2155905088,8421472,32864,32880,2155905088,8421472,32832,32864,141289400074304,8421502,32832,32832,36170086419038272,8421500,32832,32895,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421500,32832,32895,36170086419038272,8421500,32832,32894,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421500,32832,32894,36170086419038272,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32892,36170086419038272,8421496,32832,32892,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32892,36170086419038272,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32888,36170086419038272,8421496,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421496,32832,32888,36170086419038272,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32888,36170086419038272,8421488,32832,32888,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32888,36170086419038272,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,36170086419038272,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,36170086419038272,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,36170086419038272,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,36170086419038272,8421488,32832,32880,2155905088,8421472,32832,32864,2155905088,8421472,32832,32864,141289400074304,8421488,32832,32880,0],[72340172838141441,130561,1103823502849,130561,16875009,97793,16875009,97793,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311825921,81409,4311825921,81409,16858625,81409,16858625,81409,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838084097,73217,1103823445505,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311842305,97793,4311842305,97793,16907777,130561,16907777,130561,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838092289,81409,1103823453697,81409,16858625,81409,16858625,81409,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800213505,130561,1103823502849,130561,16875009,97793,16875009,97793,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838084097,73217,1103823445505,73217,16850433,73217,16850433,73217,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311825921,81409,4311825921,81409,16858625,81409,16858625,81409,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800156161,73217,1103823445505,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838108673,97793,1103823470081,97793,16907777,130561,16907777,130561,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800164353,81409,1103823453697,81409,16858625,81409,16858625,81409,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838084097,73217,1103823445505,73217,16850433,73217,16850433,73217,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311875073,130561,4311875073,130561,16875009,97793,16875009,97793,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800156161,73217,1103823445505,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838092289,81409,1103823453697,81409,16858625,81409,16858625,81409,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800180737,97793,1103823470081,97793,16907777,130561,16907777,130561,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838084097,73217,1103823445505,73217,16850433,73217,16850433,73217,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311825921,81409,4311825921,81409,16858625,81409,16858625,81409,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838080001,69121,1103823441409,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800156161,73217,1103823445505,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,72340172838077953,67073,1103823439361,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,72340172838076929,66049,1103823438337,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311875073,130561,4311875073,130561,16875009,97793,16875009,97793,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800164353,81409,1103823453697,81409,16858625,81409,16858625,81409,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311842305,97793,4311842305,97793,16907777,130561,16907777,130561,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800156161,73217,1103823445505,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311825921,81409,4311825921,81409,16858625,81409,16858625,81409,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800152065,69121,1103823441409,69121,16846337,69121,16846337,69121,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311817729,73217,4311817729,73217,16850433,73217,16850433,73217,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,282578800150017,67073,1103823439361,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,4311813633,69121,4311813633,69121,16846337,69121,16846337,69121,282578800148993,66049,1103823438337,66049,16843265,66049,16843265,66049,4311811585,67073,4311811585,67073,16844289,67073,16844289,67073,4311810561,66049,4311810561,66049,16843265,66049,16843265,66049,0],[144680345676217602,195842,2207646940418,195842,8623684866,195842,8623684866,195842,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33701122,146690,33701122,146690,33701122,146690,33701122,146690,33686786,132354,33686786,132354,33686786,132354,33686786,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676160258,138498,2207646883074,138498,8623627522,138498,8623627522,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600328962,163074,2207646907650,163074,8623652098,163074,8623652098,163074,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,144680345676160258,138498,2207646883074,138498,8623627522,138498,8623627522,138498,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33701122,146690,33701122,146690,33701122,146690,33701122,146690,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33750274,195842,33750274,195842,33750274,195842,33750274,195842,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600304386,138498,2207646883074,138498,8623627522,138498,8623627522,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,144680345676168450,146690,2207646891266,146690,8623635714,146690,8623635714,146690,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33717506,163074,33717506,163074,33717506,163074,33717506,163074,33686786,132354,33686786,132354,33686786,132354,33686786,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600312578,146690,2207646891266,146690,8623635714,146690,8623635714,146690,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,144680345676160258,138498,2207646883074,138498,8623627522,138498,8623627522,138498,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600361730,195842,2207646940418,195842,8623684866,195842,8623684866,195842,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33701122,146690,33701122,146690,33701122,146690,33701122,146690,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600304386,138498,2207646883074,138498,8623627522,138498,8623627522,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676184834,163074,2207646907650,163074,8623652098,163074,8623652098,163074,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600304386,138498,2207646883074,138498,8623627522,138498,8623627522,138498,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33701122,146690,33701122,146690,33701122,146690,33701122,146690,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33750274,195842,33750274,195842,33750274,195842,33750274,195842,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676160258,138498,2207646883074,138498,8623627522,138498,8623627522,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600312578,146690,2207646891266,146690,8623635714,146690,8623635714,146690,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676156162,134402,2207646878978,134402,8623623426,134402,8623623426,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33717506,163074,33717506,163074,33717506,163074,33717506,163074,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600300290,134402,2207646878978,134402,8623623426,134402,8623623426,134402,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33692930,138498,33692930,138498,33692930,138498,33692930,138498,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,565157600298242,132354,2207646876930,132354,8623621378,132354,8623621378,132354,144680345676168450,146690,2207646891266,146690,8623635714,146690,8623635714,146690,33686786,132354,33686786,132354,33686786,132354,33686786,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,565157600304386,138498,2207646883074,138498,8623627522,138498,8623627522,138498,144680345676154114,132354,2207646876930,132354,8623621378,132354,8623621378,132354,33688834,134402,33688834,134402,33688834,134402,33688834,134402,33686786,132354,33686786,132354,33686786,132354,33686786,132354,0],[289360691352369924,268804,17247304452,326404,1130315200658180,326404,17247304452,326404,4415293753860,326404,17247242756,264708,4415293753860,264708,17247242756,264708,67402500,264708,67402500,293636,67402500,293636,67402500,293636,67373572,293636,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,289360691352369668,264964,17247304196,326148,1130315200657924,326148,17247304196,326148,67373828,326148,67373828,264964,67373828,264964,67373828,264964,67402244,264964,67402244,293380,67402244,293380,67402244,293380,4415293758212,293380,17247247108,269060,4415293758212,269060,17247247108,269060,289360691352308228,269060,17247242756,264708,1130315200596484,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,4415293757956,264964,17247246852,268804,4415293757956,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,4415293766404,268804,17247255300,277252,4415293766404,277252,17247255300,277252,289360691352308228,277252,17247242756,264708,1130315200596484,264708,17247242756,264708,67386116,264708,67386116,277252,67386116,277252,67386116,277252,67373572,277252,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,4415293766148,264964,17247255044,276996,4415293766148,276996,17247255044,276996,67373828,276996,67373828,264964,67373828,264964,67373828,264964,67385860,264964,67385860,276996,67385860,276996,67385860,276996,289360691352312580,276996,17247247108,269060,1130315200600836,269060,17247247108,269060,289360691352308228,269060,17247242756,264708,1130315200596484,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,289360691352312324,264964,17247246852,268804,1130315200600580,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,289360691352337156,268804,17247271684,293636,1130315200625412,293636,17247271684,293636,4415293753860,293636,17247242756,264708,4415293753860,264708,17247242756,264708,67435268,264708,67435268,326404,67435268,326404,67435268,326404,67373572,326404,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,289360691352336900,264964,17247271428,293380,1130315200625156,293380,17247271428,293380,67373828,293380,67373828,264964,67373828,264964,67373828,264964,67435012,264964,67435012,326148,67435012,326148,67435012,326148,289360691352312580,326148,17247247108,269060,1130315200600836,269060,17247247108,269060,4415293753860,269060,17247242756,264708,4415293753860,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,289360691352312324,264964,17247246852,268804,1130315200600580,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,4415293766404,268804,17247255300,277252,4415293766404,277252,17247255300,277252,289360691352308228,277252,17247242756,264708,1130315200596484,264708,17247242756,264708,67386116,264708,67386116,277252,67386116,277252,67386116,277252,67373572,277252,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,4415293766148,264964,17247255044,276996,4415293766148,276996,17247255044,276996,67373828,276996,67373828,264964,67373828,264964,67373828,264964,67385860,264964,67385860,276996,67385860,276996,67385860,276996,4415293758212,276996,17247247108,269060,4415293758212,269060,17247247108,269060,289360691352308228,269060,17247242756,264708,1130315200596484,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,4415293757956,264964,17247246852,268804,4415293757956,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,4415293815556,268804,17247304452,326404,4415293815556,326404,17247304452,326404,289360691352308228,326404,17247242756,264708,1130315200596484,264708,17247242756,264708,67402500,264708,67402500,293636,67402500,293636,67402500,293636,67373572,293636,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,4415293815300,264964,17247304196,326148,4415293815300,326148,17247304196,326148,67373828,326148,67373828,264964,67373828,264964,67373828,264964,67402244,264964,67402244,293380,67402244,293380,67402244,293380,289360691352312580,293380,17247247108,269060,1130315200600836,269060,17247247108,269060,4415293753860,269060,17247242756,264708,4415293753860,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,289360691352312324,264964,17247246852,268804,1130315200600580,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,289360691352320772,268804,17247255300,277252,1130315200609028,277252,17247255300,277252,4415293753860,277252,17247242756,264708,4415293753860,264708,17247242756,264708,67386116,264708,67386116,277252,67386116,277252,67386116,277252,67373572,277252,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,289360691352320516,264964,17247255044,276996,1130315200608772,276996,17247255044,276996,67373828,276996,67373828,264964,67373828,264964,67373828,264964,67385860,264964,67385860,276996,67385860,276996,67385860,276996,4415293758212,276996,17247247108,269060,4415293758212,269060,17247247108,269060,4415293753860,269060,17247242756,264708,4415293753860,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,4415293757956,264964,17247246852,268804,4415293757956,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,4415293782788,268804,17247271684,293636,4415293782788,293636,17247271684,293636,289360691352308228,293636,17247242756,264708,1130315200596484,264708,17247242756,264708,67435268,264708,67435268,326404,67435268,326404,67435268,326404,67373572,326404,67373572,264708,67373572,264708,67373572,264708,289360691352308484,264708,17247243012,264964,1130315200596740,264964,17247243012,264964,4415293782532,264964,17247271428,293380,4415293782532,293380,17247271428,293380,67373828,293380,67373828,264964,67373828,264964,67373828,264964,67435012,264964,67435012,326148,67435012,326148,67435012,326148,4415293758212,326148,17247247108,269060,4415293758212,269060,17247247108,269060,289360691352308228,269060,17247242756,264708,1130315200596484,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,4415293757956,264964,17247246852,268804,4415293757956,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,289360691352320772,268804,17247255300,277252,1130315200609028,277252,17247255300,277252,4415293753860,277252,17247242756,264708,4415293753860,264708,17247242756,264708,67386116,264708,67386116,277252,67386116,277252,67386116,277252,67373572,277252,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,289360691352320516,264964,17247255044,276996,1130315200608772,276996,17247255044,276996,67373828,276996,67373828,264964,67373828,264964,67373828,264964,67385860,264964,67385860,276996,67385860,276996,67385860,276996,289360691352312580,276996,17247247108,269060,1130315200600836,269060,17247247108,269060,4415293753860,269060,17247242756,264708,4415293753860,264708,17247242756,264708,67377924,264708,67377924,269060,67377924,269060,67377924,269060,67373572,269060,67373572,264708,67373572,264708,67373572,264708,4415293754116,264708,17247243012,264964,4415293754116,264964,17247243012,264964,289360691352312324,264964,17247246852,268804,1130315200600580,268804,17247246852,268804,67373828,268804,67373828,264964,67373828,264964,67373828,264964,67377668,264964,67377668,268804,67377668,268804,67377668,268804,0],[578721382704674568,34494543624,587528,587528,578721382704616968,34494486024,529928,529928,8830587515912,34494493704,537608,537608,134747144,134747144,529416,529416,2260630401251080,34494543624,587528,587528,2260630401193480,34494486024,529928,529928,8830587515912,34494493704,537608,537608,134747144,134747144,529416,529416,134747912,134747912,530184,530184,578721382704674312,34494543368,587272,587272,578721382704616456,34494485512,529416,529416,8830587515912,34494493704,537608,537608,134747912,134747912,530184,530184,2260630401250824,34494543368,587272,587272,2260630401192968,34494485512,529416,529416,8830587515912,34494493704,537608,537608,134756104,134756104,538376,538376,134747656,134747656,529928,529928,578721382704673800,34494542856,586760,586760,578721382704616456,34494485512,529416,529416,134756104,134756104,538376,538376,134747656,134747656,529928,529928,2260630401250312,34494542856,586760,586760,2260630401192968,34494485512,529416,529416,8830587508488,34494486280,530184,530184,134755848,134755848,538120,538120,134747144,134747144,529416,529416,578721382704673800,34494542856,586760,586760,8830587508488,34494486280,530184,530184,134755848,134755848,538120,538120,134747144,134747144,529416,529416,2260630401250312,34494542856,586760,586760,578721382704641800,34494510856,554760,554760,8830587508232,34494486024,529928,529928,134755336,134755336,537608,537608,134747144,134747144,529416,529416,2260630401218312,34494510856,554760,554760,8830587508232,34494486024,529928,529928,134755336,134755336,537608,537608,134747144,134747144,529416,529416,134747912,134747912,530184,530184,578721382704641544,34494510600,554504,554504,8830587507720,34494485512,529416,529416,134755336,134755336,537608,537608,134747912,134747912,530184,530184,2260630401218056,34494510600,554504,554504,8830587507720,34494485512,529416,529416,134755336,134755336,537608,537608,134756104,134756104,538376,538376,134747656,134747656,529928,529928,578721382704641032,34494510088,553992,553992,8830587507720,34494485512,529416,529416,134756104,134756104,538376,538376,134747656,134747656,529928,529928,2260630401217544,34494510088,553992,553992,8830587507720,34494485512,529416,529416,8830587508488,34494486280,530184,530184,134755848,134755848,538120,538120,134747144,134747144,529416,529416,578721382704641032,34494510088,553992,553992,8830587508488,34494486280,530184,530184,134755848,134755848,538120,538120,134747144,134747144,529416,529416,2260630401217544,34494510088,553992,553992,8830587565832,34494543624,587528,587528,8830587508232,34494486024,529928,529928,134755336,134755336,537608,537608,134747144,134747144,529416,529416,8830587565832,34494543624,587528,587528,8830587508232,34494486024,529928,529928,134755336,134755336,537608,537608,134747144,134747144,529416,529416,578721382704617224,34494486280,530184,530184,8830587565576,34494543368,587272,587272,8830587507720,34494485512,529416,529416,134755336,134755336,537608,537608,2260630401193736,34494486280,530184,530184,8830587565576,34494543368,587272,587272,8830587507720,34494485512,529416,529416,134755336,134755336,537608,537608,134756104,134756104,538376,538376,578721382704616968,34494486024,529928,529928,8830587565064,34494542856,586760,586760,8830587507720,34494485512,529416,529416,134756104,134756104,538376,538376,2260630401193480,34494486024,529928,529928,8830587565064,34494542856,586760,586760,8830587507720,34494485512,529416,529416,134747912,134747912,530184,530184,134755848,134755848,538120,538120,578721382704616456,34494485512,529416,529416,8830587565064,34494542856,586760,586760,134747912,134747912,530184,530184,134755848,134755848,538120,538120,2260630401192968,34494485512,529416,529416,8830587565064,34494542856,586760,586760,8830587533064,34494510856,554760,554760,134747656,134747656,529928,529928,134755336,134755336,537608,537608,578721382704616456,34494485512,529416,529416,8830587533064,34494510856,554760,554760,134747656,134747656,529928,529928,134755336,134755336,537608,537608,2260630401192968,34494485512,529416,529416,578721382704617224,34494486280,530184,530184,8830587532808,34494510600,554504,554504,134747144,134747144,529416,529416,134755336,134755336,537608,537608,2260630401193736,34494486280,530184,530184,8830587532808,34494510600,554504,554504,134747144,134747144,529416,529416,134755336,134755336,537608,537608,134756104,134756104,538376,538376,578721382704616968,34494486024,529928,529928,8830587532296,34494510088,553992,553992,134747144,134747144,529416,529416,134756104,134756104,538376,538376,2260630401193480,34494486024,529928,529928,8830587532296,34494510088,553992,553992,134747144,134747144,529416,529416,134747912,134747912,530184,530184,134755848,134755848,538120,538120,578721382704616456,34494485512,529416,529416,8830587532296,34494510088,553992,553992,134747912,134747912,530184,530184,134755848,134755848,538120,538120,2260630401192968,34494485512,529416,529416,8830587532296,34494510088,553992,553992,134805256,134805256,587528,587528,134747656,134747656,529928,529928,134755336,134755336,537608,537608,578721382704616456,34494485512,529416,529416,134805256,134805256,587528,587528,134747656,134747656,529928,529928,134755336,134755336,537608,537608,2260630401192968,34494485512,529416,529416,8830587508488,34494486280,530184,530184,134805000,134805000,587272,587272,134747144,134747144,529416,529416,134755336,134755336,537608,537608,8830587508488,34494486280,530184,530184,134805000,134805000,587272,587272,134747144,134747144,529416,529416,134755336,134755336,537608,537608,578721382704625416,34494494472,538376,538376,8830587508232,34494486024,529928,529928,134804488,134804488,586760,586760,134747144,134747144,529416,529416,2260630401201928,34494494472,538376,538376,8830587508232,34494486024,529928,529928,134804488,134804488,586760,586760,134747144,134747144,529416,529416,134747912,134747912,530184,530184,578721382704625160,34494494216,538120,538120,8830587507720,34494485512,529416,529416,134804488,134804488,586760,586760,134747912,134747912,530184,530184,2260630401201672,34494494216,538120,538120,8830587507720,34494485512,529416,529416,134804488,134804488,586760,586760,134772488,134772488,554760,554760,134747656,134747656,529928,529928,578721382704624648,34494493704,537608,537608,8830587507720,34494485512,529416,529416,134772488,134772488,554760,554760,134747656,134747656,529928,529928,2260630401201160,34494493704,537608,537608,8830587507720,34494485512,529416,529416,8830587508488,34494486280,530184,530184,134772232,134772232,554504,554504,134747144,134747144,529416,529416,578721382704624648,34494493704,537608,537608,8830587508488,34494486280,530184,530184,134772232,134772232,554504,554504,134747144,134747144,529416,529416,2260630401201160,34494493704,537608,537608,578721382704625416,34494494472,538376,538376,8830587508232,34494486024,529928,529928,134771720,134771720,553992,553992,134747144,134747144,529416,529416,2260630401201928,34494494472,538376,538376,8830587508232,34494486024,529928,529928,134771720,134771720,553992,553992,134747144,134747144,529416,529416,134747912,134747912,530184,530184,578721382704625160,34494494216,538120,538120,8830587507720,34494485512,529416,529416,134771720,134771720,553992,553992,134747912,134747912,530184,530184,2260630401201672,34494494216,538120,538120,8830587507720,34494485512,529416,529416,134771720,134771720,553992,553992,134805256,134805256,587528,587528,134747656,134747656,529928,529928,578721382704624648,34494493704,537608,537608,8830587507720,34494485512,529416,529416,134805256,134805256,587528,587528,134747656,134747656,529928,529928,2260630401201160,34494493704,537608,537608,8830587507720,34494485512,529416,529416,134747912,134747912,530184,530184,134805000,134805000,587272,587272,134747144,134747144,529416,529416,578721382704624648,34494493704,537608,537608,134747912,134747912,530184,530184,134805000,134805000,587272,587272,134747144,134747144,529416,529416,2260630401201160,34494493704,537608,537608,8830587516680,34494494472,538376,538376,134747656,134747656,529928,529928,134804488,134804488,586760,586760,134747144,134747144,529416,529416,8830587516680,34494494472,538376,538376,134747656,134747656,529928,529928,134804488,134804488,586760,586760,134747144,134747144,529416,529416,578721382704617224,34494486280,530184,530184,8830587516424,34494494216,538120,538120,134747144,134747144,529416,529416,134804488,134804488,586760,586760,2260630401193736,34494486280,530184,530184,8830587516424,34494494216,538120,538120,134747144,134747144,529416,529416,134804488,134804488,586760,586760,134772488,134772488,554760,554760,578721382704616968,34494486024,529928,529928,8830587515912,34494493704,537608,537608,134747144,134747144,529416,529416,134772488,134772488,554760,554760,2260630401193480,34494486024,529928,529928,8830587515912,34494493704,537608,537608,134747144,134747144,529416,529416,134747912,134747912,530184,530184,134772232,134772232,554504,554504,578721382704616456,34494485512,529416,529416,8830587515912,34494493704,537608,537608,134747912,134747912,530184,530184,134772232,134772232,554504,554504,2260630401192968,34494485512,529416,529416,8830587515912,34494493704,537608,537608,8830587516680,34494494472,538376,538376,134747656,134747656,529928,529928,134771720,134771720,553992,553992,578721382704616456,34494485512,529416,529416,8830587516680,34494494472,538376,538376,134747656,134747656,529928,529928,134771720,134771720,553992,553992,2260630401192968,34494485512,529416,529416,578721382704617224,34494486280,530184,530184,8830587516424,34494494216,538120,538120,134747144,134747144,529416,529416,134771720,134771720,553992,553992,2260630401193736,34494486280,530184,530184,8830587516424,34494494216,538120,538120,134747144,134747144,529416,529416,134771720,134771720,553992,553992,0],[1157442765409283856,1109776,17661175066384,1109776,269544464,1109008,269544464,1109008,1157442765409232912,1058832,17661175015440,1058832,269495824,1060368,269495824,1060368,68988971024,1058832,68988971024,1058832,4521260802435088,1107984,17661175064592,1107984,4521260802403344,1076240,17661175032848,1076240,269510672,1075216,269510672,1075216,68989021968,1109776,68989021968,1109776,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,269495824,1060368,269495824,1060368,269543440,1107984,269543440,1107984,68989020176,1107984,68989020176,1107984,68988988432,1076240,68988988432,1076240,4521260802385936,1058832,17661175015440,1058832,4521260802387728,1060624,17661175017232,1060624,269495312,1059856,269495312,1059856,269510672,1075216,269510672,1075216,1157442765409283600,1109520,17661175066128,1109520,269543440,1107984,269543440,1107984,1157442765409232912,1058832,17661175015440,1058832,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,68988972816,1060624,68988972816,1060624,4521260802403344,1076240,17661175032848,1076240,269510672,1075216,269510672,1075216,68989021712,1109520,68989021712,1109520,269494288,1058832,269494288,1058832,68988971024,1058832,68988971024,1058832,269495312,1059856,269495312,1059856,269543440,1107984,269543440,1107984,269512464,1077008,269512464,1077008,68988988432,1076240,68988988432,1076240,4521260802385936,1058832,17661175015440,1058832,4521260802387472,1060368,17661175016976,1060368,269494288,1058832,269494288,1058832,269510672,1075216,269510672,1075216,1157442765409283088,1109008,17661175065616,1109008,269543440,1107984,269543440,1107984,269512464,1077008,269512464,1077008,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,68988972560,1060368,68988972560,1060368,4521260802402320,1075216,17661175031824,1075216,269510672,1075216,269510672,1075216,68989021200,1109008,68989021200,1109008,269494288,1058832,269494288,1058832,1157442765409234704,1060624,17661175017232,1060624,269495312,1059856,269495312,1059856,269543440,1107984,269543440,1107984,269512208,1076752,269512208,1076752,68988987408,1075216,68988987408,1075216,4521260802385936,1058832,17661175015440,1058832,4521260802386960,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,68988972816,1060624,68988972816,1060624,1157442765409283088,1109008,17661175065616,1109008,269543440,1107984,269543440,1107984,269512208,1076752,269512208,1076752,269494288,1058832,269494288,1058832,68988971024,1058832,68988971024,1058832,68988972048,1059856,68988972048,1059856,4521260802402320,1075216,17661175031824,1075216,269545232,1109776,269545232,1109776,68989021200,1109008,68989021200,1109008,269494288,1058832,269494288,1058832,1157442765409234448,1060368,17661175016976,1060368,269494288,1058832,269494288,1058832,269543440,1107984,269543440,1107984,269511696,1076240,269511696,1076240,68988987408,1075216,68988987408,1075216,269545232,1109776,269545232,1109776,4521260802386960,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,68988972560,1060368,68988972560,1060368,1157442765409282064,1107984,17661175064592,1107984,269543440,1107984,269543440,1107984,269511696,1076240,269511696,1076240,269494288,1058832,269494288,1058832,269496080,1060624,269496080,1060624,68988972048,1059856,68988972048,1059856,4521260802402320,1075216,17661175031824,1075216,269544976,1109520,269544976,1109520,68989020176,1107984,68989020176,1107984,269494288,1058832,269494288,1058832,1157442765409233936,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,269496080,1060624,269496080,1060624,269511696,1076240,269511696,1076240,68988987408,1075216,68988987408,1075216,269544976,1109520,269544976,1109520,4521260802385936,1058832,17661175015440,1058832,269494288,1058832,269494288,1058832,68988972048,1059856,68988972048,1059856,1157442765409282064,1107984,17661175064592,1107984,1157442765409251088,1077008,17661175033616,1077008,269511696,1076240,269511696,1076240,269494288,1058832,269494288,1058832,269495824,1060368,269495824,1060368,68988971024,1058832,68988971024,1058832,4521260802402320,1075216,17661175031824,1075216,269544464,1109008,269544464,1109008,68989020176,1107984,68989020176,1107984,68988989200,1077008,68988989200,1077008,1157442765409233936,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,269495824,1060368,269495824,1060368,269510672,1075216,269510672,1075216,68988987408,1075216,68988987408,1075216,269544464,1109008,269544464,1109008,4521260802385936,1058832,17661175015440,1058832,269496080,1060624,269496080,1060624,68988972048,1059856,68988972048,1059856,1157442765409282064,1107984,17661175064592,1107984,1157442765409250832,1076752,17661175033360,1076752,269510672,1075216,269510672,1075216,269494288,1058832,269494288,1058832,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,269496080,1060624,269496080,1060624,269544464,1109008,269544464,1109008,68989020176,1107984,68989020176,1107984,68988988944,1076752,68988988944,1076752,1157442765409232912,1058832,17661175015440,1058832,269494288,1058832,269494288,1058832,269495312,1059856,269495312,1059856,269510672,1075216,269510672,1075216,4521260802436880,1109776,17661175066384,1109776,269544464,1109008,269544464,1109008,4521260802385936,1058832,17661175015440,1058832,269495824,1060368,269495824,1060368,68988971024,1058832,68988971024,1058832,1157442765409282064,1107984,17661175064592,1107984,1157442765409250320,1076240,17661175032848,1076240,269510672,1075216,269510672,1075216,68989021968,1109776,68989021968,1109776,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,269495824,1060368,269495824,1060368,269543440,1107984,269543440,1107984,68989020176,1107984,68989020176,1107984,68988988432,1076240,68988988432,1076240,1157442765409232912,1058832,17661175015440,1058832,1157442765409234704,1060624,17661175017232,1060624,269495312,1059856,269495312,1059856,269510672,1075216,269510672,1075216,4521260802436624,1109520,17661175066128,1109520,269543440,1107984,269543440,1107984,4521260802385936,1058832,17661175015440,1058832,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,68988972816,1060624,68988972816,1060624,1157442765409250320,1076240,17661175032848,1076240,269510672,1075216,269510672,1075216,68989021712,1109520,68989021712,1109520,269494288,1058832,269494288,1058832,68988971024,1058832,68988971024,1058832,269495312,1059856,269495312,1059856,269543440,1107984,269543440,1107984,269512464,1077008,269512464,1077008,68988988432,1076240,68988988432,1076240,1157442765409232912,1058832,17661175015440,1058832,1157442765409234448,1060368,17661175016976,1060368,269494288,1058832,269494288,1058832,269510672,1075216,269510672,1075216,4521260802436112,1109008,17661175065616,1109008,269543440,1107984,269543440,1107984,269512464,1077008,269512464,1077008,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,68988972560,1060368,68988972560,1060368,1157442765409249296,1075216,17661175031824,1075216,269510672,1075216,269510672,1075216,68989021200,1109008,68989021200,1109008,269494288,1058832,269494288,1058832,4521260802387728,1060624,17661175017232,1060624,269495312,1059856,269495312,1059856,269543440,1107984,269543440,1107984,269512208,1076752,269512208,1076752,68988987408,1075216,68988987408,1075216,1157442765409232912,1058832,17661175015440,1058832,1157442765409233936,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,68988972816,1060624,68988972816,1060624,4521260802436112,1109008,17661175065616,1109008,269543440,1107984,269543440,1107984,269512208,1076752,269512208,1076752,269494288,1058832,269494288,1058832,68988971024,1058832,68988971024,1058832,68988972048,1059856,68988972048,1059856,1157442765409249296,1075216,17661175031824,1075216,269545232,1109776,269545232,1109776,68989021200,1109008,68989021200,1109008,269494288,1058832,269494288,1058832,4521260802387472,1060368,17661175016976,1060368,269494288,1058832,269494288,1058832,269543440,1107984,269543440,1107984,269511696,1076240,269511696,1076240,68988987408,1075216,68988987408,1075216,269545232,1109776,269545232,1109776,1157442765409233936,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,68988972560,1060368,68988972560,1060368,4521260802435088,1107984,17661175064592,1107984,269543440,1107984,269543440,1107984,269511696,1076240,269511696,1076240,269494288,1058832,269494288,1058832,269496080,1060624,269496080,1060624,68988972048,1059856,68988972048,1059856,1157442765409249296,1075216,17661175031824,1075216,269544976,1109520,269544976,1109520,68989020176,1107984,68989020176,1107984,269494288,1058832,269494288,1058832,4521260802386960,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,269496080,1060624,269496080,1060624,269511696,1076240,269511696,1076240,68988987408,1075216,68988987408,1075216,269544976,1109520,269544976,1109520,1157442765409232912,1058832,17661175015440,1058832,269494288,1058832,269494288,1058832,68988972048,1059856,68988972048,1059856,4521260802435088,1107984,17661175064592,1107984,4521260802404112,1077008,17661175033616,1077008,269511696,1076240,269511696,1076240,269494288,1058832,269494288,1058832,269495824,1060368,269495824,1060368,68988971024,1058832,68988971024,1058832,1157442765409249296,1075216,17661175031824,1075216,269544464,1109008,269544464,1109008,68989020176,1107984,68989020176,1107984,68988989200,1077008,68988989200,1077008,4521260802386960,1059856,17661175016464,1059856,269494288,1058832,269494288,1058832,269495824,1060368,269495824,1060368,269510672,1075216,269510672,1075216,68988987408,1075216,68988987408,1075216,269544464,1109008,269544464,1109008,1157442765409232912,1058832,17661175015440,1058832,269496080,1060624,269496080,1060624,68988972048,1059856,68988972048,1059856,4521260802435088,1107984,17661175064592,1107984,4521260802403856,1076752,17661175033360,1076752,269510672,1075216,269510672,1075216,269494288,1058832,269494288,1058832,269495312,1059856,269495312,1059856,68988971024,1058832,68988971024,1058832,269496080,1060624,269496080,1060624,269544464,1109008,269544464,1109008,68989020176,1107984,68989020176,1107984,68988988944,1076752,68988988944,1076752,4521260802385936,1058832,17661175015440,1058832,269494288,1058832,269494288,1058832,269495312,1059856,269495312,1059856,269510672,1075216,269510672,1075216,0],[2314885530818502432,2150432,2117664,539021344,539025184,2150432,137977978656,2150432,2154272,35322350063648,539025184,2150432,2154272,539021344,2154272,137977974816,2314885530818502176,2150432,2154272,539021344,539024928,2150432,137977978400,2150432,2154016,35322350063648,539024928,2150432,2154016,539021344,2154016,137977974816,2314885530818501664,2150432,2154016,539021344,539024416,2150432,137977977888,2150432,2153504,35322350034720,539024416,2150432,2153504,538992416,2153504,137977945888,2314885530818501664,2121504,2153504,538992416,539024416,2121504,137977977888,2121504,2153504,35322350034464,539024416,2121504,2153504,538992160,2153504,137977945632,2314885530818500640,2121248,2153504,538992160,539023392,2121248,137977976864,2121248,2152480,35322350033952,539023392,2121248,2152480,538991648,2152480,137977945120,2314885530818500640,2120736,2152480,538991648,539023392,2120736,137977976864,2120736,2152480,35322350033952,539023392,2120736,2152480,538991648,2152480,137977945120,2314885530818500640,2120736,2152480,538991648,539023392,2120736,137977976864,2120736,2152480,35322350032928,539023392,2120736,2152480,538990624,2152480,137977944096,2314885530818500640,2119712,2152480,538990624,539023392,2119712,137977976864,2119712,2152480,35322350032928,539023392,2119712,2152480,538990624,2152480,137977944096,2314885530818498592,2119712,2152480,538990624,539021344,2119712,137977974816,2119712,2150432,35322350032928,539021344,2119712,2150432,538990624,2150432,137977944096,2314885530818498592,2119712,2150432,538990624,539021344,2119712,137977974816,2119712,2150432,35322350032928,539021344,2119712,2150432,538990624,2150432,137977944096,2314885530818498592,2119712,2150432,538990624,539021344,2119712,137977974816,2119712,2150432,35322350030880,539021344,2119712,2150432,538988576,2150432,137977942048,2314885530818498592,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,2314885530818498592,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,2314885530818498592,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,2314885530818498592,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,2314885530818498592,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,9042521604808480,2117664,2150432,538988576,539025184,2117664,137977978656,2117664,2154272,35322350030880,539025184,2117664,2154272,538988576,2154272,137977942048,9042521604808224,2117664,2154272,538988576,539024928,2117664,137977978400,2117664,2154016,35322350030880,539024928,2117664,2154016,538988576,2154016,137977942048,9042521604807712,2117664,2154016,538988576,539024416,2117664,137977977888,2117664,2153504,35322350034720,539024416,2117664,2153504,538992416,2153504,137977945888,9042521604807712,2121504,2153504,538992416,539024416,2121504,137977977888,2121504,2153504,35322350034464,539024416,2121504,2153504,538992160,2153504,137977945632,9042521604806688,2121248,2153504,538992160,539023392,2121248,137977976864,2121248,2152480,35322350033952,539023392,2121248,2152480,538991648,2152480,137977945120,9042521604806688,2120736,2152480,538991648,539023392,2120736,137977976864,2120736,2152480,35322350033952,539023392,2120736,2152480,538991648,2152480,137977945120,9042521604806688,2120736,2152480,538991648,539023392,2120736,137977976864,2120736,2152480,35322350032928,539023392,2120736,2152480,538990624,2152480,137977944096,9042521604806688,2119712,2152480,538990624,539023392,2119712,137977976864,2119712,2152480,35322350032928,539023392,2119712,2152480,538990624,2152480,137977944096,9042521604804640,2119712,2152480,538990624,539021344,2119712,137977974816,2119712,2150432,35322350032928,539021344,2119712,2150432,538990624,2150432,137977944096,9042521604804640,2119712,2150432,538990624,539021344,2119712,137977974816,2119712,2150432,35322350032928,539021344,2119712,2150432,538990624,2150432,137977944096,9042521604804640,2119712,2150432,538990624,539021344,2119712,137977974816,2119712,2150432,35322350030880,539021344,2119712,2150432,538988576,2150432,137977942048,9042521604804640,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,9042521604804640,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,9042521604804640,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,9042521604804640,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,9042521604804640,2117664,2150432,538988576,539021344,2117664,137977974816,2117664,2150432,35322350030880,539021344,2117664,2150432,538988576,2150432,137977942048,2314885530818469664,2117664,2150432,538988576,538992416,2117664,137977945888,2117664,2121504,35322350030880,538992416,2117664,2121504,538988576,2121504,137977942048,2314885530818469408,2117664,2121504,538988576,538992160,2117664,137977945632,2117664,2121248,35322350030880,538992160,2117664,2121248,538988576,2121248,137977942048,2314885530818468896,2117664,2121248,538988576,538991648,2117664,137977945120,2117664,2120736,35322350067488,538991648,2117664,2120736,539025184,2120736,137977978656,2314885530818468896,2154272,2120736,539025184,538991648,2154272,137977945120,2154272,2120736,35322350067232,538991648,2154272,2120736,539024928,2120736,137977978400,2314885530818467872,2154016,2120736,539024928,538990624,2154016,137977944096,2154016,2119712,35322350066720,538990624,2154016,2119712,539024416,2119712,137977977888,2314885530818467872,2153504,2119712,539024416,538990624,2153504,137977944096,2153504,2119712,35322350066720,538990624,2153504,2119712,539024416,2119712,137977977888,2314885530818467872,2153504,2119712,539024416,538990624,2153504,137977944096,2153504,2119712,35322350065696,538990624,2153504,2119712,539023392,2119712,137977976864,2314885530818467872,2152480,2119712,539023392,538990624,2152480,137977944096,2152480,2119712,35322350065696,538990624,2152480,2119712,539023392,2119712,137977976864,2314885530818465824,2152480,2119712,539023392,538988576,2152480,137977942048,2152480,2117664,35322350065696,538988576,2152480,2117664,539023392,2117664,137977976864,2314885530818465824,2152480,2117664,539023392,538988576,2152480,137977942048,2152480,2117664,35322350065696,538988576,2152480,2117664,539023392,2117664,137977976864,2314885530818465824,2152480,2117664,539023392,538988576,2152480,137977942048,2152480,2117664,35322350063648,538988576,2152480,2117664,539021344,2117664,137977974816,2314885530818465824,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,2314885530818465824,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,2314885530818465824,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,2314885530818465824,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,2314885530818465824,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,9042521604775712,2150432,2117664,539021344,538992416,2150432,137977945888,2150432,2121504,35322350063648,538992416,2150432,2121504,539021344,2121504,137977974816,9042521604775456,2150432,2121504,539021344,538992160,2150432,137977945632,2150432,2121248,35322350063648,538992160,2150432,2121248,539021344,2121248,137977974816,9042521604774944,2150432,2121248,539021344,538991648,2150432,137977945120,2150432,2120736,35322350067488,538991648,2150432,2120736,539025184,2120736,137977978656,9042521604774944,2154272,2120736,539025184,538991648,2154272,137977945120,2154272,2120736,35322350067232,538991648,2154272,2120736,539024928,2120736,137977978400,9042521604773920,2154016,2120736,539024928,538990624,2154016,137977944096,2154016,2119712,35322350066720,538990624,2154016,2119712,539024416,2119712,137977977888,9042521604773920,2153504,2119712,539024416,538990624,2153504,137977944096,2153504,2119712,35322350066720,538990624,2153504,2119712,539024416,2119712,137977977888,9042521604773920,2153504,2119712,539024416,538990624,2153504,137977944096,2153504,2119712,35322350065696,538990624,2153504,2119712,539023392,2119712,137977976864,9042521604773920,2152480,2119712,539023392,538990624,2152480,137977944096,2152480,2119712,35322350065696,538990624,2152480,2119712,539023392,2119712,137977976864,9042521604771872,2152480,2119712,539023392,538988576,2152480,137977942048,2152480,2117664,35322350065696,538988576,2152480,2117664,539023392,2117664,137977976864,9042521604771872,2152480,2117664,539023392,538988576,2152480,137977942048,2152480,2117664,35322350065696,538988576,2152480,2117664,539023392,2117664,137977976864,9042521604771872,2152480,2117664,539023392,538988576,2152480,137977942048,2152480,2117664,35322350063648,538988576,2152480,2117664,539021344,2117664,137977974816,9042521604771872,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,9042521604771872,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,9042521604771872,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,9042521604771872,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,9042521604771872,2150432,2117664,539021344,538988576,2150432,137977942048,2150432,2117664,35322350063648,538988576,2150432,2117664,539021344,2117664,137977974816,0],[4629771061636939584,4235328,4235328,18085043209551680,1077977152,4235328,4235328,1077977152,70644700069696,4235328,4235328,70644700069696,1077977152,4235328,4235328,1077977152,4629771061636939328,4235328,4235328,18085043209551424,1077977152,4235328,4235328,1077977152,70644700069440,4235328,4235328,70644700069440,1077977152,4235328,4235328,1077977152,4629771061636938816,4235328,4235328,18085043209550912,1077977152,4235328,4235328,1077977152,70644700068928,4235328,4235328,70644700068928,1077977152,4235328,4235328,1077977152,4629771061636938816,4235328,4235328,18085043209550912,1077977152,4235328,4235328,1077977152,70644700068928,4235328,4235328,70644700068928,1077977152,4235328,4235328,1077977152,4629771061636937792,4235328,4243264,18085043209549888,1077977152,4243264,4235328,1077977152,70644700067904,4235328,4243264,70644700067904,1077977152,4243264,4235328,1077977152,4629771061636937792,4235328,4243008,18085043209549888,1077977152,4243008,4235328,1077977152,70644700067904,4235328,4243008,70644700067904,1077977152,4243008,4235328,1077977152,4629771061636937792,4235328,4242496,18085043209549888,1077977152,4242496,4235328,1077977152,70644700067904,4235328,4242496,70644700067904,1077977152,4242496,4235328,1077977152,4629771061636937792,4235328,4242496,18085043209549888,1077977152,4242496,4235328,1077977152,70644700067904,4235328,4242496,70644700067904,1077977152,4242496,4235328,1077977152,4629771061636935744,4235328,4241472,18085043209547840,275955892032,4241472,4235328,275955892032,70644700065856,4235328,4241472,70644700065856,275955892032,4241472,4235328,275955892032,4629771061636935744,4235328,4241472,18085043209547840,275955891776,4241472,4235328,275955891776,70644700065856,4235328,4241472,70644700065856,275955891776,4241472,4235328,275955891776,4629771061636935744,4235328,4241472,18085043209547840,275955891264,4241472,4235328,275955891264,70644700065856,4235328,4241472,70644700065856,275955891264,4241472,4235328,275955891264,4629771061636935744,4235328,4241472,18085043209547840,275955891264,4241472,4235328,275955891264,70644700065856,4235328,4241472,70644700065856,275955891264,4241472,4235328,275955891264,4629771061636935744,4235328,4239424,18085043209547840,275955890240,4239424,4243264,275955890240,70644700065856,4243264,4239424,70644700065856,275955890240,4239424,4243264,275955890240,4629771061636935744,4243264,4239424,18085043209547840,275955890240,4239424,4243008,275955890240,70644700065856,4243008,4239424,70644700065856,275955890240,4239424,4243008,275955890240,4629771061636935744,4243008,4239424,18085043209547840,275955890240,4239424,4242496,275955890240,70644700065856,4242496,4239424,70644700065856,275955890240,4239424,4242496,275955890240,4629771061636935744,4242496,4239424,18085043209547840,275955890240,4239424,4242496,275955890240,70644700065856,4242496,4239424,70644700065856,275955890240,4239424,4242496,275955890240,4629771061636931648,4242496,4239424,18085043209543744,275955888192,4239424,4241472,275955888192,70644700061760,4241472,4239424,70644700061760,275955888192,4239424,4241472,275955888192,4629771061636931648,4241472,4239424,18085043209543744,275955888192,4239424,4241472,275955888192,70644700061760,4241472,4239424,70644700061760,275955888192,4239424,4241472,275955888192,4629771061636931648,4241472,4239424,18085043209543744,275955888192,4239424,4241472,275955888192,70644700061760,4241472,4239424,70644700061760,275955888192,4239424,4241472,275955888192,4629771061636931648,4241472,4239424,18085043209543744,275955888192,4239424,4241472,275955888192,70644700061760,4241472,4239424,70644700061760,275955888192,4239424,4241472,275955888192,4629771061636931648,4241472,4235328,18085043209543744,275955888192,4235328,4239424,275955888192,70644700061760,4239424,4235328,70644700061760,275955888192,4235328,4239424,275955888192,4629771061636931648,4239424,4235328,18085043209543744,275955888192,4235328,4239424,275955888192,70644700061760,4239424,4235328,70644700061760,275955888192,4235328,4239424,275955888192,4629771061636931648,4239424,4235328,18085043209543744,275955888192,4235328,4239424,275955888192,70644700061760,4239424,4235328,70644700061760,275955888192,4235328,4239424,275955888192,4629771061636931648,4239424,4235328,18085043209543744,275955888192,4235328,4239424,275955888192,70644700061760,4239424,4235328,70644700061760,275955888192,4235328,4239424,275955888192,4629771061636931648,4239424,4235328,18085043209543744,275955884096,4235328,4239424,275955884096,70644700061760,4239424,4235328,70644700061760,275955884096,4235328,4239424,275955884096,4629771061636931648,4239424,4235328,18085043209543744,275955884096,4235328,4239424,275955884096,70644700061760,4239424,4235328,70644700061760,275955884096,4235328,4239424,275955884096,4629771061636931648,4239424,4235328,18085043209543744,275955884096,4235328,4239424,275955884096,70644700061760,4239424,4235328,70644700061760,275955884096,4235328,4239424,275955884096,4629771061636931648,4239424,4235328,18085043209543744,275955884096,4235328,4239424,275955884096,70644700061760,4239424,4235328,70644700061760,275955884096,4235328,4239424,275955884096,4629771061636931648,4239424,4235328,18085043209543744,275955884096,4235328,4235328,275955884096,70644700061760,4235328,4235328,70644700061760,275955884096,4235328,4235328,275955884096,4629771061636931648,4235328,4235328,18085043209543744,275955884096,4235328,4235328,275955884096,70644700061760,4235328,4235328,70644700061760,275955884096,4235328,4235328,275955884096,4629771061636931648,4235328,4235328,18085043209543744,275955884096,4235328,4235328,275955884096,70644700061760,4235328,4235328,70644700061760,275955884096,4235328,4235328,275955884096,4629771061636931648,4235328,4235328,18085043209543744,275955884096,4235328,4235328,275955884096,70644700061760,4235328,4235328,70644700061760,275955884096,4235328,4235328,275955884096,1077985088,4235328,4235328,1077985088,275955884096,4235328,4235328,275955884096,1077985088,4235328,4235328,1077985088,275955884096,4235328,4235328,275955884096,1077984832,4235328,4235328,1077984832,275955884096,4235328,4235328,275955884096,1077984832,4235328,4235328,1077984832,275955884096,4235328,4235328,275955884096,1077984320,4235328,4235328,1077984320,275955884096,4235328,4235328,275955884096,1077984320,4235328,4235328,1077984320,275955884096,4235328,4235328,275955884096,1077984320,4235328,4235328,1077984320,275955884096,4235328,4235328,275955884096,1077984320,4235328,4235328,1077984320,275955884096,4235328,4235328,275955884096,1077983296,4235328,4243264,1077983296,275955884096,4243264,4235328,275955884096,1077983296,4235328,4243264,1077983296,275955884096,4243264,4235328,275955884096,1077983296,4235328,4243008,1077983296,275955884096,4243008,4235328,275955884096,1077983296,4235328,4243008,1077983296,275955884096,4243008,4235328,275955884096,1077983296,4235328,4242496,1077983296,275955884096,4242496,4235328,275955884096,1077983296,4235328,4242496,1077983296,275955884096,4242496,4235328,275955884096,1077983296,4235328,4242496,1077983296,275955884096,4242496,4235328,275955884096,1077983296,4235328,4242496,1077983296,275955884096,4242496,4235328,275955884096,1077981248,4235328,4241472,1077981248,1077985088,4241472,4235328,1077985088,1077981248,4235328,4241472,1077981248,1077985088,4241472,4235328,1077985088,1077981248,4235328,4241472,1077981248,1077984832,4241472,4235328,1077984832,1077981248,4235328,4241472,1077981248,1077984832,4241472,4235328,1077984832,1077981248,4235328,4241472,1077981248,1077984320,4241472,4235328,1077984320,1077981248,4235328,4241472,1077981248,1077984320,4241472,4235328,1077984320,1077981248,4235328,4241472,1077981248,1077984320,4241472,4235328,1077984320,1077981248,4235328,4241472,1077981248,1077984320,4241472,4235328,1077984320,1077981248,4235328,4239424,1077981248,1077983296,4239424,4243264,1077983296,1077981248,4243264,4239424,1077981248,1077983296,4239424,4243264,1077983296,1077981248,4243264,4239424,1077981248,1077983296,4239424,4243008,1077983296,1077981248,4243008,4239424,1077981248,1077983296,4239424,4243008,1077983296,1077981248,4243008,4239424,1077981248,1077983296,4239424,4242496,1077983296,1077981248,4242496,4239424,1077981248,1077983296,4239424,4242496,1077983296,1077981248,4242496,4239424,1077981248,1077983296,4239424,4242496,1077983296,1077981248,4242496,4239424,1077981248,1077983296,4239424,4242496,1077983296,1077977152,4242496,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4239424,1077977152,1077981248,4239424,4241472,1077981248,1077977152,4241472,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077981248,4235328,4239424,1077981248,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4239424,1077977152,1077977152,4239424,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,1077977152,4235328,4235328,1077977152,0],[9259542123273813888,551911718784,8421248,8421248,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273813632,551911718528,8420992,8420992,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273813120,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273813120,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273812096,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273812096,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273812096,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400074112,551911718784,8421248,8421248,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273812096,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400073856,551911718528,8420992,8420992,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400073344,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400073344,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904896,2155904896,8421248,8421248,141289400057984,551911702656,8405120,8405120,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904640,2155904640,8420992,8420992,141289400057984,551911702656,8405120,8405120,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904128,2155904128,8420480,8420480,141289400057984,551911702656,8405120,8405120,9259542123273810048,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904128,2155904128,8420480,8420480,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904896,2155904896,8421248,8421248,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904640,2155904640,8420992,8420992,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904128,2155904128,8420480,8420480,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904128,2155904128,8420480,8420480,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419038080,551911718784,8421248,8421248,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419037824,551911718528,8420992,8420992,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419037312,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419037312,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419036288,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419036288,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419036288,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400074112,551911718784,8421248,8421248,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419036288,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400073856,551911718528,8420992,8420992,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400073344,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400073344,551911718016,8420480,8420480,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904896,2155904896,8421248,8421248,141289400057984,551911702656,8405120,8405120,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400072320,551911716992,8419456,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904640,2155904640,8420992,8420992,141289400057984,551911702656,8405120,8405120,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904128,2155904128,8420480,8420480,141289400057984,551911702656,8405120,8405120,36170086419034240,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155904128,2155904128,8420480,8420480,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904896,2155904896,8421248,8421248,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155903104,2155903104,8419456,8419456,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904640,2155904640,8420992,8420992,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904128,2155904128,8420480,8420480,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155904128,2155904128,8420480,8420480,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155901056,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,2155888768,2155888768,8405120,8405120,2155903104,2155903104,8419456,8419456,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,0],[72340172854657281,1103823765760,17694977,4312137984,282578800214273,72340172854657280,4311875841,17694976,16908545,282578800214272,16908545,4311875840,282578816729345,16908544,17694977,16908544,17170689,282578816729344,4312137985,17694976,16908545,17170688,16908545,4312137984,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,4312137985,4311875840,72340172838928641,17170688,4328390913,4312137984,1103823503617,72340172838928640,4311875841,4328390912,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4328390913,16908544,17170689,282578801000704,17170689,4328390912,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172839977217,17170688,4312662273,17170688,1103823503617,72340172839977216,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578802049281,16908544,4312662273,16908544,17170689,282578802049280,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4313710849,17170688,1103823503617,72340172838928640,4311875841,4313710848,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4313710849,16908544,17170689,282578801000704,17170689,4313710848,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172842074369,17170688,4312662273,17170688,1103823503617,72340172842074368,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578804146433,16908544,4312662273,16908544,17170689,282578804146432,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4315808001,17170688,1103823503617,72340172838928640,4311875841,4315808000,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4315808001,16908544,17170689,282578801000704,17170689,4315808000,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172839977217,17170688,4312662273,17170688,1103823503617,72340172839977216,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578802049281,16908544,4312662273,16908544,17170689,282578802049280,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4313710849,17170688,1103823503617,72340172838928640,4311875841,4313710848,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4313710849,16908544,17170689,282578801000704,17170689,4313710848,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172846268673,17170688,4312662273,17170688,1103823503617,72340172846268672,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578808340737,16908544,4312662273,16908544,17170689,282578808340736,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4320002305,17170688,1103823503617,72340172838928640,4311875841,4320002304,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4320002305,16908544,17170689,282578801000704,17170689,4320002304,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172839977217,17170688,4312662273,17170688,1103823503617,72340172839977216,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578802049281,16908544,4312662273,16908544,17170689,282578802049280,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4313710849,17170688,1103823503617,72340172838928640,4311875841,4313710848,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4313710849,16908544,17170689,282578801000704,17170689,4313710848,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172842074369,17170688,4312662273,17170688,1103823503617,72340172842074368,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578804146433,16908544,4312662273,16908544,17170689,282578804146432,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4315808001,17170688,1103823503617,72340172838928640,4311875841,4315808000,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4315808001,16908544,17170689,282578801000704,17170689,4315808000,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172839977217,17170688,4312662273,17170688,1103823503617,72340172839977216,4311875841,4312662272,16908545,1103823503616,16908545,4311875840,282578802049281,16908544,4312662273,16908544,17170689,282578802049280,17170689,4312662272,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,72340172838928641,17170688,4313710849,17170688,1103823503617,72340172838928640,4311875841,4313710848,16908545,1103823503616,16908545,4311875840,282578801000705,16908544,4313710849,16908544,17170689,282578801000704,17170689,4313710848,16908545,17170688,16908545,17170688,1103823503617,16908544,4311875841,16908544,17170689,1103823503616,17170689,4311875840,1103840018689,17170688,4312662273,17170688,1103823503617,1103840018688,4311875841,4312662272,72340172838142209,1103823503616,16908545,4311875840,1103840018689,72340172838142208,4312662273,16908544,17170689,1103840018688,17170689,4312662272,282578800214273,17170688,16908545,17170688,16908545,282578800214272,4311875841,16908544,17170689,16908544,17170689,4311875840,1103824290049,17170688,4328390913,17170688,16908545,1103824290048,4311875841,4328390912,72340172838142209,16908544,4311875841,4311875840,1103824290049,72340172838142208,4328390913,4311875840,17170689,1103824290048,17170689,4328390912,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103825338625,17170688,4312662273,17170688,16908545,1103825338624,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103825338625,72340172838142208,4312662273,4311875840,17170689,1103825338624,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4313710849,17170688,16908545,1103824290048,16908545,4313710848,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4313710849,4311875840,17170689,1103824290048,17170689,4313710848,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103827435777,17170688,4312662273,17170688,16908545,1103827435776,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103827435777,72340172838142208,4312662273,4311875840,17170689,1103827435776,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4315808001,17170688,16908545,1103824290048,16908545,4315808000,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4315808001,4311875840,17170689,1103824290048,17170689,4315808000,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103825338625,17170688,4312662273,17170688,16908545,1103825338624,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103825338625,72340172838142208,4312662273,4311875840,17170689,1103825338624,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4313710849,17170688,16908545,1103824290048,16908545,4313710848,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4313710849,4311875840,17170689,1103824290048,17170689,4313710848,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103831630081,17170688,4312662273,17170688,16908545,1103831630080,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103831630081,72340172838142208,4312662273,4311875840,17170689,1103831630080,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4320002305,17170688,16908545,1103824290048,16908545,4320002304,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4320002305,4311875840,17170689,1103824290048,17170689,4320002304,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103825338625,17170688,4312662273,17170688,16908545,1103825338624,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103825338625,72340172838142208,4312662273,4311875840,17170689,1103825338624,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4313710849,17170688,16908545,1103824290048,16908545,4313710848,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4313710849,4311875840,17170689,1103824290048,17170689,4313710848,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103827435777,17170688,4312662273,17170688,16908545,1103827435776,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103827435777,72340172838142208,4312662273,4311875840,17170689,1103827435776,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4315808001,17170688,16908545,1103824290048,16908545,4315808000,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4315808001,4311875840,17170689,1103824290048,17170689,4315808000,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103825338625,17170688,4312662273,17170688,16908545,1103825338624,16908545,4312662272,72340172838142209,16908544,4311875841,16908544,1103825338625,72340172838142208,4312662273,4311875840,17170689,1103825338624,17170689,4312662272,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,1103824290049,17170688,4313710849,17170688,16908545,1103824290048,16908545,4313710848,72340172838142209,16908544,4311875841,16908544,1103824290049,72340172838142208,4313710849,4311875840,17170689,1103824290048,17170689,4313710848,282578800214273,17170688,4311875841,17170688,16908545,282578800214272,16908545,4311875840,17170689,16908544,17170689,16908544,33423617,17170688,4312662273,17170688,16908545,33423616,16908545,4312662272,1103823503617,16908544,4311875841,16908544,33423617,1103823503616,4312662273,4311875840,72340172838404353,33423616,17170689,4312662272,1103823503617,72340172838404352,4311875841,17170688,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,17170689,16908544,17694977,282578800476416,33423617,17170688,16908545,17694976,16908545,33423616,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,33423617,4311875840,72340172838404353,17694976,4312137985,33423616,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,18743553,282578800476416,17694977,4312137984,16908545,18743552,16908545,17694976,1103823503617,16908544,4311875841,16908544,18743553,1103823503616,17694977,4311875840,72340172838404353,18743552,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,18743553,4312137984,16908545,17694976,16908545,18743552,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,18743553,4311875840,72340172838404353,17694976,4312137985,18743552,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,20840705,282578800476416,17694977,4312137984,16908545,20840704,16908545,17694976,1103823503617,16908544,4311875841,16908544,20840705,1103823503616,17694977,4311875840,72340172838404353,20840704,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,20840705,4312137984,16908545,17694976,16908545,20840704,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,20840705,4311875840,72340172838404353,17694976,4312137985,20840704,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,18743553,282578800476416,17694977,4312137984,16908545,18743552,16908545,17694976,1103823503617,16908544,4311875841,16908544,18743553,1103823503616,17694977,4311875840,72340172838404353,18743552,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,18743553,4312137984,16908545,17694976,16908545,18743552,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,18743553,4311875840,72340172838404353,17694976,4312137985,18743552,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,25035009,282578800476416,17694977,4312137984,16908545,25035008,16908545,17694976,1103823503617,16908544,4311875841,16908544,25035009,1103823503616,17694977,4311875840,72340172838404353,25035008,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,25035009,4312137984,16908545,17694976,16908545,25035008,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,25035009,4311875840,72340172838404353,17694976,4312137985,25035008,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,18743553,282578800476416,17694977,4312137984,16908545,18743552,16908545,17694976,1103823503617,16908544,4311875841,16908544,18743553,1103823503616,17694977,4311875840,72340172838404353,18743552,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,18743553,4312137984,16908545,17694976,16908545,18743552,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,18743553,4311875840,72340172838404353,17694976,4312137985,18743552,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,20840705,282578800476416,17694977,4312137984,16908545,20840704,16908545,17694976,1103823503617,16908544,4311875841,16908544,20840705,1103823503616,17694977,4311875840,72340172838404353,20840704,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,20840705,4312137984,16908545,17694976,16908545,20840704,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,20840705,4311875840,72340172838404353,17694976,4312137985,20840704,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,18743553,282578800476416,17694977,4312137984,16908545,18743552,16908545,17694976,1103823503617,16908544,4311875841,16908544,18743553,1103823503616,17694977,4311875840,72340172838404353,18743552,4312137985,17694976,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,17694977,282578800476416,18743553,4312137984,16908545,17694976,16908545,18743552,1103823503617,16908544,4311875841,16908544,17694977,1103823503616,18743553,4311875840,72340172838404353,17694976,4312137985,18743552,1103823503617,72340172838404352,4311875841,4312137984,16908545,1103823503616,16908545,4311875840,282578800476417,16908544,4312137985,16908544,33423617,282578800476416,17694977,4312137984,16908545,33423616,16908545,17694976,16908545,16908544,4311875841,16908544,33423617,16908544,17694977,4311875840,1103823765761,33423616,4312137985,17694976,16908545,1103823765760,4311875841,4312137984,72340172838142209,16908544,16908545,4311875840,1103823765761,72340172838142208,4312137985,16908544,17694977,1103823765760,33423617,4312137984,282578800214273,17694976,16908545,33423616,16908545,282578800214272,16908545,16908544,17694977,16908544,33423617,16908544,1103823765761,17694976,4312137985,33423616,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,18743553,1103823765760,17694977,4312137984,282578800214273,18743552,4311875841,17694976,16908545,282578800214272,16908545,4311875840,18743553,16908544,17694977,16908544,1103823765761,18743552,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,18743553,4312137984,282578800214273,17694976,4311875841,18743552,16908545,282578800214272,16908545,4311875840,17694977,16908544,18743553,16908544,1103823765761,17694976,4312137985,18743552,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,20840705,1103823765760,17694977,4312137984,282578800214273,20840704,4311875841,17694976,16908545,282578800214272,16908545,4311875840,20840705,16908544,17694977,16908544,1103823765761,20840704,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,20840705,4312137984,282578800214273,17694976,4311875841,20840704,16908545,282578800214272,16908545,4311875840,17694977,16908544,20840705,16908544,1103823765761,17694976,4312137985,20840704,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,18743553,1103823765760,17694977,4312137984,282578800214273,18743552,4311875841,17694976,16908545,282578800214272,16908545,4311875840,18743553,16908544,17694977,16908544,1103823765761,18743552,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,18743553,4312137984,282578800214273,17694976,4311875841,18743552,16908545,282578800214272,16908545,4311875840,17694977,16908544,18743553,16908544,1103823765761,17694976,4312137985,18743552,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,25035009,1103823765760,17694977,4312137984,282578800214273,25035008,4311875841,17694976,16908545,282578800214272,16908545,4311875840,25035009,16908544,17694977,16908544,1103823765761,25035008,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,25035009,4312137984,282578800214273,17694976,4311875841,25035008,16908545,282578800214272,16908545,4311875840,17694977,16908544,25035009,16908544,1103823765761,17694976,4312137985,25035008,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,18743553,1103823765760,17694977,4312137984,282578800214273,18743552,4311875841,17694976,16908545,282578800214272,16908545,4311875840,18743553,16908544,17694977,16908544,1103823765761,18743552,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,18743553,4312137984,282578800214273,17694976,4311875841,18743552,16908545,282578800214272,16908545,4311875840,17694977,16908544,18743553,16908544,1103823765761,17694976,4312137985,18743552,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,20840705,1103823765760,17694977,4312137984,282578800214273,20840704,4311875841,17694976,16908545,282578800214272,16908545,4311875840,20840705,16908544,17694977,16908544,1103823765761,20840704,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,20840705,4312137984,282578800214273,17694976,4311875841,20840704,16908545,282578800214272,16908545,4311875840,17694977,16908544,20840705,16908544,1103823765761,17694976,4312137985,20840704,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,18743553,1103823765760,17694977,4312137984,282578800214273,18743552,4311875841,17694976,16908545,282578800214272,16908545,4311875840,18743553,16908544,17694977,16908544,1103823765761,18743552,4312137985,17694976,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,17694977,1103823765760,18743553,4312137984,282578800214273,17694976,4311875841,18743552,16908545,282578800214272,16908545,4311875840,17694977,16908544,18743553,16908544,1103823765761,17694976,4312137985,18743552,16908545,1103823765760,16908545,4312137984,72340172838142209,16908544,4311875841,16908544,1103823765761,72340172838142208,4312137985,4311875840,0],[144680345692602882,2207647072768,50135554,33882624,565157616747010,144680345692602880,50135554,50135552,2207663325698,565157616747008,50135554,50135552,2207663325698,2207663325696,50135554,50135552,8623817218,2207663325696,33882626,50135552,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345677922818,8623817216,35455490,33882624,565157602066946,144680345677922816,35455490,35455488,2207648645634,565157602066944,35455490,35455488,2207648645634,2207648645632,35455490,35455488,8623817218,2207648645632,33882626,35455488,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345680019970,8623817216,37552642,33882624,565157604164098,144680345680019968,37552642,37552640,2207650742786,565157604164096,37552642,37552640,2207650742786,2207650742784,37552642,37552640,8623817218,2207650742784,33882626,37552640,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345677922818,8623817216,35455490,33882624,565157602066946,144680345677922816,35455490,35455488,2207648645634,565157602066944,35455490,35455488,2207648645634,2207648645632,35455490,35455488,8623817218,2207648645632,33882626,35455488,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345684214274,8623817216,41746946,33882624,565157608358402,144680345684214272,41746946,41746944,2207654937090,565157608358400,41746946,41746944,2207654937090,2207654937088,41746946,41746944,8623817218,2207654937088,33882626,41746944,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345677922818,8623817216,35455490,33882624,565157602066946,144680345677922816,35455490,35455488,2207648645634,565157602066944,35455490,35455488,2207648645634,2207648645632,35455490,35455488,8623817218,2207648645632,33882626,35455488,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345680019970,8623817216,37552642,33882624,565157604164098,144680345680019968,37552642,37552640,2207650742786,565157604164096,37552642,37552640,2207650742786,2207650742784,37552642,37552640,8623817218,2207650742784,33882626,37552640,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345677922818,8623817216,35455490,33882624,565157602066946,144680345677922816,35455490,35455488,2207648645634,565157602066944,35455490,35455488,2207648645634,2207648645632,35455490,35455488,8623817218,2207648645632,33882626,35455488,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,144680345676874242,8623817216,34406914,33882624,565157601018370,144680345676874240,34406914,34406912,2207647597058,565157601018368,34406914,34406912,2207647597058,2207647597056,34406914,34406912,8623817218,2207647597056,33882626,34406912,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8623817218,8623817216,33882626,33882624,8640070146,8623817216,50135554,33882624,8640070146,8640070144,50135554,50135552,8640070146,8640070144,50135554,50135552,8640070146,8640070144,50135554,50135552,144680345676349954,8640070144,33882626,50135552,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8625390082,2207647072768,35455490,33882624,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,144680345676349954,8625390080,33882626,35455488,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8627487234,2207647072768,37552642,33882624,8627487234,8627487232,37552642,37552640,8627487234,8627487232,37552642,37552640,8627487234,8627487232,37552642,37552640,144680345676349954,8627487232,33882626,37552640,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8625390082,2207647072768,35455490,33882624,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,144680345676349954,8625390080,33882626,35455488,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8631681538,2207647072768,41746946,33882624,8631681538,8631681536,41746946,41746944,8631681538,8631681536,41746946,41746944,8631681538,8631681536,41746946,41746944,144680345676349954,8631681536,33882626,41746944,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8625390082,2207647072768,35455490,33882624,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,144680345676349954,8625390080,33882626,35455488,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8627487234,2207647072768,37552642,33882624,8627487234,8627487232,37552642,37552640,8627487234,8627487232,37552642,37552640,8627487234,8627487232,37552642,37552640,144680345676349954,8627487232,33882626,37552640,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8625390082,2207647072768,35455490,33882624,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,8625390082,8625390080,35455490,35455488,144680345676349954,8625390080,33882626,35455488,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,8624341506,2207647072768,34406914,33882624,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,8624341506,8624341504,34406914,34406912,144680345676349954,8624341504,33882626,34406912,565157600494082,144680345676349952,33882626,33882624,2207647072770,565157600494080,33882626,33882624,2207647072770,2207647072768,33882626,33882624,0],[289360691368494084,17248683008,83559428,68813824,17255040004,17248683008,75170820,68813824,289360691368428548,4415309939716,83493892,83559428,17254974468,17255040004,75105284,75170820,17247699968,4415309874180,67830784,83493892,17247699968,17254974468,67830784,75105284,17247634432,17247699968,67765248,67830784,17247634432,17247699968,67765248,67830784,289360691352765444,17247634432,67830788,67765248,17247699972,17247634432,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,17247634436,17247699972,67765252,67830788,289360691368494080,4415294145540,83559424,67765252,17255040000,17247634436,75170816,67765252,289360691368428544,4415309939712,83493888,83559424,17254974464,17255040000,75105280,75170816,289360691353814020,4415309874176,68879364,83493888,17248748548,17254974464,68879364,75105280,289360691353748484,4415295259652,68813828,68879364,17248683012,17248748548,68813828,68879364,289360691352765440,4415295194116,67830784,68813828,17247699968,17248683012,67830784,68813828,289360691352699904,4415294211072,67765248,67830784,17247634432,17247699968,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,17247699972,17247634432,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,17247634436,17247699972,67765252,67830788,289360691353814016,4415294145540,68879360,67765252,17248748544,17247634436,68879360,67765252,289360691353748480,4415295259648,68813824,68879360,17248683008,17248748544,68813824,68879360,289360691355911172,4415295194112,70976516,68813824,17250845700,17248683008,70976516,68813824,289360691355845636,4415297356804,70910980,70976516,17250780164,17250845700,70910980,70976516,289360691352765440,4415297291268,67830784,70910980,17247699968,17250780164,67830784,70910980,289360691352699904,4415294211072,67765248,67830784,17247634432,17247699968,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,17247699972,17247634432,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,17247634436,17247699972,67765252,67830788,289360691355911168,4415294145540,70976512,67765252,17250845696,17247634436,70976512,67765252,289360691355845632,4415297356800,70910976,70976512,17250780160,17250845696,70910976,70976512,289360691353814020,4415297291264,68879364,70910976,17248748548,17250780160,68879364,70910976,289360691353748484,4415295259652,68813828,68879364,17248683012,17248748548,68813828,68879364,289360691352765440,4415295194116,67830784,68813828,17247699968,17248683012,67830784,68813828,289360691352699904,4415294211072,67765248,67830784,17247634432,17247699968,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,17247699972,17247634432,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,17247634436,17247699972,67765252,67830788,289360691353814016,4415294145540,68879360,67765252,17248748544,17247634436,68879360,67765252,289360691353748480,4415295259648,68813824,68879360,17248683008,17248748544,68813824,68879360,289360691360105476,4415295194112,75170820,68813824,1130315216782340,17248683008,83559428,68813824,289360691360039940,4415301551108,75105284,75170820,1130315216716804,4415309939716,83493892,83559428,289360691352765440,4415301485572,67830784,75105284,17247699968,4415309874180,67830784,83493892,289360691352699904,4415294211072,67765248,67830784,17247634432,17247699968,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,1130315201053700,17247634432,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,289360691360105472,4415294145540,75170816,67765252,1130315216782336,4415294145540,83559424,67765252,289360691360039936,4415301551104,75105280,75170816,1130315216716800,4415309939712,83493888,83559424,289360691353814020,4415301485568,68879364,75105280,1130315202102276,4415309874176,68879364,83493888,289360691353748484,4415295259652,68813828,68879364,1130315202036740,4415295259652,68813828,68879364,289360691352765440,4415295194116,67830784,68813828,1130315201053696,4415295194116,67830784,68813828,289360691352699904,4415294211072,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,289360691353814016,4415294145540,68879360,67765252,1130315202102272,4415294145540,68879360,67765252,289360691353748480,4415295259648,68813824,68879360,1130315202036736,4415295259648,68813824,68879360,289360691355911172,4415295194112,70976516,68813824,1130315204199428,4415295194112,70976516,68813824,289360691355845636,4415297356804,70910980,70976516,1130315204133892,4415297356804,70910980,70976516,289360691352765440,4415297291268,67830784,70910980,1130315201053696,4415297291268,67830784,70910980,289360691352699904,4415294211072,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,289360691355911168,4415294145540,70976512,67765252,1130315204199424,4415294145540,70976512,67765252,289360691355845632,4415297356800,70910976,70976512,1130315204133888,4415297356800,70910976,70976512,289360691353814020,4415297291264,68879364,70910976,1130315202102276,4415297291264,68879364,70910976,289360691353748484,4415295259652,68813828,68879364,1130315202036740,4415295259652,68813828,68879364,289360691352765440,4415295194116,67830784,68813828,1130315201053696,4415295194116,67830784,68813828,289360691352699904,4415294211072,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,289360691352765444,4415294145536,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,289360691352699908,4415294211076,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,289360691353814016,4415294145540,68879360,67765252,1130315202102272,4415294145540,68879360,67765252,289360691353748480,4415295259648,68813824,68879360,1130315202036736,4415295259648,68813824,68879360,17263428612,4415295194112,83559428,68813824,1130315208393732,4415295194112,75170820,68813824,17263363076,17263428612,83493892,83559428,1130315208328196,4415301551108,75105284,75170820,289360691352765440,17263363076,67830784,83493892,1130315201053696,4415301485572,67830784,75105284,289360691352699904,4415294211072,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,17247699972,4415294145536,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,17247634436,17247699972,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,17263428608,17247634436,83559424,67765252,1130315208393728,4415294145540,75170816,67765252,17263363072,17263428608,83493888,83559424,1130315208328192,4415301551104,75105280,75170816,17248748548,17263363072,68879364,83493888,1130315202102276,4415301485568,68879364,75105280,17248683012,17248748548,68813828,68879364,1130315202036740,4415295259652,68813828,68879364,17247699968,17248683012,67830784,68813828,1130315201053696,4415295194116,67830784,68813828,17247634432,17247699968,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,17247699972,17247634432,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,17247634436,17247699972,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,17248748544,17247634436,68879360,67765252,1130315202102272,4415294145540,68879360,67765252,17248683008,17248748544,68813824,68879360,1130315202036736,4415295259648,68813824,68879360,17250845700,17248683008,70976516,68813824,1130315204199428,4415295194112,70976516,68813824,17250780164,17250845700,70910980,70976516,1130315204133892,4415297356804,70910980,70976516,17247699968,17250780164,67830784,70910980,1130315201053696,4415297291268,67830784,70910980,17247634432,17247699968,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,17247699972,17247634432,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,17247634436,17247699972,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,17250845696,17247634436,70976512,67765252,1130315204199424,4415294145540,70976512,67765252,17250780160,17250845696,70910976,70976512,1130315204133888,4415297356800,70910976,70976512,17248748548,17250780160,68879364,70910976,1130315202102276,4415297291264,68879364,70910976,17248683012,17248748548,68813828,68879364,1130315202036740,4415295259652,68813828,68879364,17247699968,17248683012,67830784,68813828,1130315201053696,4415295194116,67830784,68813828,17247634432,17247699968,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,17247699972,17247634432,67830788,67765248,1130315201053700,4415294145536,67830788,67765248,17247634436,17247699972,67765252,67830788,1130315200988164,4415294211076,67765252,67830788,17248748544,17247634436,68879360,67765252,1130315202102272,4415294145540,68879360,67765252,17248683008,17248748544,68813824,68879360,1130315202036736,4415295259648,68813824,68879360,17255040004,17248683008,75170820,68813824,17263428612,4415295194112,83559428,68813824,17254974468,17255040004,75105284,75170820,17263363076,17263428612,83493892,83559428,17247699968,17254974468,67830784,75105284,1130315201053696,17263363076,67830784,83493892,17247634432,17247699968,67765248,67830784,1130315200988160,4415294211072,67765248,67830784,17247699972,17247634432,67830788,67765248,17247699972,4415294145536,67830788,67765248,17247634436,17247699972,67765252,67830788,17247634436,17247699972,67765252,67830788,17255040000,17247634436,75170816,67765252,17263428608,17247634436,83559424,67765252,17254974464,17255040000,75105280,75170816,17263363072,17263428608,83493888,83559424,17248748548,17254974464,68879364,75105280,17248748548,17263363072,68879364,83493888,17248683012,17248748548,68813828,68879364,17248683012,17248748548,68813828,68879364,17247699968,17248683012,67830784,68813828,17247699968,17248683012,67830784,68813828,17247634432,17247699968,67765248,67830784,17247634432,17247699968,67765248,67830784,17247699972,17247634432,67830788,67765248,17247699972,17247634432,67830788,67765248,17247634436,17247699972,67765252,67830788,17247634436,17247699972,67765252,67830788,17248748544,17247634436,68879360,67765252,17248748544,17247634436,68879360,67765252,17248683008,17248748544,68813824,68879360,17248683008,17248748544,68813824,68879360,17250845700,17248683008,70976516,68813824,17250845700,17248683008,70976516,68813824,17250780164,17250845700,70910980,70976516,17250780164,17250845700,70910980,70976516,17247699968,17250780164,67830784,70910980,17247699968,17250780164,67830784,70910980,17247634432,17247699968,67765248,67830784,17247634432,17247699968,67765248,67830784,17247699972,17247634432,67830788,67765248,17247699972,17247634432,67830788,67765248,17247634436,17247699972,67765252,67830788,17247634436,17247699972,67765252,67830788,17250845696,17247634436,70976512,67765252,17250845696,17247634436,70976512,67765252,17250780160,17250845696,70910976,70976512,17250780160,17250845696,70910976,70976512,17248748548,17250780160,68879364,70910976,17248748548,17250780160,68879364,70910976,17248683012,17248748548,68813828,68879364,17248683012,17248748548,68813828,68879364,17247699968,17248683012,67830784,68813828,17247699968,17248683012,67830784,68813828,17247634432,17247699968,67765248,67830784,17247634432,17247699968,67765248,67830784,17247699972,17247634432,67830788,67765248,17247699972,17247634432,67830788,67765248,17247634436,17247699972,67765252,67830788,17247634436,17247699972,67765252,67830788,17248748544,17247634436,68879360,67765252,17248748544,17247634436,68879360,67765252,17248683008,17248748544,68813824,68879360,17248683008,17248748544,68813824,68879360,0],[578721382720276488,8830603167752,150407176,150407176,34495465480,34495465480,135727112,135727112,2260630404270088,8830590584840,137824264,137824264,34495465480,34495465480,135727112,135727112,578721382720210952,8830603102216,150341640,150341640,34495399944,34495399944,135661576,135661576,2260630404204552,8830590519304,137758728,137758728,34495399944,34495399944,135661576,135661576,578721382720079880,8830602971144,150210568,150210568,34495268872,34495268872,135530504,135530504,2260630404073480,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,578721382720079880,8830602971144,150210568,150210568,34495268872,34495268872,135530504,135530504,2260630404073480,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,578721382720276480,8830603167744,150407168,150407168,34495465472,34495465472,135727104,135727104,2260630404270080,8830590584832,137824256,137824256,34495465472,34495465472,135727104,135727104,578721382720210944,8830603102208,150341632,150341632,34495399936,34495399936,135661568,135661568,2260630404204544,8830590519296,137758720,137758720,34495399936,34495399936,135661568,135661568,578721382720079872,8830602971136,150210560,150210560,34495268864,34495268864,135530496,135530496,2260630404073472,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,578721382720079872,8830602971136,150210560,150210560,34495268864,34495268864,135530496,135530496,2260630404073472,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,578721382705596424,8830588487688,135727112,135727112,34501756936,34501756936,142018568,142018568,2260630402172936,8830588487688,135727112,135727112,34497562632,34497562632,137824264,137824264,578721382705530888,8830588422152,135661576,135661576,34501691400,34501691400,141953032,141953032,2260630402107400,8830588422152,135661576,135661576,34497497096,34497497096,137758728,137758728,578721382705399816,8830588291080,135530504,135530504,34501560328,34501560328,141821960,141821960,2260630401976328,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,578721382705399816,8830588291080,135530504,135530504,34501560328,34501560328,141821960,141821960,2260630401976328,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,578721382705596416,8830588487680,135727104,135727104,34501756928,34501756928,142018560,142018560,2260630402172928,8830588487680,135727104,135727104,34497562624,34497562624,137824256,137824256,578721382705530880,8830588422144,135661568,135661568,34501691392,34501691392,141953024,141953024,2260630402107392,8830588422144,135661568,135661568,34497497088,34497497088,137758720,137758720,578721382705399808,8830588291072,135530496,135530496,34501560320,34501560320,141821952,141821952,2260630401976320,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,578721382705399808,8830588291072,135530496,135530496,34501560320,34501560320,141821952,141821952,2260630401976320,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,578721382707693576,8830590584840,137824264,137824264,34495465480,34495465480,135727112,135727112,2260630416853000,8830603167752,150407176,150407176,34495465480,34495465480,135727112,135727112,578721382707628040,8830590519304,137758728,137758728,34495399944,34495399944,135661576,135661576,2260630416787464,8830603102216,150341640,150341640,34495399944,34495399944,135661576,135661576,578721382707496968,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,2260630416656392,8830602971144,150210568,150210568,34495268872,34495268872,135530504,135530504,578721382707496968,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,2260630416656392,8830602971144,150210568,150210568,34495268872,34495268872,135530504,135530504,578721382707693568,8830590584832,137824256,137824256,34495465472,34495465472,135727104,135727104,2260630416852992,8830603167744,150407168,150407168,34495465472,34495465472,135727104,135727104,578721382707628032,8830590519296,137758720,137758720,34495399936,34495399936,135661568,135661568,2260630416787456,8830603102208,150341632,150341632,34495399936,34495399936,135661568,135661568,578721382707496960,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,2260630416656384,8830602971136,150210560,150210560,34495268864,34495268864,135530496,135530496,578721382707496960,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,2260630416656384,8830602971136,150210560,150210560,34495268864,34495268864,135530496,135530496,578721382705596424,8830588487688,135727112,135727112,34497562632,34497562632,137824264,137824264,2260630402172936,8830588487688,135727112,135727112,34501756936,34501756936,142018568,142018568,578721382705530888,8830588422152,135661576,135661576,34497497096,34497497096,137758728,137758728,2260630402107400,8830588422152,135661576,135661576,34501691400,34501691400,141953032,141953032,578721382705399816,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,2260630401976328,8830588291080,135530504,135530504,34501560328,34501560328,141821960,141821960,578721382705399816,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,2260630401976328,8830588291080,135530504,135530504,34501560328,34501560328,141821960,141821960,578721382705596416,8830588487680,135727104,135727104,34497562624,34497562624,137824256,137824256,2260630402172928,8830588487680,135727104,135727104,34501756928,34501756928,142018560,142018560,578721382705530880,8830588422144,135661568,135661568,34497497088,34497497088,137758720,137758720,2260630402107392,8830588422144,135661568,135661568,34501691392,34501691392,141953024,141953024,578721382705399808,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,2260630401976320,8830588291072,135530496,135530496,34501560320,34501560320,141821952,141821952,578721382705399808,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,2260630401976320,8830588291072,135530496,135530496,34501560320,34501560320,141821952,141821952,578721382711887880,8830594779144,142018568,142018568,34495465480,34495465480,135727112,135727112,2260630404270088,8830590584840,137824264,137824264,34495465480,34495465480,135727112,135727112,578721382711822344,8830594713608,141953032,141953032,34495399944,34495399944,135661576,135661576,2260630404204552,8830590519304,137758728,137758728,34495399944,34495399944,135661576,135661576,578721382711691272,8830594582536,141821960,141821960,34495268872,34495268872,135530504,135530504,2260630404073480,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,578721382711691272,8830594582536,141821960,141821960,34495268872,34495268872,135530504,135530504,2260630404073480,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,578721382711887872,8830594779136,142018560,142018560,34495465472,34495465472,135727104,135727104,2260630404270080,8830590584832,137824256,137824256,34495465472,34495465472,135727104,135727104,578721382711822336,8830594713600,141953024,141953024,34495399936,34495399936,135661568,135661568,2260630404204544,8830590519296,137758720,137758720,34495399936,34495399936,135661568,135661568,578721382711691264,8830594582528,141821952,141821952,34495268864,34495268864,135530496,135530496,2260630404073472,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,578721382711691264,8830594582528,141821952,141821952,34495268864,34495268864,135530496,135530496,2260630404073472,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,578721382705596424,8830588487688,135727112,135727112,34510145544,34510145544,150407176,150407176,2260630402172936,8830588487688,135727112,135727112,34497562632,34497562632,137824264,137824264,578721382705530888,8830588422152,135661576,135661576,34510080008,34510080008,150341640,150341640,2260630402107400,8830588422152,135661576,135661576,34497497096,34497497096,137758728,137758728,578721382705399816,8830588291080,135530504,135530504,34509948936,34509948936,150210568,150210568,2260630401976328,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,578721382705399816,8830588291080,135530504,135530504,34509948936,34509948936,150210568,150210568,2260630401976328,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,578721382705596416,8830588487680,135727104,135727104,34510145536,34510145536,150407168,150407168,2260630402172928,8830588487680,135727104,135727104,34497562624,34497562624,137824256,137824256,578721382705530880,8830588422144,135661568,135661568,34510080000,34510080000,150341632,150341632,2260630402107392,8830588422144,135661568,135661568,34497497088,34497497088,137758720,137758720,578721382705399808,8830588291072,135530496,135530496,34509948928,34509948928,150210560,150210560,2260630401976320,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,578721382705399808,8830588291072,135530496,135530496,34509948928,34509948928,150210560,150210560,2260630401976320,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,578721382707693576,8830590584840,137824264,137824264,34495465480,34495465480,135727112,135727112,2260630408464392,8830594779144,142018568,142018568,34495465480,34495465480,135727112,135727112,578721382707628040,8830590519304,137758728,137758728,34495399944,34495399944,135661576,135661576,2260630408398856,8830594713608,141953032,141953032,34495399944,34495399944,135661576,135661576,578721382707496968,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,2260630408267784,8830594582536,141821960,141821960,34495268872,34495268872,135530504,135530504,578721382707496968,8830590388232,137627656,137627656,34495268872,34495268872,135530504,135530504,2260630408267784,8830594582536,141821960,141821960,34495268872,34495268872,135530504,135530504,578721382707693568,8830590584832,137824256,137824256,34495465472,34495465472,135727104,135727104,2260630408464384,8830594779136,142018560,142018560,34495465472,34495465472,135727104,135727104,578721382707628032,8830590519296,137758720,137758720,34495399936,34495399936,135661568,135661568,2260630408398848,8830594713600,141953024,141953024,34495399936,34495399936,135661568,135661568,578721382707496960,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,2260630408267776,8830594582528,141821952,141821952,34495268864,34495268864,135530496,135530496,578721382707496960,8830590388224,137627648,137627648,34495268864,34495268864,135530496,135530496,2260630408267776,8830594582528,141821952,141821952,34495268864,34495268864,135530496,135530496,578721382705596424,8830588487688,135727112,135727112,34497562632,34497562632,137824264,137824264,2260630402172936,8830588487688,135727112,135727112,34510145544,34510145544,150407176,150407176,578721382705530888,8830588422152,135661576,135661576,34497497096,34497497096,137758728,137758728,2260630402107400,8830588422152,135661576,135661576,34510080008,34510080008,150341640,150341640,578721382705399816,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,2260630401976328,8830588291080,135530504,135530504,34509948936,34509948936,150210568,150210568,578721382705399816,8830588291080,135530504,135530504,34497366024,34497366024,137627656,137627656,2260630401976328,8830588291080,135530504,135530504,34509948936,34509948936,150210568,150210568,578721382705596416,8830588487680,135727104,135727104,34497562624,34497562624,137824256,137824256,2260630402172928,8830588487680,135727104,135727104,34510145536,34510145536,150407168,150407168,578721382705530880,8830588422144,135661568,135661568,34497497088,34497497088,137758720,137758720,2260630402107392,8830588422144,135661568,135661568,34510080000,34510080000,150341632,150341632,578721382705399808,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,2260630401976320,8830588291072,135530496,135530496,34509948928,34509948928,150210560,150210560,578721382705399808,8830588291072,135530496,135530496,34497366016,34497366016,137627648,137627648,2260630401976320,8830588291072,135530496,135530496,34509948928,34509948928,150210560,150210560,0],[1157442765423841296,284102672,17661189623824,284102672,68990996496,271519760,68990996496,271519760,1157442765423775760,284037136,17661189558288,284037136,68990930960,271454224,68990930960,271454224,1157442765423644688,283906064,17661189427216,283906064,68990799888,271323152,68990799888,271323152,1157442765423644688,283906064,17661189427216,283906064,68990799888,271323152,68990799888,271323152,1157442765423382544,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,1157442765423382544,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,1157442765423382544,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,1157442765423382544,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,1157442765423841280,284102656,17661189623808,284102656,68990996480,271519744,68990996480,271519744,1157442765423775744,284037120,17661189558272,284037120,68990930944,271454208,68990930944,271454208,1157442765423644672,283906048,17661189427200,283906048,68990799872,271323136,68990799872,271323136,1157442765423644672,283906048,17661189427200,283906048,68990799872,271323136,68990799872,271323136,1157442765423382528,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,1157442765423382528,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,1157442765423382528,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,1157442765423382528,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,1157442765411258384,271519760,17661177040912,271519760,68995190800,275714064,68995190800,275714064,1157442765411192848,271454224,17661176975376,271454224,68995125264,275648528,68995125264,275648528,1157442765411061776,271323152,17661176844304,271323152,68994994192,275517456,68994994192,275517456,1157442765411061776,271323152,17661176844304,271323152,68994994192,275517456,68994994192,275517456,1157442765410799632,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,1157442765410799632,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,1157442765410799632,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,1157442765410799632,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,1157442765411258368,271519744,17661177040896,271519744,68995190784,275714048,68995190784,275714048,1157442765411192832,271454208,17661176975360,271454208,68995125248,275648512,68995125248,275648512,1157442765411061760,271323136,17661176844288,271323136,68994994176,275517440,68994994176,275517440,1157442765411061760,271323136,17661176844288,271323136,68994994176,275517440,68994994176,275517440,1157442765410799616,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,1157442765410799616,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,1157442765410799616,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,1157442765410799616,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,1157442765415452688,275714064,17661181235216,275714064,68990996496,271519760,68990996496,271519760,1157442765415387152,275648528,17661181169680,275648528,68990930960,271454224,68990930960,271454224,1157442765415256080,275517456,17661181038608,275517456,68990799888,271323152,68990799888,271323152,1157442765415256080,275517456,17661181038608,275517456,68990799888,271323152,68990799888,271323152,1157442765414993936,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,1157442765414993936,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,1157442765414993936,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,1157442765414993936,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,1157442765415452672,275714048,17661181235200,275714048,68990996480,271519744,68990996480,271519744,1157442765415387136,275648512,17661181169664,275648512,68990930944,271454208,68990930944,271454208,1157442765415256064,275517440,17661181038592,275517440,68990799872,271323136,68990799872,271323136,1157442765415256064,275517440,17661181038592,275517440,68990799872,271323136,68990799872,271323136,1157442765414993920,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,1157442765414993920,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,1157442765414993920,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,1157442765414993920,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,1157442765411258384,271519760,17661177040912,271519760,69003579408,284102672,69003579408,284102672,1157442765411192848,271454224,17661176975376,271454224,69003513872,284037136,69003513872,284037136,1157442765411061776,271323152,17661176844304,271323152,69003382800,283906064,69003382800,283906064,1157442765411061776,271323152,17661176844304,271323152,69003382800,283906064,69003382800,283906064,1157442765410799632,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,1157442765410799632,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,1157442765410799632,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,1157442765410799632,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,1157442765411258368,271519744,17661177040896,271519744,69003579392,284102656,69003579392,284102656,1157442765411192832,271454208,17661176975360,271454208,69003513856,284037120,69003513856,284037120,1157442765411061760,271323136,17661176844288,271323136,69003382784,283906048,69003382784,283906048,1157442765411061760,271323136,17661176844288,271323136,69003382784,283906048,69003382784,283906048,1157442765410799616,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,1157442765410799616,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,1157442765410799616,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,1157442765410799616,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,4521260816994320,284102672,17661189623824,284102672,68990996496,271519760,68990996496,271519760,4521260816928784,284037136,17661189558288,284037136,68990930960,271454224,68990930960,271454224,4521260816797712,283906064,17661189427216,283906064,68990799888,271323152,68990799888,271323152,4521260816797712,283906064,17661189427216,283906064,68990799888,271323152,68990799888,271323152,4521260816535568,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,4521260816535568,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,4521260816535568,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,4521260816535568,283643920,17661189165072,283643920,68990537744,271061008,68990537744,271061008,4521260816994304,284102656,17661189623808,284102656,68990996480,271519744,68990996480,271519744,4521260816928768,284037120,17661189558272,284037120,68990930944,271454208,68990930944,271454208,4521260816797696,283906048,17661189427200,283906048,68990799872,271323136,68990799872,271323136,4521260816797696,283906048,17661189427200,283906048,68990799872,271323136,68990799872,271323136,4521260816535552,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,4521260816535552,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,4521260816535552,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,4521260816535552,283643904,17661189165056,283643904,68990537728,271060992,68990537728,271060992,4521260804411408,271519760,17661177040912,271519760,68995190800,275714064,68995190800,275714064,4521260804345872,271454224,17661176975376,271454224,68995125264,275648528,68995125264,275648528,4521260804214800,271323152,17661176844304,271323152,68994994192,275517456,68994994192,275517456,4521260804214800,271323152,17661176844304,271323152,68994994192,275517456,68994994192,275517456,4521260803952656,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,4521260803952656,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,4521260803952656,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,4521260803952656,271061008,17661176582160,271061008,68994732048,275255312,68994732048,275255312,4521260804411392,271519744,17661177040896,271519744,68995190784,275714048,68995190784,275714048,4521260804345856,271454208,17661176975360,271454208,68995125248,275648512,68995125248,275648512,4521260804214784,271323136,17661176844288,271323136,68994994176,275517440,68994994176,275517440,4521260804214784,271323136,17661176844288,271323136,68994994176,275517440,68994994176,275517440,4521260803952640,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,4521260803952640,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,4521260803952640,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,4521260803952640,271060992,17661176582144,271060992,68994732032,275255296,68994732032,275255296,4521260808605712,275714064,17661181235216,275714064,68990996496,271519760,68990996496,271519760,4521260808540176,275648528,17661181169680,275648528,68990930960,271454224,68990930960,271454224,4521260808409104,275517456,17661181038608,275517456,68990799888,271323152,68990799888,271323152,4521260808409104,275517456,17661181038608,275517456,68990799888,271323152,68990799888,271323152,4521260808146960,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,4521260808146960,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,4521260808146960,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,4521260808146960,275255312,17661180776464,275255312,68990537744,271061008,68990537744,271061008,4521260808605696,275714048,17661181235200,275714048,68990996480,271519744,68990996480,271519744,4521260808540160,275648512,17661181169664,275648512,68990930944,271454208,68990930944,271454208,4521260808409088,275517440,17661181038592,275517440,68990799872,271323136,68990799872,271323136,4521260808409088,275517440,17661181038592,275517440,68990799872,271323136,68990799872,271323136,4521260808146944,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,4521260808146944,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,4521260808146944,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,4521260808146944,275255296,17661180776448,275255296,68990537728,271060992,68990537728,271060992,4521260804411408,271519760,17661177040912,271519760,69003579408,284102672,69003579408,284102672,4521260804345872,271454224,17661176975376,271454224,69003513872,284037136,69003513872,284037136,4521260804214800,271323152,17661176844304,271323152,69003382800,283906064,69003382800,283906064,4521260804214800,271323152,17661176844304,271323152,69003382800,283906064,69003382800,283906064,4521260803952656,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,4521260803952656,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,4521260803952656,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,4521260803952656,271061008,17661176582160,271061008,69003120656,283643920,69003120656,283643920,4521260804411392,271519744,17661177040896,271519744,69003579392,284102656,69003579392,284102656,4521260804345856,271454208,17661176975360,271454208,69003513856,284037120,69003513856,284037120,4521260804214784,271323136,17661176844288,271323136,69003382784,283906048,69003382784,283906048,4521260804214784,271323136,17661176844288,271323136,69003382784,283906048,69003382784,283906048,4521260803952640,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,4521260803952640,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,4521260803952640,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,4521260803952640,271060992,17661176582144,271060992,69003120640,283643904,69003120640,283643904,0],[2314885530830970912,2314885530822582304,137990447136,137982058528,2314885530830970880,2314885530822582272,137990447104,137982058496,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,9042521617276960,9042521608888352,137990447136,137982058528,9042521617276928,9042521608888320,137990447104,137982058496,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,2314885530830905376,2314885530822516768,137990381600,137981992992,2314885530830905344,2314885530822516736,137990381568,137981992960,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,9042521617211424,9042521608822816,137990381600,137981992992,9042521617211392,9042521608822784,137990381568,137981992960,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,2314885530830774304,2314885530822385696,137990250528,137981861920,2314885530830774272,2314885530822385664,137990250496,137981861888,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551493664,543105056,551493664,543105056,551493632,543105024,551493632,543105024,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521617080352,9042521608691744,137990250528,137981861920,9042521617080320,9042521608691712,137990250496,137981861888,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551493664,543105056,551493664,543105056,551493632,543105024,551493632,543105024,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530830774304,2314885530822385696,137990250528,137981861920,2314885530830774272,2314885530822385664,137990250496,137981861888,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551428128,543039520,551428128,543039520,551428096,543039488,551428096,543039488,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521617080352,9042521608691744,137990250528,137981861920,9042521617080320,9042521608691712,137990250496,137981861888,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551428128,543039520,551428128,543039520,551428096,543039488,551428096,543039488,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530830512160,2314885530822123552,137989988384,137981599776,2314885530830512128,2314885530822123520,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521616818208,9042521608429600,137989988384,137981599776,9042521616818176,9042521608429568,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530830512160,2314885530822123552,137989988384,137981599776,2314885530830512128,2314885530822123520,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521616818208,9042521608429600,137989988384,137981599776,9042521616818176,9042521608429568,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530830512160,2314885530822123552,137989988384,137981599776,2314885530830512128,2314885530822123520,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521616818208,9042521608429600,137989988384,137981599776,9042521616818176,9042521608429568,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530830512160,2314885530822123552,137989988384,137981599776,2314885530830512128,2314885530822123520,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521616818208,9042521608429600,137989988384,137981599776,9042521616818176,9042521608429568,137989988352,137981599744,35322361552928,35322353164320,137989464096,137981075488,35322361552896,35322353164288,137989464064,137981075456,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362535968,35322354147360,137990447136,137982058528,35322362535936,35322354147328,137990447104,137982058496,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362535968,35322354147360,137990447136,137982058528,35322362535936,35322354147328,137990447104,137982058496,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362470432,35322354081824,137990381600,137981992992,35322362470400,35322354081792,137990381568,137981992960,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362470432,35322354081824,137990381600,137981992992,35322362470400,35322354081792,137990381568,137981992960,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362339360,35322353950752,137990250528,137981861920,35322362339328,35322353950720,137990250496,137981861888,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551493664,543105056,551493664,543105056,551493632,543105024,551493632,543105024,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362339360,35322353950752,137990250528,137981861920,35322362339328,35322353950720,137990250496,137981861888,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551493664,543105056,551493664,543105056,551493632,543105024,551493632,543105024,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362339360,35322353950752,137990250528,137981861920,35322362339328,35322353950720,137990250496,137981861888,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551428128,543039520,551428128,543039520,551428096,543039488,551428096,543039488,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362339360,35322353950752,137990250528,137981861920,35322362339328,35322353950720,137990250496,137981861888,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551428128,543039520,551428128,543039520,551428096,543039488,551428096,543039488,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551297056,542908448,551297056,542908448,551297024,542908416,551297024,542908416,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,2314885530829987872,2314885530821599264,137989464096,137981075488,2314885530829987840,2314885530821599232,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,9042521616293920,9042521607905312,137989464096,137981075488,9042521616293888,9042521607905280,137989464064,137981075456,35322362077216,35322353688608,137989988384,137981599776,35322362077184,35322353688576,137989988352,137981599744,550510624,542122016,550510624,542122016,550510592,542121984,550510592,542121984,551034912,542646304,551034912,542646304,551034880,542646272,551034880,542646272,0],[4629771061645230144,18085043215810624,1084244032,1086210112,275962150912,275964116992,1084243968,1086210048,1084244032,1085292608,70644708360256,70644706328640,1085292544,1084243968,275962150912,275964116992,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1085816896,275962150976,275963199552,1084243968,1085816832,70644706328576,70644707377152,4629771061644771392,18085043215810624,1084244032,1085816896,275962150912,275963723776,1084243968,1085816832,1086275648,1084244032,70644707901504,70644706328640,1084243968,1086210048,275962150912,275963723776,275964182592,275962150976,1086275648,1084244032,4629771061645230080,18085043215810560,1084243968,1086210048,1084244032,1085292608,275964182592,275962150976,1084243968,1085292544,70644708360192,70644706328576,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1085816896,1084244032,70644707377216,70644706328640,1084243968,1085816832,275962150912,275963199488,275963723840,275962150976,1085816896,1084244032,4629771061644771328,18085043215810560,1084243968,1085816832,1086275648,1084244032,275963723840,275962150976,1086275584,1084243968,70644707901440,70644706328576,4629771061644247104,18085043215810624,1086275648,1084244032,275964182528,275962150912,1086275584,1084243968,1085292608,1084244032,70644707377216,70644706328640,1084243968,1085292544,275964182528,275962150912,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1085816896,1084244032,275963199552,275962150976,1085816832,1084243968,70644707377152,70644706328576,4629771061643198528,18085043217383488,1085816896,1084244032,275963723776,275962150912,1085816832,1084243968,1085292608,1084244032,70644706328640,70644707901504,1086275584,1084243968,275963723776,275962150912,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1086275584,1084243968,1085292608,1084244032,275963199552,275962150976,1085292544,1084243968,70644707377152,70644706328576,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1085816896,70644706328640,70644707377216,1085816832,1084243968,275963199488,275962150912,275962150976,275963723840,1084244032,1085816896,4629771061643198464,18085043217383424,1085816832,1084243968,1085292608,1084244032,275962150976,275963723840,1085292544,1084243968,70644706328576,70644707901440,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1085292608,70644706328640,70644707377216,1085292544,1084243968,275963199488,275962150912,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1085816896,275962150976,275963199552,1084243968,1085816832,70644706328576,70644707377152,4629771061645033536,18085043215810624,1084244032,1085816896,275962150912,275963723776,1084243968,1085816832,1084244032,1085292608,70644708163648,70644706328640,1085292544,1084243968,275962150912,275963723776,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1085292608,275962150976,275963199552,1084243968,1085292544,70644706328576,70644707377152,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1086079040,1084244032,70644707377216,70644706328640,1084243968,1085816832,275962150912,275963199488,275963985984,275962150976,1086079040,1084244032,4629771061645033472,18085043215810560,1084243968,1085816832,1084244032,1085292608,275963985984,275962150976,1084243968,1085292544,70644708163584,70644706328576,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1085292608,1084244032,70644707377216,70644706328640,1084243968,1085292544,275962150912,275963199488,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1086079040,1084244032,275963199552,275962150976,1086078976,1084243968,70644707377152,70644706328576,4629771061643198528,18085043217645632,1086079040,1084244032,275963985920,275962150912,1086078976,1084243968,1085292608,1084244032,70644706328640,70644708163648,1084243968,1085292544,275963985920,275962150912,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1085292608,1084244032,275963199552,275962150976,1085292544,1084243968,70644707377152,70644706328576,4629771061643198528,18085043217383488,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1086079040,70644706328640,70644707901504,1086078976,1084243968,275963199488,275962150912,275962150976,275963985984,1084244032,1086079040,4629771061643198464,18085043217645568,1086078976,1084243968,1085292608,1084244032,275962150976,275963985984,1085292544,1084243968,70644706328576,70644708163584,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1085816896,70644706328640,70644707377216,1085292544,1084243968,275963199488,275962150912,275962150976,275963723840,1084244032,1085816896,4629771061643198464,18085043217383424,1085292544,1084243968,1084244032,1086079040,275962150976,275963723840,1084243968,1086078976,70644706328576,70644707901440,4629771061645164608,18085043215810624,1084244032,1086079040,275962150912,275963985920,1084243968,1086078976,1084244032,1085292608,70644708294720,70644706328640,1085292544,1084243968,275962150912,275963985920,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1085816896,275962150976,275963199552,1084243968,1085816832,70644706328576,70644707377152,4629771061644771392,18085043215810624,1084244032,1085816896,275962150912,275963723776,1084243968,1085816832,1086210112,1084244032,70644707901504,70644706328640,1084243968,1086078976,275962150912,275963723776,275964117056,275962150976,1086210112,1084244032,4629771061645164544,18085043215810560,1084243968,1086078976,1084244032,1085292608,275964117056,275962150976,1084243968,1085292544,70644708294656,70644706328576,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1085816896,1084244032,70644707377216,70644706328640,1084243968,1085816832,275962150912,275963199488,275963723840,275962150976,1085816896,1084244032,4629771061644771328,18085043215810560,1084243968,1085816832,1086210112,1084244032,275963723840,275962150976,1086210048,1084243968,70644707901440,70644706328576,4629771061643198528,18085043217842240,1086210112,1084244032,275964116992,275962150912,1086210048,1084243968,1085292608,1084244032,70644706328640,70644708360256,1084243968,1085292544,275964116992,275962150912,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1085816896,1084244032,275963199552,275962150976,1085816832,1084243968,70644707377152,70644706328576,4629771061643198528,18085043217383488,1085816896,1084244032,275963723776,275962150912,1085816832,1084243968,1084244032,1086275648,70644706328640,70644707901504,1086210048,1084243968,275963723776,275962150912,275962150976,275964182592,1084244032,1086275648,4629771061643198464,18085043217842176,1086210048,1084243968,1085292608,1084244032,275962150976,275964182592,1085292544,1084243968,70644706328576,70644708360192,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1085816896,70644706328640,70644707377216,1085816832,1084243968,275963199488,275962150912,275962150976,275963723840,1084244032,1085816896,4629771061643198464,18085043217383424,1085816832,1084243968,1084244032,1086275648,275962150976,275963723840,1084243968,1086275584,70644706328576,70644707901440,4629771061643198528,18085043216859200,1084244032,1086275648,275962150912,275964182528,1084243968,1086275584,1084244032,1085292608,70644706328640,70644707377216,1085292544,1084243968,275962150912,275964182528,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1085816896,275962150976,275963199552,1084243968,1085816832,70644706328576,70644707377152,4629771061644771392,18085043215810624,1084244032,1085816896,275962150912,275963723776,1084243968,1085816832,1084244032,1085292608,70644707901504,70644706328640,1084243968,1086275584,275962150912,275963723776,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1084243968,1086275584,1084244032,1085292608,275962150976,275963199552,1084243968,1085292544,70644706328576,70644707377152,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1085816896,1084244032,70644707377216,70644706328640,1084243968,1085816832,275962150912,275963199488,275963723840,275962150976,1085816896,1084244032,4629771061644771328,18085043215810560,1084243968,1085816832,1084244032,1085292608,275963723840,275962150976,1084243968,1085292544,70644707901440,70644706328576,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1085292608,1084244032,70644707377216,70644706328640,1084243968,1085292544,275962150912,275963199488,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1085816896,1084244032,275963199552,275962150976,1085816832,1084243968,70644707377152,70644706328576,4629771061643198528,18085043217645632,1085816896,1084244032,275963723776,275962150912,1085816832,1084243968,1085292608,1084244032,70644706328640,70644708163648,1084243968,1085292544,275963723776,275962150912,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1085292608,1084244032,275963199552,275962150976,1085292544,1084243968,70644707377152,70644706328576,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1086079040,70644706328640,70644707377216,1085816832,1084243968,275963199488,275962150912,275962150976,275963985984,1084244032,1086079040,4629771061643198464,18085043217645568,1085816832,1084243968,1085292608,1084244032,275962150976,275963985984,1085292544,1084243968,70644706328576,70644708163584,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1085292608,70644706328640,70644707377216,1085292544,1084243968,275963199488,275962150912,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1086079040,275962150976,275963199552,1084243968,1086078976,70644706328576,70644707377152,4629771061645033536,18085043215810624,1084244032,1086079040,275962150912,275963985920,1084243968,1086078976,1084244032,1085292608,70644708163648,70644706328640,1085292544,1084243968,275962150912,275963985920,275962150976,275963199552,1084244032,1085292608,4629771061643198464,18085043216859136,1085292544,1084243968,1084244032,1085292608,275962150976,275963199552,1084243968,1085292544,70644706328576,70644707377152,4629771061644771392,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1086079040,1084244032,70644707901504,70644706328640,1084243968,1086078976,275962150912,275963199488,275963985984,275962150976,1086079040,1084244032,4629771061645033472,18085043215810560,1084243968,1086078976,1084244032,1085292608,275963985984,275962150976,1084243968,1085292544,70644708163584,70644706328576,4629771061644247104,18085043215810624,1084244032,1085292608,275962150912,275963199488,1084243968,1085292544,1085816896,1084244032,70644707377216,70644706328640,1084243968,1085292544,275962150912,275963199488,275963723840,275962150976,1085816896,1084244032,4629771061644771328,18085043215810560,1084243968,1085292544,1086079040,1084244032,275963723840,275962150976,1086078976,1084243968,70644707901440,70644706328576,4629771061643198528,18085043217776704,1086079040,1084244032,275963985920,275962150912,1086078976,1084243968,1085292608,1084244032,70644706328640,70644708294720,1084243968,1085292544,275963985920,275962150912,275963199552,275962150976,1085292608,1084244032,4629771061644247040,18085043215810560,1084243968,1085292544,1085816896,1084244032,275963199552,275962150976,1085816832,1084243968,70644707377152,70644706328576,4629771061643198528,18085043217383488,1085816896,1084244032,275963723776,275962150912,1085816832,1084243968,1084244032,1086210112,70644706328640,70644707901504,1086078976,1084243968,275963723776,275962150912,275962150976,275964117056,1084244032,1086210112,4629771061643198464,18085043217776640,1086078976,1084243968,1085292608,1084244032,275962150976,275964117056,1085292544,1084243968,70644706328576,70644708294656,4629771061643198528,18085043216859200,1085292608,1084244032,275963199488,275962150912,1085292544,1084243968,1084244032,1085816896,70644706328640,70644707377216,1085816832,1084243968,275963199488,275962150912,275962150976,275963723840,1084244032,1085816896,4629771061643198464,18085043217383424,1085816832,1084243968,1084244032,1086210112,275962150976,275963723840,1084243968,1086210048,70644706328576,70644707901440,0],[9259542123273748608,2151710720,141289400008832,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273748480,2155839616,141289400008704,2155839616,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155839488,551907524736,2155839488,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273683072,2151710720,141289399943296,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273682944,2155774080,141289399943168,2155774080,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155773952,551907524736,2155773952,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273552000,2151710720,141289399812224,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273551872,2155643008,141289399812096,2155643008,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155642880,551907524736,2155642880,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273552000,2151710720,141289399812224,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273551872,2155643008,141289399812096,2155643008,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155642880,551907524736,2155642880,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273289856,2151710720,141289399550080,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273289728,2155380864,141289399549952,2155380864,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155380736,551907524736,2155380736,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273289856,2151710720,141289399550080,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273289728,2155380864,141289399549952,2155380864,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155380736,551907524736,2155380736,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273289856,2151710720,141289399550080,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273289728,2155380864,141289399549952,2155380864,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155380736,551907524736,2155380736,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123273289856,2151710720,141289399550080,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123273289728,2155380864,141289399549952,2155380864,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2155380736,551907524736,2155380736,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2151710720,141289399025792,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911653504,2154856448,551911653504,2154856448,551907524736,2151710720,551907524736,2151710720,551911653376,2155839616,551911653376,2155839616,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155839488,141289399025792,2155839488,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911587968,2154856448,551911587968,2154856448,551907524736,2151710720,551907524736,2151710720,551911587840,2155774080,551911587840,2155774080,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155773952,141289399025792,2155773952,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911456896,2154856448,551911456896,2154856448,551907524736,2151710720,551907524736,2151710720,551911456768,2155643008,551911456768,2155643008,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155642880,141289399025792,2155642880,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911456896,2154856448,551911456896,2154856448,551907524736,2151710720,551907524736,2151710720,551911456768,2155643008,551911456768,2155643008,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155642880,141289399025792,2155642880,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911194752,2154856448,551911194752,2154856448,551907524736,2151710720,551907524736,2151710720,551911194624,2155380864,551911194624,2155380864,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155380736,141289399025792,2155380736,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911194752,2154856448,551911194752,2154856448,551907524736,2151710720,551907524736,2151710720,551911194624,2155380864,551911194624,2155380864,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155380736,141289399025792,2155380736,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911194752,2154856448,551911194752,2154856448,551907524736,2151710720,551907524736,2151710720,551911194624,2155380864,551911194624,2155380864,551907524608,2151710848,551907524608,2151710848,9259542123272765568,2155380736,141289399025792,2155380736,36170086414844032,2151710720,141289395880064,2151710720,9259542123272765440,2154856576,141289399025664,2154856576,36170086414843904,2151710848,141289395879936,2151710848,551911194752,2154856448,551911194752,2154856448,551907524736,2151710720,551907524736,2151710720,551911194624,2155380864,551911194624,2155380864,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2155380736,141289397977216,2155380736,36170086414844032,2151710720,141289395880064,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086414843904,2151710848,141289395879936,2151710848,551910670464,2153807872,551910670464,2153807872,551907524736,2151710720,551907524736,2151710720,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086414844032,2151710720,141289395880064,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086414843904,2151710848,141289395879936,2151710848,551910670464,2153807872,551910670464,2153807872,551907524736,2151710720,551907524736,2151710720,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418972800,2151710720,141289400008832,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418972672,2155839616,141289400008704,2155839616,551910670464,2153807872,551910670464,2153807872,551907524736,2155839488,551907524736,2155839488,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418907264,2151710720,141289399943296,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418907136,2155774080,141289399943168,2155774080,551910670464,2153807872,551910670464,2153807872,551907524736,2155773952,551907524736,2155773952,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418776192,2151710720,141289399812224,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418776064,2155643008,141289399812096,2155643008,551910670464,2153807872,551910670464,2153807872,551907524736,2155642880,551907524736,2155642880,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418776192,2151710720,141289399812224,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418776064,2155643008,141289399812096,2155643008,551910670464,2153807872,551910670464,2153807872,551907524736,2155642880,551907524736,2155642880,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418514048,2151710720,141289399550080,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418513920,2155380864,141289399549952,2155380864,551910670464,2153807872,551910670464,2153807872,551907524736,2155380736,551907524736,2155380736,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418514048,2151710720,141289399550080,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418513920,2155380864,141289399549952,2155380864,551910670464,2153807872,551910670464,2153807872,551907524736,2155380736,551907524736,2155380736,551910670336,2154856576,551910670336,2154856576,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2154856448,141289397977216,2154856448,36170086418514048,2151710720,141289399550080,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418513920,2155380864,141289399549952,2155380864,551909621888,2153807872,551909621888,2153807872,551907524736,2155380736,551907524736,2155380736,551909621760,2153808000,551909621760,2153808000,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2153807872,141289397977216,2153807872,36170086418514048,2151710720,141289399550080,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086418513920,2155380864,141289399549952,2155380864,551909621888,2153807872,551909621888,2153807872,551907524736,2155380736,551907524736,2155380736,551909621760,2153808000,551909621760,2153808000,551907524608,2151710848,551907524608,2151710848,9259542123271716992,2153807872,141289397977216,2153807872,36170086417989760,2151710720,141289399025792,2151710720,9259542123271716864,2153808000,141289397977088,2153808000,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2153807872,551909621888,2153807872,551911653504,2154856448,551911653504,2154856448,551909621760,2153808000,551909621760,2153808000,551911653376,2155839616,551911653376,2155839616,9259542123271716992,2153807872,141289397977216,2153807872,36170086417989760,2155839488,141289399025792,2155839488,9259542123271716864,2153808000,141289397977088,2153808000,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2153807872,551909621888,2153807872,551911587968,2154856448,551911587968,2154856448,551909621760,2153808000,551909621760,2153808000,551911587840,2155774080,551911587840,2155774080,9259542123271716992,2153807872,141289397977216,2153807872,36170086417989760,2155773952,141289399025792,2155773952,9259542123271716864,2153808000,141289397977088,2153808000,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2153807872,551909621888,2153807872,551911456896,2154856448,551911456896,2154856448,551909621760,2153808000,551909621760,2153808000,551911456768,2155643008,551911456768,2155643008,9259542123271716992,2153807872,141289397977216,2153807872,36170086417989760,2155642880,141289399025792,2155642880,9259542123271716864,2153808000,141289397977088,2153808000,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2153807872,551909621888,2153807872,551911456896,2154856448,551911456896,2154856448,551909621760,2153808000,551909621760,2153808000,551911456768,2155643008,551911456768,2155643008,9259542123271716992,2153807872,141289397977216,2153807872,36170086417989760,2155642880,141289399025792,2155642880,9259542123271716864,2153808000,141289397977088,2153808000,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2153807872,551909621888,2153807872,551911194752,2154856448,551911194752,2154856448,551909621760,2153808000,551909621760,2153808000,551911194624,2155380864,551911194624,2155380864,9259542123271716992,2153807872,141289397977216,2153807872,36170086417989760,2155380736,141289399025792,2155380736,9259542123271716864,2153808000,141289397977088,2153808000,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2153807872,551909621888,2153807872,551911194752,2154856448,551911194752,2154856448,551909621760,2153808000,551909621760,2153808000,551911194624,2155380864,551911194624,2155380864,9259542123269619840,2153807872,141289395880064,2153807872,36170086417989760,2155380736,141289399025792,2155380736,9259542123269619712,2151710848,141289395879936,2151710848,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2151710720,551909621888,2151710720,551911194752,2154856448,551911194752,2154856448,551909621760,2153808000,551909621760,2153808000,551911194624,2155380864,551911194624,2155380864,9259542123269619840,2153807872,141289395880064,2153807872,36170086417989760,2155380736,141289399025792,2155380736,9259542123269619712,2151710848,141289395879936,2151710848,36170086417989632,2154856576,141289399025664,2154856576,551909621888,2151710720,551909621888,2151710720,551911194752,2154856448,551911194752,2154856448,551909621760,2153808000,551909621760,2153808000,551911194624,2155380864,551911194624,2155380864,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2155380736,141289397977216,2155380736,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551909621888,2151710720,551909621888,2151710720,551910670464,2153807872,551910670464,2153807872,551909621760,2153808000,551909621760,2153808000,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551909621888,2151710720,551909621888,2151710720,551910670464,2153807872,551910670464,2153807872,551909621760,2153808000,551909621760,2153808000,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551909621888,2151710720,551909621888,2151710720,551910670464,2153807872,551910670464,2153807872,551909621760,2153808000,551909621760,2153808000,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551909621888,2151710720,551909621888,2151710720,551910670464,2153807872,551910670464,2153807872,551909621760,2153808000,551909621760,2153808000,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551909621888,2151710720,551909621888,2151710720,551910670464,2153807872,551910670464,2153807872,551909621760,2153808000,551909621760,2153808000,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551909621888,2151710720,551909621888,2151710720,551910670464,2153807872,551910670464,2153807872,551909621760,2153808000,551909621760,2153808000,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2153807872,141289395880064,2153807872,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551910670464,2153807872,551910670464,2153807872,551907524608,2151710848,551907524608,2151710848,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551910670464,2153807872,551910670464,2153807872,551907524608,2151710848,551907524608,2151710848,551910670336,2154856576,551910670336,2154856576,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2154856448,141289397977216,2154856448,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086416941184,2153807872,141289397977216,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086416941056,2153808000,141289397977088,2153808000,551907524736,2151710720,551907524736,2151710720,551909621888,2153807872,551909621888,2153807872,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551909621888,2151710720,551909621888,2151710720,551907524608,2151710848,551907524608,2151710848,551909621760,2153808000,551909621760,2153808000,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2153807872,141289395880064,2153807872,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,9259542123269619840,2151710720,141289395880064,2151710720,36170086414844032,2151710720,141289395880064,2151710720,9259542123269619712,2151710848,141289395879936,2151710848,36170086414843904,2151710848,141289395879936,2151710848,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524736,2151710720,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,551907524608,2151710848,0],[72340177082712321,72340172921962752,1108068073729,1103907324160,6408962048,72340172921962496,6408962048,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282578884034817,8556445952,1103907324161,8556445952,72340172921962496,282580897300480,1103907323904,1105920589824,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,4529914113,4395696384,4529914113,4395696384,4529913856,4395696128,4529913856,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173056180480,4395696385,1104041541888,4395696128,72340173056180224,4395696128,1104041541632,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,282579286688001,282578884034816,1104309977345,1103907324160,72340173324615680,282578884034560,1104309977088,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4395696385,4798349568,4395696385,4798349568,282578884034560,4798349312,1103907323904,4798349312,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4529914113,72340172921962752,4529914113,1103907324160,4529913856,4395696128,4529913856,4395696128,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579018252544,1103907324161,1104041541888,72340172921962496,282579018252288,1103907323904,1104041541632,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,5335220481,4395696384,5335220481,4395696384,282579823558656,4395696128,1104846848000,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173861486848,4395696385,1104846848256,4395696128,5335220224,4395696128,5335220224,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173056180481,282578884034816,1104041541889,1103907324160,72340173056180224,282578884034560,1104041541632,1103907323904,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,4395696385,4529914112,4395696385,4529914112,282578884034560,4529913856,1103907323904,4529913856,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4798349569,72340172921962752,4798349569,1103907324160,4798349312,4395696128,4798349312,4395696128,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579286688000,1103907324161,1104309977344,72340172921962496,72340173324615680,1103907323904,1104309977088,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,282579018252545,4395696384,1104041541889,4395696384,282579018252288,4395696128,1104041541632,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,4529914112,4395696385,4529914112,4395696128,4529913856,4395696128,4529913856,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340174935228673,282578884034816,1105920590081,1103907324160,72340177082712064,72340172921962496,1108068073472,1103907323904,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,6408962304,1103907324161,6408962304,282578884034560,8556445696,1103907323904,8556445696,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4529914113,4395696384,4529914113,4395696384,4529913856,4395696128,4529913856,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,282579018252544,1103907324161,1104041541888,4395696128,72340173056180224,4395696128,1104041541632,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579286688001,4395696384,1104309977345,4395696384,282579286687744,282578884034560,1104309977088,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4798349568,4395696385,4798349568,4395696128,4798349312,4395696128,4798349312,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340173056180481,72340172921962752,1104041541889,1103907324160,4529913856,72340172921962496,4529913856,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4529914112,1103907324161,4529914112,72340172921962496,282579018252288,1103907323904,1104041541632,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,5335220481,4395696384,5335220481,4395696384,5335220224,4395696128,5335220224,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,72340173861486848,1103907324161,1104846848256,4395696128,72340173861486592,4395696128,1104846848000,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282579018252545,4395696384,1104041541889,4395696384,72340173056180224,282578884034560,1104041541632,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4529914112,4395696385,4529914112,4395696128,4529913856,4395696128,4529913856,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4798349569,72340172921962752,4798349569,1103907324160,4798349312,72340172921962496,4798349312,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282578884034817,282579286688000,1103907324161,1104309977344,72340172921962496,282579286687744,1103907323904,1104309977088,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,4529914113,4395696384,4529914113,4395696384,282579018252288,4395696128,1104041541632,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173056180480,4395696385,1104041541888,4395696128,4529913856,4395696128,4529913856,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,282583044784385,282578884034816,1108068073729,1103907324160,72340174935228416,282578884034560,1105920589824,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4395696385,8556445952,4395696385,8556445952,282578884034560,6408962048,1103907323904,6408962048,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4529914113,72340172921962752,4529914113,1103907324160,4529913856,4395696128,4529913856,4395696128,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579018252544,1103907324161,1104041541888,72340172921962496,282579018252288,1103907323904,1104041541632,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,4798349569,4395696384,4798349569,4395696384,282579286687744,4395696128,1104309977088,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173324615936,4395696385,1104309977344,4395696128,4798349312,4395696128,4798349312,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173056180481,282578884034816,1104041541889,1103907324160,72340173056180224,72340172921962496,1104041541632,1103907323904,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4529914112,1103907324161,4529914112,282578884034560,4529913856,1103907323904,4529913856,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,5335220481,4395696384,5335220481,4395696384,5335220224,4395696128,5335220224,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579823558912,1103907324161,1104846848256,72340172921962496,72340173861486592,1103907323904,1104846848000,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579018252545,4395696384,1104041541889,4395696384,282579018252288,4395696128,1104041541632,4395696128,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4529914112,4395696385,4529914112,4395696128,4529913856,4395696128,4529913856,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340173324615937,282578884034816,1104309977345,1103907324160,4798349312,72340172921962496,4798349312,1103907323904,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4798349568,1103907324161,4798349568,282578884034560,282579286687744,1103907323904,1104309977088,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4529914113,4395696384,4529914113,4395696384,4529913856,4395696128,4529913856,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,72340173056180480,1103907324161,1104041541888,4395696128,72340173056180224,4395696128,1104041541632,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282580897300737,4395696384,1105920590081,4395696384,282583044784128,282578884034560,1108068073472,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,6408962304,4395696385,6408962304,4395696128,8556445696,4395696128,8556445696,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340173056180481,72340172921962752,1104041541889,1103907324160,4529913856,72340172921962496,4529913856,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282578884034817,4529914112,1103907324161,4529914112,72340172921962496,282579018252288,1103907323904,1104041541632,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,4798349569,4395696384,4798349569,4395696384,4798349312,4395696128,4798349312,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173324615936,4395696385,1104309977344,4395696128,72340173324615680,4395696128,1104309977088,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282579018252545,282578884034816,1104041541889,1103907324160,72340173056180224,282578884034560,1104041541632,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4529914112,4395696385,4529914112,282578884034560,4529913856,1103907323904,4529913856,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,5335220481,72340172921962752,5335220481,1103907324160,5335220224,4395696128,5335220224,4395696128,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,282578884034817,282579823558912,1103907324161,1104846848256,72340172921962496,282579823558656,1103907323904,1104846848000,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4529914113,4395696384,4529914113,4395696384,282579018252288,4395696128,1104041541632,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173056180480,4395696385,1104041541888,4395696128,4529913856,4395696128,4529913856,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173324615937,282578884034816,1104309977345,1103907324160,72340173324615680,282578884034560,1104309977088,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4395696385,4798349568,4395696385,4798349568,282578884034560,4798349312,1103907323904,4798349312,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4529914113,72340172921962752,4529914113,1103907324160,4529913856,4395696128,4529913856,4395696128,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579018252544,1103907324161,1104041541888,72340172921962496,72340173056180224,1103907323904,1104041541632,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,8556445953,4395696384,8556445953,4395696384,282580897300480,4395696128,1105920589824,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340177082712320,4395696385,1108068073728,4395696128,6408962048,4395696128,6408962048,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173056180481,282578884034816,1104041541889,1103907324160,72340173056180224,72340172921962496,1104041541632,1103907323904,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4529914112,1103907324161,4529914112,282578884034560,4529913856,1103907323904,4529913856,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4798349569,4395696384,4798349569,4395696384,4798349312,4395696128,4798349312,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,282579286688000,1103907324161,1104309977344,4395696128,72340173324615680,4395696128,1104309977088,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579018252545,4395696384,1104041541889,4395696384,282579018252288,282578884034560,1104041541632,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4529914112,4395696385,4529914112,4395696128,4529913856,4395696128,4529913856,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340173861486849,72340172921962752,1104846848257,1103907324160,5335220224,72340172921962496,5335220224,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,5335220480,1103907324161,5335220480,282578884034560,282579823558656,1103907323904,1104846848000,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4529914113,4395696384,4529914113,4395696384,4529913856,4395696128,4529913856,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,72340173056180480,1103907324161,1104041541888,4395696128,72340173056180224,4395696128,1104041541632,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282579286688001,4395696384,1104309977345,4395696384,72340173324615680,282578884034560,1104309977088,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4798349568,4395696385,4798349568,4395696128,4798349312,4395696128,4798349312,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,4529914113,72340172921962752,4529914113,1103907324160,4529913856,72340172921962496,4529913856,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282578884034817,282579018252544,1103907324161,1104041541888,72340172921962496,282579018252288,1103907323904,1104041541632,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,6408962305,4395696384,6408962305,4395696384,8556445696,4395696128,8556445696,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340174935228672,4395696385,1105920590080,4395696128,72340177082712064,4395696128,1108068073472,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,282579018252545,282578884034816,1104041541889,1103907324160,72340173056180224,282578884034560,1104041541632,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4395696385,4529914112,4395696385,4529914112,282578884034560,4529913856,1103907323904,4529913856,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4798349569,72340172921962752,4798349569,1103907324160,4798349312,4395696128,4798349312,4395696128,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579286688000,1103907324161,1104309977344,72340172921962496,282579286687744,1103907323904,1104309977088,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4529914113,4395696384,4529914113,4395696384,282579018252288,4395696128,1104041541632,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173056180480,4395696385,1104041541888,4395696128,4529913856,4395696128,4529913856,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173861486849,282578884034816,1104846848257,1103907324160,72340173861486592,72340172921962496,1104846848000,1103907323904,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,4395696385,5335220480,4395696385,5335220480,282578884034560,5335220224,1103907323904,5335220224,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4529914113,72340172921962752,4529914113,1103907324160,4529913856,4395696128,4529913856,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579018252544,1103907324161,1104041541888,72340172921962496,72340173056180224,1103907323904,1104041541632,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579286688001,4395696384,1104309977345,4395696384,282579286687744,4395696128,1104309977088,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,4798349568,4395696385,4798349568,4395696128,4798349312,4395696128,4798349312,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173056180481,282578884034816,1104041541889,1103907324160,4529913856,72340172921962496,4529913856,1103907323904,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4529914112,1103907324161,4529914112,282578884034560,282579018252288,1103907323904,1104041541632,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,8556445953,4395696384,8556445953,4395696384,6408962048,4395696128,6408962048,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,282583044784384,1103907324161,1108068073728,4395696128,72340174935228416,4395696128,1105920589824,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579018252545,4395696384,1104041541889,4395696384,282579018252288,282578884034560,1104041541632,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4529914112,4395696385,4529914112,4395696128,4529913856,4395696128,4529913856,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340173324615937,72340172921962752,1104309977345,1103907324160,4798349312,72340172921962496,4798349312,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282578884034817,4798349568,1103907324161,4798349568,72340172921962496,282579286687744,1103907323904,1104309977088,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4529914113,4395696384,4529914113,4395696384,4529913856,4395696128,4529913856,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,4395696385,72340173056180480,4395696385,1104041541888,4395696128,72340173056180224,4395696128,1104041541632,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,72340172854853632,1103840215040,1103840215040,282579823558913,282578884034816,1104846848257,1103907324160,72340173861486592,282578884034560,1104846848000,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,5335220480,4395696385,5335220480,4395696128,5335220224,4395696128,5335220224,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4529914113,72340172921962752,4529914113,1103907324160,4529913856,72340172921962496,4529913856,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,282578884034817,282579018252544,1103907324161,1104041541888,72340172921962496,282579018252288,1103907323904,1104041541632,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4798349569,4395696384,4798349569,4395696384,282579286687744,4395696128,1104309977088,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173324615936,4395696385,1104309977344,4395696128,4798349312,4395696128,4798349312,72340172854853889,282578816925952,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173056180481,282578884034816,1104041541889,1103907324160,72340173056180224,282578884034560,1104041541632,1103907323904,282578816925953,4328587520,1103840215297,4328587520,282578816925696,282578816925696,1103840215040,1103840215040,4395696385,4529914112,4395696385,4529914112,282578884034560,4529913856,1103907323904,4529913856,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,6408962305,72340172921962752,6408962305,1103907324160,8556445696,4395696128,8556445696,4395696128,72340172854853889,72340172854853888,1103840215297,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282580897300736,1103907324161,1105920590080,72340172921962496,282583044784128,1103907323904,1108068073472,282578816925953,4328587520,1103840215297,4328587520,72340172854853632,282578816925696,1103840215040,1103840215040,4529914113,4395696384,4529914113,4395696384,282579018252288,4395696128,1104041541632,4395696128,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4395696385,72340173056180480,4395696385,1104041541888,4395696128,4529913856,4395696128,4529913856,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340173324615937,282578884034816,1104309977345,1103907324160,72340173324615680,72340172921962496,1104309977088,1103907323904,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4798349568,1103907324161,4798349568,282578884034560,4798349312,1103907323904,4798349312,4328587521,4328587520,4328587521,4328587520,4328587264,4328587264,4328587264,4328587264,4529914113,4395696384,4529914113,4395696384,4529913856,4395696128,4529913856,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,72340172854853632,4328587264,1103840215040,72340172921962753,282579018252544,1103907324161,1104041541888,4395696128,72340173056180224,4395696128,1104041541632,282578816925953,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579823558913,4395696384,1104846848257,4395696384,282579823558656,282578884034560,1104846848000,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,5335220480,4395696385,5335220480,4395696128,5335220224,4395696128,5335220224,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340173056180481,282578884034816,1104041541889,1103907324160,4529913856,72340172921962496,4529913856,1103907323904,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282578884034817,4529914112,1103907324161,4529914112,282578884034560,282579018252288,1103907323904,1104041541632,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4798349569,4395696384,4798349569,4395696384,4798349312,4395696128,4798349312,4395696128,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,72340172921962753,72340173324615936,1103907324161,1104309977344,4395696128,72340173324615680,4395696128,1104309977088,72340172854853889,282578816925952,1103840215297,1103840215296,72340172854853632,282578816925696,1103840215040,1103840215040,282579018252545,4395696384,1104041541889,4395696384,72340173056180224,282578884034560,1104041541632,1103907323904,4328587521,4328587520,4328587521,4328587520,282578816925696,4328587264,1103840215040,4328587264,4395696385,4529914112,4395696385,4529914112,4395696128,4529913856,4395696128,4529913856,4328587521,72340172854853888,4328587521,1103840215296,4328587264,4328587264,4328587264,4328587264,0],[144680349887234562,2211857957378,565157784846336,2207831425024,144680345726484994,2207697207810,565157650628608,2207697207296,144680345860702722,2207831425538,144680349887234560,2211857957376,144680345726484994,2207697207810,144680345726484992,2207697207808,144680346129138178,2208099860994,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680346129138176,2208099860992,144680345726484994,2207697207810,144680345726484992,2207697207808,144680346666009090,2208636731906,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680346666009088,2208636731904,144680345726484994,2207697207810,144680345726484992,2207697207808,144680346129138178,2208099860994,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680346129138176,2208099860992,144680345726484994,2207697207810,144680345726484992,2207697207808,144680347739750914,2209710473730,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680347739750912,2209710473728,144680345726484994,2207697207810,144680345726484992,2207697207808,144680346129138178,2208099860994,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680346129138176,2208099860992,144680345726484994,2207697207810,144680345726484992,2207697207808,144680346666009090,2208636731906,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680346666009088,2208636731904,144680345726484994,2207697207810,144680345726484992,2207697207808,144680346129138178,2208099860994,144680345860702720,2207831425536,144680345726484994,2207697207810,144680345726484992,2207697207808,144680345860702722,2207831425538,144680346129138176,2208099860992,144680345726484994,2207697207810,144680345726484992,2207697207808,12834701312,12834701312,144680345860702720,2207831425536,8673951744,8673951744,144680345726484992,2207697207808,8808169472,8808169472,12834701312,12834701312,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,9613475840,9613475840,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9613475840,9613475840,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,10687217664,10687217664,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,10687217664,10687217664,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,9613475840,9613475840,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9613475840,9613475840,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,565161811378690,2211857957378,8808169472,8808169472,565157650629122,2207697207810,8673951744,8673951744,565157784846850,2207831425538,565161811378688,2211857957376,565157650629122,2207697207810,565157650629120,2207697207808,565158053282306,2208099860994,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565158053282304,2208099860992,565157650629122,2207697207810,565157650629120,2207697207808,565158590153218,2208636731906,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565158590153216,2208636731904,565157650629122,2207697207810,565157650629120,2207697207808,565158053282306,2208099860994,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565158053282304,2208099860992,565157650629122,2207697207810,565157650629120,2207697207808,565159663895042,2209710473730,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565159663895040,2209710473728,565157650629122,2207697207810,565157650629120,2207697207808,565158053282306,2208099860994,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565158053282304,2208099860992,565157650629122,2207697207810,565157650629120,2207697207808,565158590153218,2208636731906,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565158590153216,2208636731904,565157650629122,2207697207810,565157650629120,2207697207808,565158053282306,2208099860994,565157784846848,2207831425536,565157650629122,2207697207810,565157650629120,2207697207808,565157784846850,2207831425538,565158053282304,2208099860992,565157650629122,2207697207810,565157650629120,2207697207808,12834701312,12834701312,565157784846848,2207831425536,8673951744,8673951744,565157650629120,2207697207808,8808169472,8808169472,12834701312,12834701312,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,9613475840,9613475840,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9613475840,9613475840,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,10687217664,10687217664,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,10687217664,10687217664,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,9613475840,9613475840,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9613475840,9613475840,8673951744,8673951744,8673951744,8673951744,9076604928,9076604928,8808169472,8808169472,8673951744,8673951744,8673951744,8673951744,8808169472,8808169472,9076604928,9076604928,8673951744,8673951744,8673951744,8673951744,12834701826,12834701826,8808169472,8808169472,8673952258,8673952258,8673951744,8673951744,8808169986,8808169986,12834701824,12834701824,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,9613476354,9613476354,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9613476352,9613476352,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,10687218178,10687218178,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,10687218176,10687218176,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,9613476354,9613476354,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9613476352,9613476352,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,144680349887234048,2211857956864,8808169984,8808169984,144680345726484480,2207697207296,8673952256,8673952256,144680345860702208,2207831425024,144680349887234048,2211857956864,144680345726484480,2207697207296,144680345726484480,2207697207296,144680346129137664,2208099860480,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680346129137664,2208099860480,144680345726484480,2207697207296,144680345726484480,2207697207296,144680346666008576,2208636731392,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680346666008576,2208636731392,144680345726484480,2207697207296,144680345726484480,2207697207296,144680346129137664,2208099860480,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680346129137664,2208099860480,144680345726484480,2207697207296,144680345726484480,2207697207296,144680347739750400,2209710473216,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680347739750400,2209710473216,144680345726484480,2207697207296,144680345726484480,2207697207296,144680346129137664,2208099860480,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680346129137664,2208099860480,144680345726484480,2207697207296,144680345726484480,2207697207296,144680346666008576,2208636731392,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680346666008576,2208636731392,144680345726484480,2207697207296,144680345726484480,2207697207296,144680346129137664,2208099860480,144680345860702208,2207831425024,144680345726484480,2207697207296,144680345726484480,2207697207296,144680345860702208,2207831425024,144680346129137664,2208099860480,144680345726484480,2207697207296,144680345726484480,2207697207296,12834701826,12834701826,144680345860702208,2207831425024,8673952258,8673952258,144680345726484480,2207697207296,8808169986,8808169986,12834701824,12834701824,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,9613476354,9613476354,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9613476352,9613476352,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,10687218178,10687218178,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,10687218176,10687218176,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,9613476354,9613476354,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9613476352,9613476352,8673952258,8673952258,8673952256,8673952256,9076605442,9076605442,8808169984,8808169984,8673952258,8673952258,8673952256,8673952256,8808169986,8808169986,9076605440,9076605440,8673952258,8673952258,8673952256,8673952256,565161811378176,2211857956864,8808169984,8808169984,565157650628608,2207697207296,8673952256,8673952256,565157784846336,2207831425024,565161811378176,2211857956864,565157650628608,2207697207296,565157650628608,2207697207296,565158053281792,2208099860480,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565158053281792,2208099860480,565157650628608,2207697207296,565157650628608,2207697207296,565158590152704,2208636731392,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565158590152704,2208636731392,565157650628608,2207697207296,565157650628608,2207697207296,565158053281792,2208099860480,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565158053281792,2208099860480,565157650628608,2207697207296,565157650628608,2207697207296,565159663894528,2209710473216,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565159663894528,2209710473216,565157650628608,2207697207296,565157650628608,2207697207296,565158053281792,2208099860480,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565158053281792,2208099860480,565157650628608,2207697207296,565157650628608,2207697207296,565158590152704,2208636731392,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565158590152704,2208636731392,565157650628608,2207697207296,565157650628608,2207697207296,565158053281792,2208099860480,565157784846336,2207831425024,565157650628608,2207697207296,565157650628608,2207697207296,565157784846336,2207831425024,565158053281792,2208099860480,565157650628608,2207697207296,565157650628608,2207697207296,0],[289360695496279044,4415394415616,21391213572,17347904512,1130315318034432,289360695496279040,17364680704,21391213568,4417290241028,1130315318034432,19243729924,17364680704,4415411191808,4417290241024,17364680704,19243729920,289360695479501828,4415411191808,21374436356,17364680704,1130315301257216,289360695479501824,17347903488,21374436352,4417273463812,1130315301257216,19226952708,17347903488,4415394414592,4417273463808,17347903488,19226952704,289360692275052544,4415394414592,18169987072,17347903488,1130319344567300,289360692275052544,21391213572,18169987072,4416216498176,1130319344567296,18169987072,21391213568,4417290241028,4416216498176,19243729924,18169987072,289360692258275328,4417290241024,18153209856,19243729920,1130319327790084,289360692258275328,21374436356,18153209856,4416199720960,1130319327790080,18153209856,21374436352,4417273463812,4416199720960,19226952708,18153209856,289360691469747204,4417273463808,17364681732,19226952704,1130316123340800,289360691469747200,18169987072,17364681728,4415411192836,1130316123340800,17364681732,18169987072,4416216498176,4415411192832,18169987072,17364681728,289360691452969988,4416216498176,17347904516,18169987072,1130316106563584,289360691452969984,18153209856,17347904512,4415394415620,1130316106563584,17347904516,18153209856,4416199720960,4415394415616,18153209856,17347904512,289360691469746176,4416199720960,17364680704,18153209856,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360691738182660,4415394415616,17633117188,17347904512,1130315318034432,289360691738182656,17364680704,17633117184,4415679628292,1130315318034432,17633117188,17364680704,4415411191808,4415679628288,17364680704,17633117184,289360691721405444,4415411191808,17616339972,17364680704,1130315301257216,289360691721405440,17347903488,17616339968,4415662851076,1130315301257216,17616339972,17347903488,4415394414592,4415662851072,17347903488,17616339968,289360691738181632,4415394414592,17633116160,17347903488,1130315586470916,289360691738181632,17633117188,17633116160,4415679627264,1130315586470912,17633116160,17633117184,4415679628292,4415679627264,17633117188,17633116160,289360691721404416,4415679628288,17616338944,17633117184,1130315569693700,289360691721404416,17616339972,17616338944,4415662850048,1130315569693696,17616338944,17616339968,4415662851076,4415662850048,17616339972,17616338944,289360691469747204,4415662851072,17364681732,17616339968,1130315586469888,289360691469747200,17633116160,17364681728,4415411192836,1130315586469888,17364681732,17633116160,4415679627264,4415411192832,17633116160,17364681728,289360691452969988,4415679627264,17347904516,17633116160,1130315569692672,289360691452969984,17616338944,17347904512,4415394415620,1130315569692672,17347904516,17616338944,4415662850048,4415394415616,17616338944,17347904512,289360691469746176,4415662850048,17364680704,17616338944,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360692275053572,4415394415616,18169988100,17347904512,1130315318034432,289360692275053568,17364680704,18169988096,4416216499204,1130315318034432,18169988100,17364680704,4415411191808,4416216499200,17364680704,18169988096,289360692258276356,4415411191808,18153210884,17364680704,1130315301257216,289360692258276352,17347903488,18153210880,4416199721988,1130315301257216,18153210884,17347903488,4415394414592,4416199721984,17347903488,18153210880,289360695496278016,4415394414592,21391212544,17347903488,1130316123341828,289360695496278016,18169988100,21391212544,4417290240000,1130316123341824,19243728896,18169988096,4416216499204,4417290240000,18169988100,19243728896,289360695479500800,4416216499200,21374435328,18169988096,1130316106564612,289360695479500800,18153210884,21374435328,4417273462784,1130316106564608,19226951680,18153210880,4416199721988,4417273462784,18153210884,19226951680,289360691469747204,4416199721984,17364681732,18153210880,1130319344566272,289360691469747200,21391212544,17364681728,4415411192836,1130319344566272,17364681732,21391212544,4417290240000,4415411192832,19243728896,17364681728,289360691452969988,4417290240000,17347904516,19243728896,1130319327789056,289360691452969984,21374435328,17347904512,4415394415620,1130319327789056,17347904516,21374435328,4417273462784,4415394415616,19226951680,17347904512,289360691469746176,4417273462784,17364680704,19226951680,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360691738182660,4415394415616,17633117188,17347904512,1130315318034432,289360691738182656,17364680704,17633117184,4415679628292,1130315318034432,17633117188,17364680704,4415411191808,4415679628288,17364680704,17633117184,289360691721405444,4415411191808,17616339972,17364680704,1130315301257216,289360691721405440,17347903488,17616339968,4415662851076,1130315301257216,17616339972,17347903488,4415394414592,4415662851072,17347903488,17616339968,289360691738181632,4415394414592,17633116160,17347903488,1130315586470916,289360691738181632,17633117188,17633116160,4415679627264,1130315586470912,17633116160,17633117184,4415679628292,4415679627264,17633117188,17633116160,289360691721404416,4415679628288,17616338944,17633117184,1130315569693700,289360691721404416,17616339972,17616338944,4415662850048,1130315569693696,17616338944,17616339968,4415662851076,4415662850048,17616339972,17616338944,289360691469747204,4415662851072,17364681732,17616339968,1130315586469888,289360691469747200,17633116160,17364681728,4415411192836,1130315586469888,17364681732,17633116160,4415679627264,4415411192832,17633116160,17364681728,289360691452969988,4415679627264,17347904516,17633116160,1130315569692672,289360691452969984,17616338944,17347904512,4415394415620,1130315569692672,17347904516,17616338944,4415662850048,4415394415616,17616338944,17347904512,289360691469746176,4415662850048,17364680704,17616338944,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360693348795396,4415394415616,19243729924,17347904512,1130315318034432,289360693348795392,17364680704,19243729920,4419437724676,1130315318034432,21391213572,17364680704,4415411191808,4419437724672,17364680704,21391213568,289360693332018180,4415411191808,19226952708,17364680704,1130315301257216,289360693332018176,17347903488,19226952704,4419420947460,1130315301257216,21374436356,17347903488,4415394414592,4419420947456,17347903488,21374436352,289360692275052544,4415394414592,18169987072,17347903488,1130317197083652,289360692275052544,19243729924,18169987072,4416216498176,1130317197083648,18169987072,19243729920,4419437724676,4416216498176,21391213572,18169987072,289360692258275328,4419437724672,18153209856,21391213568,1130317180306436,289360692258275328,19226952708,18153209856,4416199720960,1130317180306432,18153209856,19226952704,4419420947460,4416199720960,21374436356,18153209856,289360691469747204,4419420947456,17364681732,21374436352,1130316123340800,289360691469747200,18169987072,17364681728,4415411192836,1130316123340800,17364681732,18169987072,4416216498176,4415411192832,18169987072,17364681728,289360691452969988,4416216498176,17347904516,18169987072,1130316106563584,289360691452969984,18153209856,17347904512,4415394415620,1130316106563584,17347904516,18153209856,4416199720960,4415394415616,18153209856,17347904512,289360691469746176,4416199720960,17364680704,18153209856,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360691738182660,4415394415616,17633117188,17347904512,1130315318034432,289360691738182656,17364680704,17633117184,4415679628292,1130315318034432,17633117188,17364680704,4415411191808,4415679628288,17364680704,17633117184,289360691721405444,4415411191808,17616339972,17364680704,1130315301257216,289360691721405440,17347903488,17616339968,4415662851076,1130315301257216,17616339972,17347903488,4415394414592,4415662851072,17347903488,17616339968,289360691738181632,4415394414592,17633116160,17347903488,1130315586470916,289360691738181632,17633117188,17633116160,4415679627264,1130315586470912,17633116160,17633117184,4415679628292,4415679627264,17633117188,17633116160,289360691721404416,4415679628288,17616338944,17633117184,1130315569693700,289360691721404416,17616339972,17616338944,4415662850048,1130315569693696,17616338944,17616339968,4415662851076,4415662850048,17616339972,17616338944,289360691469747204,4415662851072,17364681732,17616339968,1130315586469888,289360691469747200,17633116160,17364681728,4415411192836,1130315586469888,17364681732,17633116160,4415679627264,4415411192832,17633116160,17364681728,289360691452969988,4415679627264,17347904516,17633116160,1130315569692672,289360691452969984,17616338944,17347904512,4415394415620,1130315569692672,17347904516,17616338944,4415662850048,4415394415616,17616338944,17347904512,289360691469746176,4415662850048,17364680704,17616338944,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360692275053572,4415394415616,18169988100,17347904512,1130315318034432,289360692275053568,17364680704,18169988096,4416216499204,1130315318034432,18169988100,17364680704,4415411191808,4416216499200,17364680704,18169988096,289360692258276356,4415411191808,18153210884,17364680704,1130315301257216,289360692258276352,17347903488,18153210880,4416199721988,1130315301257216,18153210884,17347903488,4415394414592,4416199721984,17347903488,18153210880,289360693348794368,4415394414592,19243728896,17347903488,1130316123341828,289360693348794368,18169988100,19243728896,4419437723648,1130316123341824,21391212544,18169988096,4416216499204,4419437723648,18169988100,21391212544,289360693332017152,4416216499200,19226951680,18169988096,1130316106564612,289360693332017152,18153210884,19226951680,4419420946432,1130316106564608,21374435328,18153210880,4416199721988,4419420946432,18153210884,21374435328,289360691469747204,4416199721984,17364681732,18153210880,1130317197082624,289360691469747200,19243728896,17364681728,4415411192836,1130317197082624,17364681732,19243728896,4419437723648,4415411192832,21391212544,17364681728,289360691452969988,4419437723648,17347904516,21391212544,1130317180305408,289360691452969984,19226951680,17347904512,4415394415620,1130317180305408,17347904516,19226951680,4419420946432,4415394415616,21374435328,17347904512,289360691469746176,4419420946432,17364680704,21374435328,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,289360691738182660,4415394415616,17633117188,17347904512,1130315318034432,289360691738182656,17364680704,17633117184,4415679628292,1130315318034432,17633117188,17364680704,4415411191808,4415679628288,17364680704,17633117184,289360691721405444,4415411191808,17616339972,17364680704,1130315301257216,289360691721405440,17347903488,17616339968,4415662851076,1130315301257216,17616339972,17347903488,4415394414592,4415662851072,17347903488,17616339968,289360691738181632,4415394414592,17633116160,17347903488,1130315586470916,289360691738181632,17633117188,17633116160,4415679627264,1130315586470912,17633116160,17633117184,4415679628292,4415679627264,17633117188,17633116160,289360691721404416,4415679628288,17616338944,17633117184,1130315569693700,289360691721404416,17616339972,17616338944,4415662850048,1130315569693696,17616338944,17616339968,4415662851076,4415662850048,17616339972,17616338944,289360691469747204,4415662851072,17364681732,17616339968,1130315586469888,289360691469747200,17633116160,17364681728,4415411192836,1130315586469888,17364681732,17633116160,4415679627264,4415411192832,17633116160,17364681728,289360691452969988,4415679627264,17347904516,17633116160,1130315569692672,289360691452969984,17616338944,17347904512,4415394415620,1130315569692672,17347904516,17616338944,4415662850048,4415394415616,17616338944,17347904512,289360691469746176,4415662850048,17364680704,17616338944,1130315318035460,289360691469746176,17364681732,17364680704,4415411191808,1130315318035456,17364680704,17364681728,4415411192836,4415411191808,17364681732,17364680704,289360691452968960,4415411192832,17347903488,17364681728,1130315301258244,289360691452968960,17347904516,17347903488,4415394414592,1130315301258240,17347903488,17347904512,4415394415620,4415394414592,17347904516,17347903488,0],[578721386714368008,38504237064,578721386714368000,38504237056,8830822383616,34729361408,8830822383616,34729361408,578721382905937920,34695806976,578721382905937920,34695806976,2260631139385344,35232677888,2260631139385344,35232677888,8832449775624,36356753416,8832449775616,36356753408,578721386697590792,38487459848,578721386697590784,38487459840,8830788829184,34695806976,8830788829184,34695806976,578721382905937920,34695806976,578721382905937920,34695806976,8830839162888,34746140680,8830839162880,34746140672,8832432998408,36339976200,8832432998400,36339976192,578721386664036360,38453905416,578721386664036352,38453905408,8830788829184,34695806976,8830788829184,34695806976,8830839160832,34746138624,8830839160832,34746138624,8830822385672,34729363464,8830822385664,34729363456,8832399443976,36306421768,8832399443968,36306421760,578721386664036360,38453905416,578721386664036352,38453905408,8831376031744,35283009536,8831376031744,35283009536,8830822383616,34729361408,8830822383616,34729361408,8830788831240,34695809032,8830788831232,34695809024,8832399443976,36306421768,8832399443968,36306421760,2260631189719048,35283011592,2260631189719040,35283011584,8831359254528,35266232320,8831359254528,35266232320,8830788829184,34695806976,8830788829184,34695806976,8830788831240,34695809032,8830788831232,34695809024,578721382956271624,34746140680,578721382956271616,34746140672,2260631172941832,35266234376,2260631172941824,35266234368,8831325700096,35232677888,8831325700096,35232677888,8830788829184,34695806976,8830788829184,34695806976,2260630652846080,34746138624,2260630652846080,34746138624,578721382939494408,34729363464,578721382939494400,34729363456,2260631139387400,35232679944,2260631139387392,35232679936,8831325700096,35232677888,8831325700096,35232677888,578721384566882304,36356751360,578721384566882304,36356751360,2260630636068864,34729361408,2260630636068864,34729361408,578721382905939976,34695809032,578721382905939968,34695809024,2260631139387400,35232679944,2260631139387392,35232679936,2260634410944520,38504237064,2260634410944512,38504237056,578721384550105088,36339974144,578721384550105088,36339974144,2260630602514432,34695806976,2260630602514432,34695806976,578721382905939976,34695809032,578721382905939968,34695809024,578721382956271624,34746140680,578721382956271616,34746140672,2260634394167304,38487459848,2260634394167296,38487459840,578721384516550656,36306419712,578721384516550656,36306419712,2260630602514432,34695806976,2260630602514432,34695806976,8830839162888,34746140680,8830839162880,34746140672,578721382939494408,34729363464,578721382939494400,34729363456,2260634360612872,38453905416,2260634360612864,38453905408,578721384516550656,36306419712,578721384516550656,36306419712,8831376033800,35283011592,8831376033792,35283011584,8830822385672,34729363464,8830822385664,34729363456,578721382905939976,34695809032,578721382905939968,34695809024,2260634360612872,38453905416,2260634360612864,38453905408,8831376031744,35283009536,8831376031744,35283009536,8831359256584,35266234376,8831359256576,35266234368,8830788831240,34695809032,8830788831232,34695809024,578721382905939976,34695809032,578721382905939968,34695809024,8830839160832,34746138624,8830839160832,34746138624,8831359254528,35266232320,8831359254528,35266232320,8831325702152,35232679944,8831325702144,35232679936,8830788831240,34695809032,8830788831232,34695809024,2260630652848136,34746140680,2260630652848128,34746140672,8830822383616,34729361408,8830822383616,34729361408,8831325700096,35232677888,8831325700096,35232677888,8831325702152,35232679944,8831325702144,35232679936,8834597259272,38504237064,8834597259264,38504237056,2260630636070920,34729363464,2260630636070912,34729363456,8830788829184,34695806976,8830788829184,34695806976,8831325700096,35232677888,8831325700096,35232677888,2260632263458816,36356751360,2260632263458816,36356751360,8834580482056,38487459848,8834580482048,38487459840,2260630602516488,34695809032,2260630602516480,34695809024,8830788829184,34695806976,8830788829184,34695806976,578721382956269568,34746138624,578721382956269568,34746138624,2260632246681600,36339974144,2260632246681600,36339974144,8834546927624,38453905416,8834546927616,38453905408,2260630602516488,34695809032,2260630602516480,34695809024,2260630652848136,34746140680,2260630652848128,34746140672,578721382939492352,34729361408,578721382939492352,34729361408,2260632213127168,36306419712,2260632213127168,36306419712,8834546927624,38453905416,8834546927616,38453905408,578721383493142536,35283011592,578721383493142528,35283011584,2260630636070920,34729363464,2260630636070912,34729363456,578721382905937920,34695806976,578721382905937920,34695806976,2260632213127168,36306419712,2260632213127168,36306419712,8831376033800,35283011592,8831376033792,35283011584,578721383476365320,35266234376,578721383476365312,35266234368,2260630602516488,34695809032,2260630602516480,34695809024,578721382905937920,34695806976,578721382905937920,34695806976,8830839162888,34746140680,8830839162880,34746140672,8831359256584,35266234376,8831359256576,35266234368,578721383442810888,35232679944,578721383442810880,35232679936,2260630602516488,34695809032,2260630602516480,34695809024,8830839160832,34746138624,8830839160832,34746138624,8830822385672,34729363464,8830822385664,34729363456,8831325702152,35232679944,8831325702144,35232679936,578721383442810888,35232679944,578721383442810880,35232679936,8832449773568,36356751360,8832449773568,36356751360,8830822383616,34729361408,8830822383616,34729361408,8830788831240,34695809032,8830788831232,34695809024,8831325702152,35232679944,8831325702144,35232679936,8834597259272,38504237064,8834597259264,38504237056,8832432996352,36339974144,8832432996352,36339974144,8830788829184,34695806976,8830788829184,34695806976,8830788831240,34695809032,8830788831232,34695809024,8830839162888,34746140680,8830839162880,34746140672,8834580482056,38487459848,8834580482048,38487459840,8832399441920,36306419712,8832399441920,36306419712,8830788829184,34695806976,8830788829184,34695806976,2260630652846080,34746138624,2260630652846080,34746138624,8830822385672,34729363464,8830822385664,34729363456,8834546927624,38453905416,8834546927616,38453905408,8832399441920,36306419712,8832399441920,36306419712,578721383493140480,35283009536,578721383493140480,35283009536,2260630636068864,34729361408,2260630636068864,34729361408,8830788831240,34695809032,8830788831232,34695809024,8834546927624,38453905416,8834546927616,38453905408,2260631189719048,35283011592,2260631189719040,35283011584,578721383476363264,35266232320,578721383476363264,35266232320,2260630602514432,34695806976,2260630602514432,34695806976,8830788831240,34695809032,8830788831232,34695809024,578721382956271624,34746140680,578721382956271616,34746140672,2260631172941832,35266234376,2260631172941824,35266234368,578721383442808832,35232677888,578721383442808832,35232677888,2260630602514432,34695806976,2260630602514432,34695806976,8830839162888,34746140680,8830839162880,34746140672,578721382939494408,34729363464,578721382939494400,34729363456,2260631139387400,35232679944,2260631139387392,35232679936,578721383442808832,35232677888,578721383442808832,35232677888,578721386714365952,38504235008,578721386714365952,38504235008,8830822385672,34729363464,8830822385664,34729363456,578721382905939976,34695809032,578721382905939968,34695809024,2260631139387400,35232679944,2260631139387392,35232679936,8832449773568,36356751360,8832449773568,36356751360,578721386697588736,38487457792,578721386697588736,38487457792,8830788831240,34695809032,8830788831232,34695809024,578721382905939976,34695809032,578721382905939968,34695809024,8830839160832,34746138624,8830839160832,34746138624,8832432996352,36339974144,8832432996352,36339974144,578721386664034304,38453903360,578721386664034304,38453903360,8830788831240,34695809032,8830788831232,34695809024,8830839162888,34746140680,8830839162880,34746140672,8830822383616,34729361408,8830822383616,34729361408,8832399441920,36306419712,8832399441920,36306419712,578721386664034304,38453903360,578721386664034304,38453903360,8831376033800,35283011592,8831376033792,35283011584,8830822385672,34729363464,8830822385664,34729363456,8830788829184,34695806976,8830788829184,34695806976,8832399441920,36306419712,8832399441920,36306419712,2260631189716992,35283009536,2260631189716992,35283009536,8831359256584,35266234376,8831359256576,35266234368,8830788831240,34695809032,8830788831232,34695809024,8830788829184,34695806976,8830788829184,34695806976,578721382956269568,34746138624,578721382956269568,34746138624,2260631172939776,35266232320,2260631172939776,35266232320,8831325702152,35232679944,8831325702144,35232679936,8830788831240,34695809032,8830788831232,34695809024,2260630652848136,34746140680,2260630652848128,34746140672,578721382939492352,34729361408,578721382939492352,34729361408,2260631139385344,35232677888,2260631139385344,35232677888,8831325702152,35232679944,8831325702144,35232679936,578721384566884360,36356753416,578721384566884352,36356753408,2260630636070920,34729363464,2260630636070912,34729363456,578721382905937920,34695806976,578721382905937920,34695806976,2260631139385344,35232677888,2260631139385344,35232677888,2260634410942464,38504235008,2260634410942464,38504235008,578721384550107144,36339976200,578721384550107136,36339976192,2260630602516488,34695809032,2260630602516480,34695809024,578721382905937920,34695806976,578721382905937920,34695806976,578721382956269568,34746138624,578721382956269568,34746138624,2260634394165248,38487457792,2260634394165248,38487457792,578721384516552712,36306421768,578721384516552704,36306421760,2260630602516488,34695809032,2260630602516480,34695809024,8830839160832,34746138624,8830839160832,34746138624,578721382939492352,34729361408,578721382939492352,34729361408,2260634360610816,38453903360,2260634360610816,38453903360,578721384516552712,36306421768,578721384516552704,36306421760,8831376031744,35283009536,8831376031744,35283009536,8830822383616,34729361408,8830822383616,34729361408,578721382905937920,34695806976,578721382905937920,34695806976,2260634360610816,38453903360,2260634360610816,38453903360,8831376033800,35283011592,8831376033792,35283011584,8831359254528,35266232320,8831359254528,35266232320,8830788829184,34695806976,8830788829184,34695806976,578721382905937920,34695806976,578721382905937920,34695806976,8830839162888,34746140680,8830839162880,34746140672,8831359256584,35266234376,8831359256576,35266234368,8831325700096,35232677888,8831325700096,35232677888,8830788829184,34695806976,8830788829184,34695806976,2260630652846080,34746138624,2260630652846080,34746138624,8830822385672,34729363464,8830822385664,34729363456,8831325702152,35232679944,8831325702144,35232679936,8831325700096,35232677888,8831325700096,35232677888,8834597257216,38504235008,8834597257216,38504235008,2260630636068864,34729361408,2260630636068864,34729361408,8830788831240,34695809032,8830788831232,34695809024,8831325702152,35232679944,8831325702144,35232679936,2260632263460872,36356753416,2260632263460864,36356753408,8834580480000,38487457792,8834580480000,38487457792,2260630602514432,34695806976,2260630602514432,34695806976,8830788831240,34695809032,8830788831232,34695809024,578721382956271624,34746140680,578721382956271616,34746140672,2260632246683656,36339976200,2260632246683648,36339976192,8834546925568,38453903360,8834546925568,38453903360,2260630602514432,34695806976,2260630602514432,34695806976,2260630652846080,34746138624,2260630652846080,34746138624,578721382939494408,34729363464,578721382939494400,34729363456,2260632213129224,36306421768,2260632213129216,36306421760,8834546925568,38453903360,8834546925568,38453903360,578721383493140480,35283009536,578721383493140480,35283009536,2260630636068864,34729361408,2260630636068864,34729361408,578721382905939976,34695809032,578721382905939968,34695809024,2260632213129224,36306421768,2260632213129216,36306421760,8831376031744,35283009536,8831376031744,35283009536,578721383476363264,35266232320,578721383476363264,35266232320,2260630602514432,34695806976,2260630602514432,34695806976,578721382905939976,34695809032,578721382905939968,34695809024,8830839160832,34746138624,8830839160832,34746138624,8831359254528,35266232320,8831359254528,35266232320,578721383442808832,35232677888,578721383442808832,35232677888,2260630602514432,34695806976,2260630602514432,34695806976,8830839162888,34746140680,8830839162880,34746140672,8830822383616,34729361408,8830822383616,34729361408,8831325700096,35232677888,8831325700096,35232677888,578721383442808832,35232677888,578721383442808832,35232677888,8832449775624,36356753416,8832449775616,36356753408,8830822385672,34729363464,8830822385664,34729363456,8830788829184,34695806976,8830788829184,34695806976,8831325700096,35232677888,8831325700096,35232677888,8834597257216,38504235008,8834597257216,38504235008,8832432998408,36339976200,8832432998400,36339976192,8830788831240,34695809032,8830788831232,34695809024,8830788829184,34695806976,8830788829184,34695806976,8830839160832,34746138624,8830839160832,34746138624,8834580480000,38487457792,8834580480000,38487457792,8832399443976,36306421768,8832399443968,36306421760,8830788831240,34695809032,8830788831232,34695809024,2260630652848136,34746140680,2260630652848128,34746140672,8830822383616,34729361408,8830822383616,34729361408,8834546925568,38453903360,8834546925568,38453903360,8832399443976,36306421768,8832399443968,36306421760,578721383493142536,35283011592,578721383493142528,35283011584,2260630636070920,34729363464,2260630636070912,34729363456,8830788829184,34695806976,8830788829184,34695806976,8834546925568,38453903360,8834546925568,38453903360,2260631189716992,35283009536,2260631189716992,35283009536,578721383476365320,35266234376,578721383476365312,35266234368,2260630602516488,34695809032,2260630602516480,34695809024,8830788829184,34695806976,8830788829184,34695806976,578721382956269568,34746138624,578721382956269568,34746138624,2260631172939776,35266232320,2260631172939776,35266232320,578721383442810888,35232679944,578721383442810880,35232679936,2260630602516488,34695809032,2260630602516480,34695809024,8830839160832,34746138624,8830839160832,34746138624,578721382939492352,34729361408,578721382939492352,34729361408,2260631139385344,35232677888,2260631139385344,35232677888,578721383442810888,35232679944,578721383442810880,35232679936,0],[1157442769150545936,72730284048,17662768844816,70582800400,1157442769150541824,72730279936,17662768840704,70582796288,4521261305696272,69492281360,17661678325776,69492281360,4521261305692160,69492277248,17661678321664,69492277248,4521262345883664,70532468752,17664865996816,72679952400,4521262345879552,70532464640,17664865992704,72679948288,4521261272141840,69458726928,17661644771344,69458726928,4521261272137728,69458722816,17661644767232,69458722816,4521264426258448,72612843536,17662651404304,70465359888,4521264426254336,72612839424,17662651400192,70465355776,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,1157442766885621776,70465359888,17664798887952,72612843536,1157442766885617664,70465355776,17664798883840,72612839424,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,4521264543698944,72730284032,17662768844800,70582800384,4521264543694848,72730279936,17662768840704,70582796288,1157442765912543232,69492281344,17661678325760,69492281344,1157442765912539136,69492277248,17661678321664,69492277248,1157442766952730624,70532468736,17664865996800,72679952384,1157442766952726528,70532464640,17664865992704,72679948288,1157442765878988800,69458726912,17661644771328,69458726912,1157442765878984704,69458722816,17661644767232,69458722816,1157442769033105408,72612843520,17662651404288,70465359872,1157442769033101312,72612839424,17662651400192,70465355776,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,4521262278774784,70465359872,17664798887936,72612843520,4521262278770688,70465355776,17664798883840,72612839424,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,1157442765929320464,69509058576,17661695102992,69509058576,1157442765929316352,69509054464,17661695098880,69509054464,1157442769133768720,72713506832,17662752067600,70566023184,1157442769133764608,72713502720,17662752063488,70566019072,4521261272141840,69458726928,17661644771344,69458726928,4521261272137728,69458722816,17661644767232,69458722816,4521262345883664,70532468752,17664865996816,72679952400,4521262345879552,70532464640,17664865992704,72679948288,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,4521264426258448,72612843536,17662651404304,70465359888,4521264426254336,72612839424,17662651400192,70465355776,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,1157442766885621776,70465359888,17664798887952,72612843536,1157442766885617664,70465355776,17664798883840,72612839424,4521261322473472,69509058560,17661695102976,69509058560,4521261322469376,69509054464,17661695098880,69509054464,4521264526921728,72713506816,17662752067584,70566023168,4521264526917632,72713502720,17662752063488,70566019072,1157442765878988800,69458726912,17661644771328,69458726912,1157442765878984704,69458722816,17661644767232,69458722816,1157442766952730624,70532468736,17664865996800,72679952384,1157442766952726528,70532464640,17664865992704,72679948288,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,1157442769033105408,72612843520,17662651404288,70465359872,1157442769033101312,72612839424,17662651400192,70465355776,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,4521262278774784,70465359872,17664798887936,72612843520,4521262278770688,70465355776,17664798883840,72612839424,1157442767003062288,70582800400,17664916328464,72730284048,1157442767003058176,70582796288,17664916324352,72730279936,1157442765912543248,69492281360,17661678325776,69492281360,1157442765912539136,69492277248,17661678321664,69492277248,1157442769100214288,72679952400,17662718513168,70532468752,1157442769100210176,72679948288,17662718509056,70532464640,4521261272141840,69458726928,17661644771344,69458726928,4521261272137728,69458722816,17661644767232,69458722816,4521262278774800,70465359888,17664798887952,72612843536,4521262278770688,70465355776,17664798883840,72612839424,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,4521264426258448,72612843536,17662651404304,70465359888,4521264426254336,72612839424,17662651400192,70465355776,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,4521262396215296,70582800384,17664916328448,72730284032,4521262396211200,70582796288,17664916324352,72730279936,4521261305696256,69492281344,17661678325760,69492281344,4521261305692160,69492277248,17661678321664,69492277248,4521264493367296,72679952384,17662718513152,70532468736,4521264493363200,72679948288,17662718509056,70532464640,1157442765878988800,69458726912,17661644771328,69458726912,1157442765878984704,69458722816,17661644767232,69458722816,1157442766885621760,70465359872,17664798887936,72612843520,1157442766885617664,70465355776,17664798883840,72612839424,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,1157442769033105408,72612843520,17662651404288,70465359872,1157442769033101312,72612839424,17662651400192,70465355776,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,1157442765929320464,69509058576,17661695102992,69509058576,1157442765929316352,69509054464,17661695098880,69509054464,1157442766986285072,70566023184,17664899551248,72713506832,1157442766986280960,70566019072,17664899547136,72713502720,1157442765878988816,69458726928,17661644771344,69458726928,1157442765878984704,69458722816,17661644767232,69458722816,1157442769100214288,72679952400,17662718513168,70532468752,1157442769100210176,72679948288,17662718509056,70532464640,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,4521262278774800,70465359888,17664798887952,72612843536,4521262278770688,70465355776,17664798883840,72612839424,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,4521264426258448,72612843536,17662651404304,70465359888,4521264426254336,72612839424,17662651400192,70465355776,4521261322473472,69509058560,17661695102976,69509058560,4521261322469376,69509054464,17661695098880,69509054464,4521262379438080,70566023168,17664899551232,72713506816,4521262379433984,70566019072,17664899547136,72713502720,4521261272141824,69458726912,17661644771328,69458726912,4521261272137728,69458722816,17661644767232,69458722816,4521264493367296,72679952384,17662718513152,70532468736,4521264493363200,72679948288,17662718509056,70532464640,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,1157442766885621760,70465359872,17664798887936,72612843520,1157442766885617664,70465355776,17664798883840,72612839424,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,1157442769033105408,72612843520,17662651404288,70465359872,1157442769033101312,72612839424,17662651400192,70465355776,4521264543698960,72730284048,17662768844816,70582800400,4521264543694848,72730279936,17662768840704,70582796288,1157442765912543248,69492281360,17661678325776,69492281360,1157442765912539136,69492277248,17661678321664,69492277248,1157442766952730640,70532468752,17664865996816,72679952400,1157442766952726528,70532464640,17664865992704,72679948288,1157442765878988816,69458726928,17661644771344,69458726928,1157442765878984704,69458722816,17661644767232,69458722816,1157442769033105424,72612843536,17662651404304,70465359888,1157442769033101312,72612839424,17662651400192,70465355776,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,4521262278774800,70465359888,17664798887952,72612843536,4521262278770688,70465355776,17664798883840,72612839424,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,1157442769150545920,72730284032,17662768844800,70582800384,1157442769150541824,72730279936,17662768840704,70582796288,4521261305696256,69492281344,17661678325760,69492281344,4521261305692160,69492277248,17661678321664,69492277248,4521262345883648,70532468736,17664865996800,72679952384,4521262345879552,70532464640,17664865992704,72679948288,4521261272141824,69458726912,17661644771328,69458726912,4521261272137728,69458722816,17661644767232,69458722816,4521264426258432,72612843520,17662651404288,70465359872,4521264426254336,72612839424,17662651400192,70465355776,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,1157442766885621760,70465359872,17664798887936,72612843520,1157442766885617664,70465355776,17664798883840,72612839424,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,4521261322473488,69509058576,17661695102992,69509058576,4521261322469376,69509054464,17661695098880,69509054464,4521264526921744,72713506832,17662752067600,70566023184,4521264526917632,72713502720,17662752063488,70566019072,1157442765878988816,69458726928,17661644771344,69458726928,1157442765878984704,69458722816,17661644767232,69458722816,1157442766952730640,70532468752,17664865996816,72679952400,1157442766952726528,70532464640,17664865992704,72679948288,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,1157442769033105424,72612843536,17662651404304,70465359888,1157442769033101312,72612839424,17662651400192,70465355776,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,4521262278774800,70465359888,17664798887952,72612843536,4521262278770688,70465355776,17664798883840,72612839424,1157442765929320448,69509058560,17661695102976,69509058560,1157442765929316352,69509054464,17661695098880,69509054464,1157442769133768704,72713506816,17662752067584,70566023168,1157442769133764608,72713502720,17662752063488,70566019072,4521261272141824,69458726912,17661644771328,69458726912,4521261272137728,69458722816,17661644767232,69458722816,4521262345883648,70532468736,17664865996800,72679952384,4521262345879552,70532464640,17664865992704,72679948288,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,4521264426258432,72612843520,17662651404288,70465359872,4521264426254336,72612839424,17662651400192,70465355776,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,1157442766885621760,70465359872,17664798887936,72612843520,1157442766885617664,70465355776,17664798883840,72612839424,4521262396215312,70582800400,17664916328464,72730284048,4521262396211200,70582796288,17664916324352,72730279936,4521261305696272,69492281360,17661678325776,69492281360,4521261305692160,69492277248,17661678321664,69492277248,4521264493367312,72679952400,17662718513168,70532468752,4521264493363200,72679948288,17662718509056,70532464640,1157442765878988816,69458726928,17661644771344,69458726928,1157442765878984704,69458722816,17661644767232,69458722816,1157442766885621776,70465359888,17664798887952,72612843536,1157442766885617664,70465355776,17664798883840,72612839424,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,1157442769033105424,72612843536,17662651404304,70465359888,1157442769033101312,72612839424,17662651400192,70465355776,4521261205032976,69391618064,17661577662480,69391618064,4521261205028864,69391613952,17661577658368,69391613952,1157442767003062272,70582800384,17664916328448,72730284032,1157442767003058176,70582796288,17664916324352,72730279936,1157442765912543232,69492281344,17661678325760,69492281344,1157442765912539136,69492277248,17661678321664,69492277248,1157442769100214272,72679952384,17662718513152,70532468736,1157442769100210176,72679948288,17662718509056,70532464640,4521261272141824,69458726912,17661644771328,69458726912,4521261272137728,69458722816,17661644767232,69458722816,4521262278774784,70465359872,17664798887936,72612843520,4521262278770688,70465355776,17664798883840,72612839424,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,4521264426258432,72612843520,17662651404288,70465359872,4521264426254336,72612839424,17662651400192,70465355776,1157442765811879936,69391618048,17661577662464,69391618048,1157442765811875840,69391613952,17661577658368,69391613952,4521261322473488,69509058576,17661695102992,69509058576,4521261322469376,69509054464,17661695098880,69509054464,4521262379438096,70566023184,17664899551248,72713506832,4521262379433984,70566019072,17664899547136,72713502720,4521261272141840,69458726928,17661644771344,69458726928,4521261272137728,69458722816,17661644767232,69458722816,4521264493367312,72679952400,17662718513168,70532468752,4521264493363200,72679948288,17662718509056,70532464640,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,1157442766885621776,70465359888,17664798887952,72612843536,1157442766885617664,70465355776,17664798883840,72612839424,1157442765811879952,69391618064,17661577662480,69391618064,1157442765811875840,69391613952,17661577658368,69391613952,1157442769033105424,72612843536,17662651404304,70465359888,1157442769033101312,72612839424,17662651400192,70465355776,1157442765929320448,69509058560,17661695102976,69509058560,1157442765929316352,69509054464,17661695098880,69509054464,1157442766986285056,70566023168,17664899551232,72713506816,1157442766986280960,70566019072,17664899547136,72713502720,1157442765878988800,69458726912,17661644771328,69458726912,1157442765878984704,69458722816,17661644767232,69458722816,1157442769100214272,72679952384,17662718513152,70532468736,1157442769100210176,72679948288,17662718509056,70532464640,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,4521262278774784,70465359872,17664798887936,72612843520,4521262278770688,70465355776,17664798883840,72612839424,4521261205032960,69391618048,17661577662464,69391618048,4521261205028864,69391613952,17661577658368,69391613952,4521264426258432,72612843520,17662651404288,70465359872,4521264426254336,72612839424,17662651400192,70465355776,0],[2314885534022901792,2314885534022893568,35323155324960,35323155316736,138917453824,138917445632,140930719744,140930711552,2314885531623759904,2314885531623751680,35323289542656,35323289534464,141182378016,141182369792,138783236128,138783227904,2314885531757977600,2314885531757969408,35325554466848,35325554458624,138783236128,138783227904,138917453824,138917445632,2314885534006124576,2314885534006116352,35323155324960,35323155316736,138917453824,138917445632,141182378016,141182369792,2314885531623759904,2314885531623751680,35323289542656,35323289534464,141165600800,141165592576,138783236128,138783227904,2314885531757977600,2314885531757969408,35325537689632,35325537681408,138783236128,138783227904,138917453824,138917445632,2314885533972570144,2314885533972561920,35323155324960,35323155316736,138917453824,138917445632,141165600800,141165592576,2314885531623759904,2314885531623751680,35323289542656,35323289534464,141132046368,141132038144,138783236128,138783227904,2314885531623759872,2314885531623751680,35325504135200,35325504126976,138783236128,138783227904,138917453824,138917445632,2314885533972570144,2314885533972561920,35323155324960,35323155316736,138783236096,138783227904,141132046368,141132038144,2314885531623759904,2314885531623751680,35323155324928,35323155316736,141132046368,141132038144,138783236128,138783227904,2314885531623759872,2314885531623751680,35325504135200,35325504126976,138783236128,138783227904,138783236096,138783227904,2314885533905461280,2314885533905453056,35323155324960,35323155316736,138783236096,138783227904,141132046368,141132038144,2314885531623759904,2314885531623751680,35323155324928,35323155316736,141064937504,141064929280,138783236128,138783227904,2314885531623759872,2314885531623751680,35325437026336,35325437018112,138783236128,138783227904,138783236096,138783227904,2314885533905461280,2314885533905453056,35323155324960,35323155316736,138783236096,138783227904,141064937504,141064929280,2314885534022901760,2314885534022893568,35323155324928,35323155316736,141064937504,141064929280,138783236128,138783227904,2314885531623759872,2314885531623751680,35325437026336,35325437018112,141182377984,141182369792,138783236096,138783227904,2314885533905461280,2314885533905453056,35325554466816,35325554458624,138783236096,138783227904,141064937504,141064929280,2314885534006124544,2314885534006116352,35323155324928,35323155316736,141064937504,141064929280,141182377984,141182369792,2314885531623759872,2314885531623751680,35325437026336,35325437018112,141165600768,141165592576,138783236096,138783227904,2314885533905461280,2314885533905453056,35325537689600,35325537681408,138783236096,138783227904,141064937504,141064929280,2314885533972570112,2314885533972561920,35323155324928,35323155316736,141064937504,141064929280,141165600768,141165592576,2314885531623759872,2314885531623751680,35325437026336,35325437018112,141132046336,141132038144,138783236096,138783227904,2314885533771243552,2314885533771235328,35325504135168,35325504126976,138783236096,138783227904,141064937504,141064929280,2314885533972570112,2314885533972561920,35323155324928,35323155316736,140930719776,140930711552,141132046336,141132038144,2314885531623759872,2314885531623751680,35325302808608,35325302800384,141132046336,141132038144,138783236096,138783227904,2314885533771243552,2314885533771235328,35325504135168,35325504126976,138783236096,138783227904,140930719776,140930711552,2314885533905461248,2314885533905453056,35323155324928,35323155316736,140930719776,140930711552,141132046336,141132038144,2314885531623759872,2314885531623751680,35325302808608,35325302800384,141064937472,141064929280,138783236096,138783227904,2314885533771243552,2314885533771235328,35325437026304,35325437018112,138783236096,138783227904,140930719776,140930711552,2314885533905461248,2314885533905453056,35323155324928,35323155316736,140930719776,140930711552,141064937472,141064929280,9042522661724192,9042522661715968,35325302808608,35325302800384,141064937472,141064929280,138783236096,138783227904,2314885533771243552,2314885533771235328,35325437026304,35325437018112,139034894368,139034886144,140930719776,140930711552,2314885533905461248,2314885533905453056,35323406983200,35323406974976,140930719776,140930711552,141064937472,141064929280,9042522644946976,9042522644938752,35325302808608,35325302800384,141064937472,141064929280,139034894368,139034886144,2314885533771243552,2314885533771235328,35325437026304,35325437018112,139018117152,139018108928,140930719776,140930711552,2314885533905461248,2314885533905453056,35323390205984,35323390197760,140930719776,140930711552,141064937472,141064929280,9042522611392544,9042522611384320,35325302808608,35325302800384,141064937472,141064929280,139018117152,139018108928,2314885533771243552,2314885533771235328,35325437026304,35325437018112,138984562720,138984554496,140930719776,140930711552,2314885533771243520,2314885533771235328,35323356651552,35323356643328,140930719776,140930711552,141064937472,141064929280,9042522611392544,9042522611384320,35325302808608,35325302800384,140930719744,140930711552,138984562720,138984554496,2314885533771243552,2314885533771235328,35325302808576,35325302800384,138984562720,138984554496,140930719776,140930711552,2314885533771243520,2314885533771235328,35323356651552,35323356643328,140930719776,140930711552,140930719744,140930711552,9042522544283680,9042522544275456,35325302808608,35325302800384,140930719744,140930711552,138984562720,138984554496,2314885533771243552,2314885533771235328,35325302808576,35325302800384,138917453856,138917445632,140930719776,140930711552,2314885533771243520,2314885533771235328,35323289542688,35323289534464,140930719776,140930711552,140930719744,140930711552,9042522544283680,9042522544275456,35325302808608,35325302800384,140930719744,140930711552,138917453856,138917445632,9042522661724160,9042522661715968,35325302808576,35325302800384,138917453856,138917445632,140930719776,140930711552,2314885533771243520,2314885533771235328,35323289542688,35323289534464,139034894336,139034886144,140930719744,140930711552,9042522544283680,9042522544275456,35323406983168,35323406974976,140930719744,140930711552,138917453856,138917445632,9042522644946944,9042522644938752,35325302808576,35325302800384,138917453856,138917445632,139034894336,139034886144,2314885533771243520,2314885533771235328,35323289542688,35323289534464,139018117120,139018108928,140930719744,140930711552,9042522544283680,9042522544275456,35323390205952,35323390197760,140930719744,140930711552,138917453856,138917445632,9042522611392512,9042522611384320,35325302808576,35325302800384,138917453856,138917445632,139018117120,139018108928,2314885533771243520,2314885533771235328,35323289542688,35323289534464,138984562688,138984554496,140930719744,140930711552,9042522410065952,9042522410057728,35323356651520,35323356643328,140930719744,140930711552,138917453856,138917445632,9042522611392512,9042522611384320,35325302808576,35325302800384,138783236128,138783227904,138984562688,138984554496,2314885533771243520,2314885533771235328,35323155324960,35323155316736,138984562688,138984554496,140930719744,140930711552,9042522410065952,9042522410057728,35323356651520,35323356643328,140930719744,140930711552,138783236128,138783227904,9042522544283648,9042522544275456,35325302808576,35325302800384,138783236128,138783227904,138984562688,138984554496,2314885533771243520,2314885533771235328,35323155324960,35323155316736,138917453824,138917445632,140930719744,140930711552,9042522410065952,9042522410057728,35323289542656,35323289534464,140930719744,140930711552,138783236128,138783227904,9042522544283648,9042522544275456,35325302808576,35325302800384,138783236128,138783227904,138917453824,138917445632,9042524809207840,9042524809199616,35323155324960,35323155316736,138917453824,138917445632,140930719744,140930711552,9042522410065952,9042522410057728,35323289542656,35323289534464,141182378016,141182369792,138783236128,138783227904,9042522544283648,9042522544275456,35325554466848,35325554458624,138783236128,138783227904,138917453824,138917445632,9042524792430624,9042524792422400,35323155324960,35323155316736,138917453824,138917445632,141182378016,141182369792,9042522410065952,9042522410057728,35323289542656,35323289534464,141165600800,141165592576,138783236128,138783227904,9042522544283648,9042522544275456,35325537689632,35325537681408,138783236128,138783227904,138917453824,138917445632,9042524758876192,9042524758867968,35323155324960,35323155316736,138917453824,138917445632,141165600800,141165592576,9042522410065952,9042522410057728,35323289542656,35323289534464,141132046368,141132038144,138783236128,138783227904,9042522410065920,9042522410057728,35325504135200,35325504126976,138783236128,138783227904,138917453824,138917445632,9042524758876192,9042524758867968,35323155324960,35323155316736,138783236096,138783227904,141132046368,141132038144,9042522410065952,9042522410057728,35323155324928,35323155316736,141132046368,141132038144,138783236128,138783227904,9042522410065920,9042522410057728,35325504135200,35325504126976,138783236128,138783227904,138783236096,138783227904,9042524691767328,9042524691759104,35323155324960,35323155316736,138783236096,138783227904,141132046368,141132038144,9042522410065952,9042522410057728,35323155324928,35323155316736,141064937504,141064929280,138783236128,138783227904,9042522410065920,9042522410057728,35325437026336,35325437018112,138783236128,138783227904,138783236096,138783227904,9042524691767328,9042524691759104,35323155324960,35323155316736,138783236096,138783227904,141064937504,141064929280,9042524809207808,9042524809199616,35323155324928,35323155316736,141064937504,141064929280,138783236128,138783227904,9042522410065920,9042522410057728,35325437026336,35325437018112,141182377984,141182369792,138783236096,138783227904,9042524691767328,9042524691759104,35325554466816,35325554458624,138783236096,138783227904,141064937504,141064929280,9042524792430592,9042524792422400,35323155324928,35323155316736,141064937504,141064929280,141182377984,141182369792,9042522410065920,9042522410057728,35325437026336,35325437018112,141165600768,141165592576,138783236096,138783227904,9042524691767328,9042524691759104,35325537689600,35325537681408,138783236096,138783227904,141064937504,141064929280,9042524758876160,9042524758867968,35323155324928,35323155316736,141064937504,141064929280,141165600768,141165592576,9042522410065920,9042522410057728,35325437026336,35325437018112,141132046336,141132038144,138783236096,138783227904,9042524557549600,9042524557541376,35325504135168,35325504126976,138783236096,138783227904,141064937504,141064929280,9042524758876160,9042524758867968,35323155324928,35323155316736,140930719776,140930711552,141132046336,141132038144,9042522410065920,9042522410057728,35325302808608,35325302800384,141132046336,141132038144,138783236096,138783227904,9042524557549600,9042524557541376,35325504135168,35325504126976,138783236096,138783227904,140930719776,140930711552,9042524691767296,9042524691759104,35323155324928,35323155316736,140930719776,140930711552,141132046336,141132038144,9042522410065920,9042522410057728,35325302808608,35325302800384,141064937472,141064929280,138783236096,138783227904,9042524557549600,9042524557541376,35325437026304,35325437018112,138783236096,138783227904,140930719776,140930711552,9042524691767296,9042524691759104,35323155324928,35323155316736,140930719776,140930711552,141064937472,141064929280,2314885531875418144,2314885531875409920,35325302808608,35325302800384,141064937472,141064929280,138783236096,138783227904,9042524557549600,9042524557541376,35325437026304,35325437018112,139034894368,139034886144,140930719776,140930711552,9042524691767296,9042524691759104,35323406983200,35323406974976,140930719776,140930711552,141064937472,141064929280,2314885531858640928,2314885531858632704,35325302808608,35325302800384,141064937472,141064929280,139034894368,139034886144,9042524557549600,9042524557541376,35325437026304,35325437018112,139018117152,139018108928,140930719776,140930711552,9042524691767296,9042524691759104,35323390205984,35323390197760,140930719776,140930711552,141064937472,141064929280,2314885531825086496,2314885531825078272,35325302808608,35325302800384,141064937472,141064929280,139018117152,139018108928,9042524557549600,9042524557541376,35325437026304,35325437018112,138984562720,138984554496,140930719776,140930711552,9042524557549568,9042524557541376,35323356651552,35323356643328,140930719776,140930711552,141064937472,141064929280,2314885531825086496,2314885531825078272,35325302808608,35325302800384,140930719744,140930711552,138984562720,138984554496,9042524557549600,9042524557541376,35325302808576,35325302800384,138984562720,138984554496,140930719776,140930711552,9042524557549568,9042524557541376,35323356651552,35323356643328,140930719776,140930711552,140930719744,140930711552,2314885531757977632,2314885531757969408,35325302808608,35325302800384,140930719744,140930711552,138984562720,138984554496,9042524557549600,9042524557541376,35325302808576,35325302800384,138917453856,138917445632,140930719776,140930711552,9042524557549568,9042524557541376,35323289542688,35323289534464,140930719776,140930711552,140930719744,140930711552,2314885531757977632,2314885531757969408,35325302808608,35325302800384,140930719744,140930711552,138917453856,138917445632,2314885531875418112,2314885531875409920,35325302808576,35325302800384,138917453856,138917445632,140930719776,140930711552,9042524557549568,9042524557541376,35323289542688,35323289534464,139034894336,139034886144,140930719744,140930711552,2314885531757977632,2314885531757969408,35323406983168,35323406974976,140930719744,140930711552,138917453856,138917445632,2314885531858640896,2314885531858632704,35325302808576,35325302800384,138917453856,138917445632,139034894336,139034886144,9042524557549568,9042524557541376,35323289542688,35323289534464,139018117120,139018108928,140930719744,140930711552,2314885531757977632,2314885531757969408,35323390205952,35323390197760,140930719744,140930711552,138917453856,138917445632,2314885531825086464,2314885531825078272,35325302808576,35325302800384,138917453856,138917445632,139018117120,139018108928,9042524557549568,9042524557541376,35323289542688,35323289534464,138984562688,138984554496,140930719744,140930711552,2314885531623759904,2314885531623751680,35323356651520,35323356643328,140930719744,140930711552,138917453856,138917445632,2314885531825086464,2314885531825078272,35325302808576,35325302800384,138783236128,138783227904,138984562688,138984554496,9042524557549568,9042524557541376,35323155324960,35323155316736,138984562688,138984554496,140930719744,140930711552,2314885531623759904,2314885531623751680,35323356651520,35323356643328,140930719744,140930711552,138783236128,138783227904,2314885531757977600,2314885531757969408,35325302808576,35325302800384,138783236128,138783227904,138984562688,138984554496,9042524557549568,9042524557541376,35323155324960,35323155316736,138917453824,138917445632,140930719744,140930711552,2314885531623759904,2314885531623751680,35323289542656,35323289534464,140930719744,140930711552,138783236128,138783227904,2314885531757977600,2314885531757969408,35325302808576,35325302800384,138783236128,138783227904,138917453824,138917445632,0],[4629771063767613504,277566455808,70646830743616,277566455808,278036234240,4629771063767597056,278036234240,70646830727168,18085045088567360,278036217856,70646579085376,278036217856,277834907648,18085045088550912,277834907648,70646579068928,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045222785024,277566455808,70646713303040,277566455808,277834907712,18085045222768640,277834907712,70646713286656,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063750836288,277566455808,70646813966400,277566455808,278036234240,4629771063750819840,278036234240,70646813949952,18085045088567360,278036217856,70646579085376,278036217856,277566472192,18085045088550912,277566472192,70646579068928,4629771063247519808,277566455808,70646310649920,277566455808,277566472192,4629771063247503360,277566472192,70646310633472,18085045088567296,277566455808,70646579085312,277566455808,277834907712,18085045088550912,277834907712,70646579068928,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063717281856,277566455808,70646780411968,277566455808,277969125376,4629771063717265408,277969125376,70646780395520,18085045088567360,277969108992,70646579085376,277969108992,277566472192,18085045088550912,277566472192,70646579068928,4629771063247519808,277566455808,70646310649920,277566455808,277566472192,4629771063247503360,277566472192,70646310633472,18085045088567296,277566455808,70646579085312,277566455808,277834907712,18085045088550912,277834907712,70646579068928,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063717281856,277566455808,70646780411968,277566455808,277969125376,4629771063717265408,277969125376,70646780395520,18085044820131904,277969108992,70646310649920,277969108992,277566472192,18085044820115456,277566472192,70646310633472,4629771063247519808,277566455808,70646310649920,277566455808,277566472192,4629771063247503360,277566472192,70646310633472,18085045088567296,277566455808,70646579085312,277566455808,277834907712,18085045088550912,277834907712,70646579068928,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063650172992,277566455808,70646713303104,277566455808,277969125376,4629771063650156544,277969125376,70646713286656,18085044820131904,277969108992,70646310649920,277969108992,277566472192,18085044820115456,277566472192,70646310633472,4629771063247519808,277566455808,70646310649920,277566455808,278086565952,4629771063247503360,278086565952,70646310633472,18085045088567296,278086549504,70646579085312,278086549504,277834907712,18085045088550912,277834907712,70646579068928,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063650172992,277566455808,70646713303104,277566455808,277969125376,4629771063650156544,277969125376,70646713286656,18085044820131904,277969108992,70646310649920,277969108992,277566472192,18085044820115456,277566472192,70646310633472,4629771063247519808,277566455808,70646310649920,277566455808,278069788736,4629771063247503360,278069788736,70646310633472,18085045088567296,278069772288,70646579085312,278069772288,277834907712,18085045088550912,277834907712,70646579068928,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063650172992,277566455808,70646713303104,277566455808,277834907648,4629771063650156544,277834907648,70646713286656,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063767613440,277566455808,70646830743552,277566455808,278036234304,4629771063767597056,278036234304,70646830727168,18085045088567296,278036217856,70646579085312,278036217856,277834907712,18085045088550912,277834907712,70646579068928,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,4629771063650172992,277566455808,70646713303104,277566455808,277834907648,4629771063650156544,277834907648,70646713286656,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063750836224,277566455808,70646813966336,277566455808,278036234304,4629771063750819840,278036234304,70646813949952,18085045088567296,278036217856,70646579085312,278036217856,277566472256,18085045088550912,277566472256,70646579068928,4629771063247519744,277566455808,70646310649856,277566455808,277566472256,4629771063247503360,277566472256,70646310633472,4629771063515955264,277566455808,70646579085376,277566455808,277834907648,4629771063515938816,277834907648,70646579068928,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063717281792,277566455808,70646780411904,277566455808,277969125440,4629771063717265408,277969125440,70646780395520,18085045088567296,277969108992,70646579085312,277969108992,277566472256,18085045088550912,277566472256,70646579068928,4629771063247519744,277566455808,70646310649856,277566455808,277566472256,4629771063247503360,277566472256,70646310633472,4629771063515955264,277566455808,70646579085376,277566455808,277834907648,4629771063515938816,277834907648,70646579068928,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063717281792,277566455808,70646780411904,277566455808,277969125440,4629771063717265408,277969125440,70646780395520,18085044820131840,277969108992,70646310649856,277969108992,277566472256,18085044820115456,277566472256,70646310633472,4629771063247519744,277566455808,70646310649856,277566455808,277566472256,4629771063247503360,277566472256,70646310633472,4629771063515955264,277566455808,70646579085376,277566455808,277834907648,4629771063515938816,277834907648,70646579068928,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063650172928,277566455808,70646713303040,277566455808,277969125440,4629771063650156544,277969125440,70646713286656,18085044820131840,277969108992,70646310649856,277969108992,277566472256,18085044820115456,277566472256,70646310633472,4629771063247519744,277566455808,70646310649856,277566455808,278086565888,4629771063247503360,278086565888,70646310633472,4629771063515955264,278086549504,70646579085376,278086549504,277834907648,4629771063515938816,277834907648,70646579068928,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063650172928,277566455808,70646713303040,277566455808,277969125440,4629771063650156544,277969125440,70646713286656,18085044820131840,277969108992,70646310649856,277969108992,277566472256,18085044820115456,277566472256,70646310633472,4629771063247519744,277566455808,70646310649856,277566455808,278069788672,4629771063247503360,278069788672,70646310633472,4629771063515955264,278069772288,70646579085376,278069772288,277834907648,4629771063515938816,277834907648,70646579068928,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063650172928,277566455808,70646713303040,277566455808,277834907712,4629771063650156544,277834907712,70646713286656,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045340225600,277566455808,70646830743616,277566455808,278036234240,18085045340209152,278036234240,70646830727168,4629771063515955264,278036217856,70646579085376,278036217856,277834907648,4629771063515938816,277834907648,70646579068928,18085044820131904,277834891264,70646310649920,277834891264,277566472192,18085044820115456,277566472192,70646310633472,4629771063650172928,277566455808,70646713303040,277566455808,277834907712,4629771063650156544,277834907712,70646713286656,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045323448384,277566455808,70646813966400,277566455808,278036234240,18085045323431936,278036234240,70646813949952,4629771063515955264,278036217856,70646579085376,278036217856,277566472192,4629771063515938816,277566472192,70646579068928,18085044820131904,277566455808,70646310649920,277566455808,277566472192,18085044820115456,277566472192,70646310633472,4629771063515955200,277566455808,70646579085312,277566455808,277834907712,4629771063515938816,277834907712,70646579068928,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045289893952,277566455808,70646780411968,277566455808,277969125376,18085045289877504,277969125376,70646780395520,4629771063515955264,277969108992,70646579085376,277969108992,277566472192,4629771063515938816,277566472192,70646579068928,18085044820131904,277566455808,70646310649920,277566455808,277566472192,18085044820115456,277566472192,70646310633472,4629771063515955200,277566455808,70646579085312,277566455808,277834907712,4629771063515938816,277834907712,70646579068928,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045289893952,277566455808,70646780411968,277566455808,277969125376,18085045289877504,277969125376,70646780395520,4629771063247519808,277969108992,70646310649920,277969108992,277566472192,4629771063247503360,277566472192,70646310633472,18085044820131904,277566455808,70646310649920,277566455808,277566472192,18085044820115456,277566472192,70646310633472,4629771063515955200,277566455808,70646579085312,277566455808,277834907712,4629771063515938816,277834907712,70646579068928,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045222785088,277566455808,70646713303104,277566455808,277969125376,18085045222768640,277969125376,70646713286656,4629771063247519808,277969108992,70646310649920,277969108992,277566472192,4629771063247503360,277566472192,70646310633472,18085044820131904,277566455808,70646310649920,277566455808,278086565952,18085044820115456,278086565952,70646310633472,4629771063515955200,278086549504,70646579085312,278086549504,277834907712,4629771063515938816,277834907712,70646579068928,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045222785088,277566455808,70646713303104,277566455808,277969125376,18085045222768640,277969125376,70646713286656,4629771063247519808,277969108992,70646310649920,277969108992,277566472192,4629771063247503360,277566472192,70646310633472,18085044820131904,277566455808,70646310649920,277566455808,278069788736,18085044820115456,278069788736,70646310633472,4629771063515955200,278069772288,70646579085312,278069772288,277834907712,4629771063515938816,277834907712,70646579068928,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045222785088,277566455808,70646713303104,277566455808,277834907648,18085045222768640,277834907648,70646713286656,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045340225536,277566455808,70646830743552,277566455808,278036234304,18085045340209152,278036234304,70646830727168,4629771063515955200,278036217856,70646579085312,278036217856,277834907712,4629771063515938816,277834907712,70646579068928,18085044820131840,277834891264,70646310649856,277834891264,277566472256,18085044820115456,277566472256,70646310633472,18085045222785088,277566455808,70646713303104,277566455808,277834907648,18085045222768640,277834907648,70646713286656,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045323448320,277566455808,70646813966336,277566455808,278036234304,18085045323431936,278036234304,70646813949952,4629771063515955200,278036217856,70646579085312,278036217856,277566472256,4629771063515938816,277566472256,70646579068928,18085044820131840,277566455808,70646310649856,277566455808,277566472256,18085044820115456,277566472256,70646310633472,18085045088567360,277566455808,70646579085376,277566455808,277834907648,18085045088550912,277834907648,70646579068928,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045289893888,277566455808,70646780411904,277566455808,277969125440,18085045289877504,277969125440,70646780395520,4629771063515955200,277969108992,70646579085312,277969108992,277566472256,4629771063515938816,277566472256,70646579068928,18085044820131840,277566455808,70646310649856,277566455808,277566472256,18085044820115456,277566472256,70646310633472,18085045088567360,277566455808,70646579085376,277566455808,277834907648,18085045088550912,277834907648,70646579068928,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045289893888,277566455808,70646780411904,277566455808,277969125440,18085045289877504,277969125440,70646780395520,4629771063247519744,277969108992,70646310649856,277969108992,277566472256,4629771063247503360,277566472256,70646310633472,18085044820131840,277566455808,70646310649856,277566455808,277566472256,18085044820115456,277566472256,70646310633472,18085045088567360,277566455808,70646579085376,277566455808,277834907648,18085045088550912,277834907648,70646579068928,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045222785024,277566455808,70646713303040,277566455808,277969125440,18085045222768640,277969125440,70646713286656,4629771063247519744,277969108992,70646310649856,277969108992,277566472256,4629771063247503360,277566472256,70646310633472,18085044820131840,277566455808,70646310649856,277566455808,278086565888,18085044820115456,278086565888,70646310633472,18085045088567360,278086549504,70646579085376,278086549504,277834907648,18085045088550912,277834907648,70646579068928,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045222785024,277566455808,70646713303040,277566455808,277969125440,18085045222768640,277969125440,70646713286656,4629771063247519744,277969108992,70646310649856,277969108992,277566472256,4629771063247503360,277566472256,70646310633472,18085044820131840,277566455808,70646310649856,277566455808,278069788672,18085044820115456,278069788672,70646310633472,18085045088567360,278069772288,70646579085376,278069772288,277834907648,18085045088550912,277834907648,70646579068928,4629771063247519808,277834891264,70646310649920,277834891264,277566472192,4629771063247503360,277566472192,70646310633472,18085045222785024,277566455808,70646713303040,277566455808,277834907712,18085045222768640,277834907712,70646713286656,4629771063247519744,277834891264,70646310649856,277834891264,277566472256,4629771063247503360,277566472256,70646310633472,0],[9259542123257036928,551374848128,9259542122200039424,551643250688,141288326332416,550837977088,141288863170560,550837944320,36170086150602752,550837977088,9259542123257004032,551374815232,141288326332544,551777501184,141288326299648,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551374848128,141288326299648,551777468416,9259542122200072192,550837977088,36170085882134528,550837944320,141289265856512,551374848000,141288326299648,551374815232,9259542122200072320,551643283456,9259542122200039424,550837944320,141288863203456,550837977216,141289265823744,551374815232,9259542123240259712,551374848128,9259542122200039424,551643250688,141288326332416,550837977088,141288863170560,550837944320,36170086150602752,550837977088,9259542123240226816,551374815232,141288326332544,551777501184,141288326299648,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551374848128,141288326299648,551777468416,9259542122200072192,551894941824,36170085882134528,550837944320,141289131638784,550837977088,141288326299648,551374815232,9259542122200072320,551643283456,9259542122200039424,551894908928,141288863203456,550837977216,141289131606016,550837944320,9259542123206705280,551374848128,9259542122200039424,551643250688,141288326332416,550837977088,141288863170560,550837944320,36170086150602752,550837977088,9259542123206672384,551374815232,141288326332544,551777501184,141288326299648,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551374848128,141288326299648,551777468416,9259542122200072192,551878164608,36170085882134528,550837944320,141289131638784,550837977088,141288326299648,551374815232,9259542122200072320,551643283456,9259542122200039424,551878131712,141288863203456,550837977216,141289131606016,550837944320,9259542123206705280,551374848128,9259542122200039424,551643250688,141288326332416,550837977088,141288863170560,550837944320,36170085882167296,550837977088,9259542123206672384,551374815232,141288326332544,551643283456,141288326299648,550837944320,36170085882167424,550837977216,36170085882134528,550837944320,141288326332416,551374848128,141288326299648,551643250688,9259542122200072192,551844610176,36170085882134528,550837944320,141289131638784,550837977088,141288326299648,551374815232,9259542122200072320,551643283456,9259542122200039424,551844577280,141288863203456,550837977216,141289131606016,550837944320,9259542123139596416,551374848128,9259542122200039424,551643250688,141288326332416,550837977088,141288863170560,550837944320,36170085882167296,550837977088,9259542123139563520,551374815232,141288326332544,551643283456,141288326299648,550837944320,36170085882167424,550837977216,36170085882134528,550837944320,141288326332416,551374848128,141288326299648,551643250688,9259542122200072192,551844610176,36170085882134528,550837944320,141289131638784,550837977088,141288326299648,551374815232,9259542122200072320,551374848000,9259542122200039424,551844577280,141288863203456,550837977216,141289131606016,550837944320,9259542123139596416,551374848128,9259542122200039424,551374815232,141288326332416,550837977088,141288863170560,550837944320,36170085882167296,550837977088,9259542123139563520,551374815232,141288326332544,551643283456,141288326299648,550837944320,36170085882167424,550837977216,36170085882134528,550837944320,141288326332416,551374848128,141288326299648,551643250688,9259542122200072192,551777501312,36170085882134528,550837944320,141289131638784,550837977088,141288326299648,551374815232,9259542122200072320,551374848000,9259542122200039424,551777468416,141288863203456,550837977216,141289131606016,550837944320,9259542123139596416,551374848128,9259542122200039424,551374815232,141288326332416,550837977088,141288863170560,550837944320,36170085882167296,550837977088,9259542123139563520,551374815232,141288326332544,551643283456,141288326299648,550837944320,36170085345296512,550837977216,36170085882134528,550837944320,141289383297152,551374848128,141288326299648,551643250688,9259542122200072192,551777501312,36170085345263616,550837944320,141289131638784,550837977088,141289383264256,551374815232,9259542122200072320,551374848000,9259542122200039424,551777468416,141288863203456,550837977216,141289131606016,550837944320,9259542123139596416,551374848128,9259542122200039424,551374815232,141288326332416,550837977088,141288863170560,550837944320,36170085882167296,550837977088,9259542123139563520,551374815232,141288326332544,551643283456,141288326299648,550837944320,36170085345296512,550837977216,36170085882134528,550837944320,141289366519936,551374848128,141288326299648,551643250688,9259542122200072192,551777501312,36170085345263616,550837944320,141289131638784,550837977088,141289366487040,551374815232,9259542122200072320,551374848000,9259542122200039424,551777468416,141288863203456,550837977216,141289131606016,550837944320,9259542123005378688,550837977216,9259542122200039424,551374815232,141288326332416,551894941824,141288863170560,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551643283456,141288326299648,551894908928,36170085345296512,550837977216,36170085882134528,550837944320,141289332965504,551374848128,141288326299648,551643250688,9259542122200072192,551777501312,36170085345263616,550837944320,141289131638784,550837977088,141289332932608,551374815232,9259542122200072320,551374848000,9259542122200039424,551777468416,141288863203456,550837977216,141289131606016,550837944320,9259542123005378688,550837977216,9259542122200039424,551374815232,141288326332416,551878164608,141288863170560,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551643283456,141288326299648,551878131712,36170085345296512,550837977216,36170085882134528,550837944320,141289332965504,551374848128,141288326299648,551643250688,9259542122200072192,551643283584,36170085345263616,550837944320,141288863203328,550837977088,141289332932608,551374815232,9259542122200072320,551374848000,9259542122200039424,551643250688,141288863203456,550837977216,141288863170560,550837944320,9259542123005378688,550837977216,9259542122200039424,551374815232,141288326332416,551844610176,141288863170560,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551643283456,141288326299648,551844577280,36170085345296512,550837977216,36170085882134528,550837944320,141289265856640,551374848128,141288326299648,551643250688,9259542122200072192,551643283584,36170085345263616,550837944320,141288863203328,550837977088,141289265823744,551374815232,9259542122200072320,551374848000,9259542122200039424,551643250688,141288863203456,550837977216,141288863170560,550837944320,9259542123005378688,550837977216,9259542122200039424,551374815232,141288326332416,551844610176,141288863170560,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551374848000,141288326299648,551844577280,36170085345296512,550837977216,36170085882134528,550837944320,141289265856640,551374848128,141288326299648,551374815232,9259542122200072192,551643283584,36170085345263616,550837944320,141288863203328,550837977088,141289265823744,551374815232,9259542122200072320,551374848000,9259542122200039424,551643250688,141288863203456,550837977216,141288863170560,550837944320,9259542123005378688,550837977216,9259542122200039424,551374815232,141288326332416,551777501312,141288863170560,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551374848000,141288326299648,551777468416,36170085345296512,550837977216,36170085882134528,550837944320,141289265856640,551374848128,141288326299648,551374815232,9259542122200072192,551643283584,36170085345263616,550837944320,141288863203328,550837977088,141289265823744,551374815232,9259542123257036800,551374848000,9259542122200039424,551643250688,141288326332544,550837977216,141288863170560,550837944320,9259542123005378688,550837977216,9259542123257004032,551374815232,141288326332416,551777501312,141288326299648,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551374848000,141288326299648,551777468416,36170085345296512,550837977216,36170085882134528,550837944320,141289265856640,551374848128,141288326299648,551374815232,9259542122200072192,551643283584,36170085345263616,550837944320,141288863203328,550837977088,141289265823744,551374815232,9259542123240259584,551374848000,9259542122200039424,551643250688,141288326332544,550837977216,141288863170560,550837944320,9259542123005378688,550837977216,9259542123240226816,551374815232,141288326332416,551777501312,141288326299648,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551374848000,141288326299648,551777468416,36170085345296512,551894941696,36170085882134528,550837944320,141289131638912,550837977216,141288326299648,551374815232,9259542122200072192,551643283584,36170085345263616,551894908928,141288863203328,550837977088,141289131606016,550837944320,9259542123206705152,551374848000,9259542122200039424,551643250688,141288326332544,550837977216,141288863170560,550837944320,9259542123005378688,550837977216,9259542123206672384,551374815232,141288326332416,551777501312,141288326299648,550837944320,36170085882167296,550837977088,9259542123005345792,550837944320,141288326332544,551374848000,141288326299648,551777468416,36170085345296512,551878164480,36170085882134528,550837944320,141289131638912,550837977216,141288326299648,551374815232,9259542122200072192,551643283584,36170085345263616,551878131712,141288863203328,550837977088,141289131606016,550837944320,9259542123206705152,551374848000,9259542122200039424,551643250688,141288326332544,550837977216,141288863170560,550837944320,9259542122736943232,550837977216,9259542123206672384,551374815232,141288326332416,551643283584,141288326299648,550837944320,36170085882167296,550837977088,9259542122736910336,550837944320,141288326332544,551374848000,141288326299648,551643250688,36170085345296512,551844610048,36170085882134528,550837944320,141289131638912,550837977216,141288326299648,551374815232,9259542122200072192,551643283584,36170085345263616,551844577280,141288863203328,550837977088,141289131606016,550837944320,9259542123139596288,551374848000,9259542122200039424,551643250688,141288326332544,550837977216,141288863170560,550837944320,9259542122736943232,550837977216,9259542123139563520,551374815232,141288326332416,551643283584,141288326299648,550837944320,36170085882167296,550837977088,9259542122736910336,550837944320,141288326332544,551374848000,141288326299648,551643250688,36170085345296512,551844610048,36170085882134528,550837944320,141289131638912,550837977216,141288326299648,551374815232,9259542122200072192,551374848128,36170085345263616,551844577280,141288863203328,550837977088,141289131606016,550837944320,9259542123139596288,551374848000,9259542122200039424,551374815232,141288326332544,550837977216,141288863170560,550837944320,9259542122736943232,550837977216,9259542123139563520,551374815232,141288326332416,551643283584,141288326299648,550837944320,36170085882167296,550837977088,9259542122736910336,550837944320,141288326332544,551374848000,141288326299648,551643250688,36170085345296512,551777501184,36170085882134528,550837944320,141289131638912,550837977216,141288326299648,551374815232,9259542122200072192,551374848128,36170085345263616,551777468416,141288863203328,550837977088,141289131606016,550837944320,9259542123139596288,551374848000,9259542122200039424,551374815232,141288326332544,550837977216,141288863170560,550837944320,9259542122736943232,550837977216,9259542123139563520,551374815232,141288326332416,551643283584,141288326299648,550837944320,36170085345296384,550837977088,9259542122736910336,550837944320,141289383297024,551374848000,141288326299648,551643250688,36170085345296512,551777501184,36170085345263616,550837944320,141289131638912,550837977216,141289383264256,551374815232,9259542122200072192,551374848128,36170085345263616,551777468416,141288863203328,550837977088,141289131606016,550837944320,9259542123139596288,551374848000,9259542122200039424,551374815232,141288326332544,550837977216,141288863170560,550837944320,9259542122736943232,550837977216,9259542123139563520,551374815232,141288326332416,551643283584,141288326299648,550837944320,36170085345296384,550837977088,9259542122736910336,550837944320,141289366519808,551374848000,141288326299648,551643250688,36170085345296512,551777501184,36170085345263616,550837944320,141289131638912,550837977216,141289366487040,551374815232,9259542122200072192,551374848128,36170085345263616,551777468416,141288863203328,550837977088,141289131606016,550837944320,9259542123005378560,550837977088,9259542122200039424,551374815232,141288326332544,551894941696,141288863170560,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551643283584,141288326299648,551894908928,36170085345296384,550837977088,9259542122736910336,550837944320,141289332965376,551374848000,141288326299648,551643250688,36170085345296512,551777501184,36170085345263616,550837944320,141289131638912,550837977216,141289332932608,551374815232,9259542122200072192,551374848128,36170085345263616,551777468416,141288863203328,550837977088,141289131606016,550837944320,9259542123005378560,550837977088,9259542122200039424,551374815232,141288326332544,551878164480,141288863170560,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551643283584,141288326299648,551878131712,36170085345296384,550837977088,9259542122736910336,550837944320,141289332965376,551374848000,141288326299648,551643250688,36170085345296512,551643283456,36170085345263616,550837944320,141288863203456,550837977216,141289332932608,551374815232,9259542122200072192,551374848128,36170085345263616,551643250688,141288863203328,550837977088,141288863170560,550837944320,9259542123005378560,550837977088,9259542122200039424,551374815232,141288326332544,551844610048,141288863170560,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551643283584,141288326299648,551844577280,36170085345296384,550837977088,9259542122736910336,550837944320,141289265856512,551374848000,141288326299648,551643250688,36170085345296512,551643283456,36170085345263616,550837944320,141288863203456,550837977216,141289265823744,551374815232,9259542122200072192,551374848128,36170085345263616,551643250688,141288863203328,550837977088,141288863170560,550837944320,9259542123005378560,550837977088,9259542122200039424,551374815232,141288326332544,551844610048,141288863170560,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551374848128,141288326299648,551844577280,36170085345296384,550837977088,9259542122736910336,550837944320,141289265856512,551374848000,141288326299648,551374815232,36170085345296512,551643283456,36170085345263616,550837944320,141288863203456,550837977216,141289265823744,551374815232,9259542122200072192,551374848128,36170085345263616,551643250688,141288863203328,550837977088,141288863170560,550837944320,9259542123005378560,550837977088,9259542122200039424,551374815232,141288326332544,551777501184,141288863170560,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551374848128,141288326299648,551777468416,36170085345296384,550837977088,9259542122736910336,550837944320,141289265856512,551374848000,141288326299648,551374815232,36170085345296512,551643283456,36170085345263616,550837944320,141288863203456,550837977216,141289265823744,551374815232,36170086402261120,551374848128,36170085345263616,551643250688,141288326332416,550837977088,141288863170560,550837944320,9259542123005378560,550837977088,36170086402228224,551374815232,141288326332544,551777501184,141288326299648,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551374848128,141288326299648,551777468416,36170085345296384,550837977088,9259542122736910336,550837944320,141289265856512,551374848000,141288326299648,551374815232,36170085345296512,551643283456,36170085345263616,550837944320,141288863203456,550837977216,141289265823744,551374815232,36170086385483904,551374848128,36170085345263616,551643250688,141288326332416,550837977088,141288863170560,550837944320,9259542123005378560,550837977088,36170086385451008,551374815232,141288326332544,551777501184,141288326299648,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551374848128,141288326299648,551777468416,36170085345296384,551894941824,9259542122736910336,550837944320,141289131638784,550837977088,141288326299648,551374815232,36170085345296512,551643283456,36170085345263616,551894908928,141288863203456,550837977216,141289131606016,550837944320,36170086351929472,551374848128,36170085345263616,551643250688,141288326332416,550837977088,141288863170560,550837944320,9259542123005378560,550837977088,36170086351896576,551374815232,141288326332544,551777501184,141288326299648,550837944320,9259542122736943232,550837977216,9259542123005345792,550837944320,141288326332416,551374848128,141288326299648,551777468416,36170085345296384,551878164608,9259542122736910336,550837944320,141289131638784,550837977088,141288326299648,551374815232,36170085345296512,551643283456,36170085345263616,551878131712,141288863203456,550837977216,141289131606016,550837944320,36170086351929472,551374848128,36170085345263616,551643250688,141288326332416,550837977088,141288863170560,550837944320,9259542122736943104,550837977088,36170086351896576,551374815232,141288326332544,551643283456,141288326299648,550837944320,9259542122736943232,550837977216,9259542122736910336,550837944320,141288326332416,551374848128,141288326299648,551643250688,36170085345296384,551844610176,9259542122736910336,550837944320,141289131638784,550837977088,141288326299648,551374815232,36170085345296512,551643283456,36170085345263616,551844577280,141288863203456,550837977216,141289131606016,550837944320,36170086284820608,551374848128,36170085345263616,551643250688,141288326332416,550837977088,141288863170560,550837944320,9259542122736943104,550837977088,36170086284787712,551374815232,141288326332544,551643283456,141288326299648,550837944320,9259542122736943232,550837977216,9259542122736910336,550837944320,141288326332416,551374848128,141288326299648,551643250688,36170085345296384,551844610176,9259542122736910336,550837944320,141289131638784,550837977088,141288326299648,551374815232,36170085345296512,551374848000,36170085345263616,551844577280,141288863203456,550837977216,141289131606016,550837944320,36170086284820608,551374848128,36170085345263616,551374815232,141288326332416,550837977088,141288863170560,550837944320,9259542122736943104,550837977088,36170086284787712,551374815232,141288326332544,551643283456,141288326299648,550837944320,9259542122736943232,550837977216,9259542122736910336,550837944320,141288326332416,551374848128,141288326299648,551643250688,36170085345296384,551777501312,9259542122736910336,550837944320,141289131638784,550837977088,141288326299648,551374815232,36170085345296512,551374848000,36170085345263616,551777468416,141288863203456,550837977216,141289131606016,550837944320,36170086284820608,551374848128,36170085345263616,551374815232,141288326332416,550837977088,141288863170560,550837944320,9259542122736943104,550837977088,36170086284787712,551374815232,141288326332544,551643283456,141288326299648,550837944320,9259542122200072320,550837977216,9259542122736910336,550837944320,141289383297152,551374848128,141288326299648,551643250688,36170085345296384,551777501312,9259542122200039424,550837944320,141289131638784,550837977088,141289383264256,551374815232,36170085345296512,551374848000,36170085345263616,551777468416,141288863203456,550837977216,141289131606016,550837944320,36170086284820608,551374848128,36170085345263616,551374815232,141288326332416,550837977088,141288863170560,550837944320,9259542122736943104,550837977088,36170086284787712,551374815232,141288326332544,551643283456,141288326299648,550837944320,9259542122200072320,550837977216,9259542122736910336,550837944320,141289366519936,551374848128,141288326299648,551643250688,36170085345296384,551777501312,9259542122200039424,550837944320,141289131638784,550837977088,141289366487040,551374815232,36170085345296512,551374848000,36170085345263616,551777468416,141288863203456,550837977216,141289131606016,550837944320,36170086150602880,550837977216,36170085345263616,551374815232,141288326332416,551894941824,141288863170560,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551643283456,141288326299648,551894908928,9259542122200072320,550837977216,9259542122736910336,550837944320,141289332965504,551374848128,141288326299648,551643250688,36170085345296384,551777501312,9259542122200039424,550837944320,141289131638784,550837977088,141289332932608,551374815232,36170085345296512,551374848000,36170085345263616,551777468416,141288863203456,550837977216,141289131606016,550837944320,36170086150602880,550837977216,36170085345263616,551374815232,141288326332416,551878164608,141288863170560,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551643283456,141288326299648,551878131712,9259542122200072320,550837977216,9259542122736910336,550837944320,141289332965504,551374848128,141288326299648,551643250688,36170085345296384,551643283584,9259542122200039424,550837944320,141288863203328,550837977088,141289332932608,551374815232,36170085345296512,551374848000,36170085345263616,551643250688,141288863203456,550837977216,141288863170560,550837944320,36170086150602880,550837977216,36170085345263616,551374815232,141288326332416,551844610176,141288863170560,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551643283456,141288326299648,551844577280,9259542122200072320,550837977216,9259542122736910336,550837944320,141289265856640,551374848128,141288326299648,551643250688,36170085345296384,551643283584,9259542122200039424,550837944320,141288863203328,550837977088,141289265823744,551374815232,36170085345296512,551374848000,36170085345263616,551643250688,141288863203456,550837977216,141288863170560,550837944320,36170086150602880,550837977216,36170085345263616,551374815232,141288326332416,551844610176,141288863170560,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551374848000,141288326299648,551844577280,9259542122200072320,550837977216,9259542122736910336,550837944320,141289265856640,551374848128,141288326299648,551374815232,36170085345296384,551643283584,9259542122200039424,550837944320,141288863203328,550837977088,141289265823744,551374815232,36170085345296512,551374848000,36170085345263616,551643250688,141288863203456,550837977216,141288863170560,550837944320,36170086150602880,550837977216,36170085345263616,551374815232,141288326332416,551777501312,141288863170560,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551374848000,141288326299648,551777468416,9259542122200072320,550837977216,9259542122736910336,550837944320,141289265856640,551374848128,141288326299648,551374815232,36170085345296384,551643283584,9259542122200039424,550837944320,141288863203328,550837977088,141289265823744,551374815232,36170086402260992,551374848000,36170085345263616,551643250688,141288326332544,550837977216,141288863170560,550837944320,36170086150602880,550837977216,36170086402228224,551374815232,141288326332416,551777501312,141288326299648,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551374848000,141288326299648,551777468416,9259542122200072320,550837977216,9259542122736910336,550837944320,141289265856640,551374848128,141288326299648,551374815232,36170085345296384,551643283584,9259542122200039424,550837944320,141288863203328,550837977088,141289265823744,551374815232,36170086385483776,551374848000,36170085345263616,551643250688,141288326332544,550837977216,141288863170560,550837944320,36170086150602880,550837977216,36170086385451008,551374815232,141288326332416,551777501312,141288326299648,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551374848000,141288326299648,551777468416,9259542122200072320,551894941696,9259542122736910336,550837944320,141289131638912,550837977216,141288326299648,551374815232,36170085345296384,551643283584,9259542122200039424,551894908928,141288863203328,550837977088,141289131606016,550837944320,36170086351929344,551374848000,36170085345263616,551643250688,141288326332544,550837977216,141288863170560,550837944320,36170086150602880,550837977216,36170086351896576,551374815232,141288326332416,551777501312,141288326299648,550837944320,9259542122736943104,550837977088,36170086150569984,550837944320,141288326332544,551374848000,141288326299648,551777468416,9259542122200072320,551878164480,9259542122736910336,550837944320,141289131638912,550837977216,141288326299648,551374815232,36170085345296384,551643283584,9259542122200039424,551878131712,141288863203328,550837977088,141289131606016,550837944320,36170086351929344,551374848000,36170085345263616,551643250688,141288326332544,550837977216,141288863170560,550837944320,36170085882167424,550837977216,36170086351896576,551374815232,141288326332416,551643283584,141288326299648,550837944320,9259542122736943104,550837977088,36170085882134528,550837944320,141288326332544,551374848000,141288326299648,551643250688,9259542122200072320,551844610048,9259542122736910336,550837944320,141289131638912,550837977216,141288326299648,551374815232,36170085345296384,551643283584,9259542122200039424,551844577280,141288863203328,550837977088,141289131606016,550837944320,36170086284820480,551374848000,36170085345263616,551643250688,141288326332544,550837977216,141288863170560,550837944320,36170085882167424,550837977216,36170086284787712,551374815232,141288326332416,551643283584,141288326299648,550837944320,9259542122736943104,550837977088,36170085882134528,550837944320,141288326332544,551374848000,141288326299648,551643250688,9259542122200072320,551844610048,9259542122736910336,550837944320,141289131638912,550837977216,141288326299648,551374815232,36170085345296384,551374848128,9259542122200039424,551844577280,141288863203328,550837977088,141289131606016,550837944320,36170086284820480,551374848000,36170085345263616,551374815232,141288326332544,550837977216,141288863170560,550837944320,36170085882167424,550837977216,36170086284787712,551374815232,141288326332416,551643283584,141288326299648,550837944320,9259542122736943104,550837977088,36170085882134528,550837944320,141288326332544,551374848000,141288326299648,551643250688,9259542122200072320,551777501184,9259542122736910336,550837944320,141289131638912,550837977216,141288326299648,551374815232,36170085345296384,551374848128,9259542122200039424,551777468416,141288863203328,550837977088,141289131606016,550837944320,36170086284820480,551374848000,36170085345263616,551374815232,141288326332544,550837977216,141288863170560,550837944320,36170085882167424,550837977216,36170086284787712,551374815232,141288326332416,551643283584,141288326299648,550837944320,9259542122200072192,550837977088,36170085882134528,550837944320,141289383297024,551374848000,141288326299648,551643250688,9259542122200072320,551777501184,9259542122200039424,550837944320,141289131638912,550837977216,141289383264256,551374815232,36170085345296384,551374848128,9259542122200039424,551777468416,141288863203328,550837977088,141289131606016,550837944320,36170086284820480,551374848000,36170085345263616,551374815232,141288326332544,550837977216,141288863170560,550837944320,36170085882167424,550837977216,36170086284787712,551374815232,141288326332416,551643283584,141288326299648,550837944320,9259542122200072192,550837977088,36170085882134528,550837944320,141289366519808,551374848000,141288326299648,551643250688,9259542122200072320,551777501184,9259542122200039424,550837944320,141289131638912,550837977216,141289366487040,551374815232,36170085345296384,551374848128,9259542122200039424,551777468416,141288863203328,550837977088,141289131606016,550837944320,36170086150602752,550837977088,36170085345263616,551374815232,141288326332544,551894941696,141288863170560,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551643283584,141288326299648,551894908928,9259542122200072192,550837977088,36170085882134528,550837944320,141289332965376,551374848000,141288326299648,551643250688,9259542122200072320,551777501184,9259542122200039424,550837944320,141289131638912,550837977216,141289332932608,551374815232,36170085345296384,551374848128,9259542122200039424,551777468416,141288863203328,550837977088,141289131606016,550837944320,36170086150602752,550837977088,36170085345263616,551374815232,141288326332544,551878164480,141288863170560,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551643283584,141288326299648,551878131712,9259542122200072192,550837977088,36170085882134528,550837944320,141289332965376,551374848000,141288326299648,551643250688,9259542122200072320,551643283456,9259542122200039424,550837944320,141288863203456,550837977216,141289332932608,551374815232,36170085345296384,551374848128,9259542122200039424,551643250688,141288863203328,550837977088,141288863170560,550837944320,36170086150602752,550837977088,36170085345263616,551374815232,141288326332544,551844610048,141288863170560,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551643283584,141288326299648,551844577280,9259542122200072192,550837977088,36170085882134528,550837944320,141289265856512,551374848000,141288326299648,551643250688,9259542122200072320,551643283456,9259542122200039424,550837944320,141288863203456,550837977216,141289265823744,551374815232,36170085345296384,551374848128,9259542122200039424,551643250688,141288863203328,550837977088,141288863170560,550837944320,36170086150602752,550837977088,36170085345263616,551374815232,141288326332544,551844610048,141288863170560,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551374848128,141288326299648,551844577280,9259542122200072192,550837977088,36170085882134528,550837944320,141289265856512,551374848000,141288326299648,551374815232,9259542122200072320,551643283456,9259542122200039424,550837944320,141288863203456,550837977216,141289265823744,551374815232,36170085345296384,551374848128,9259542122200039424,551643250688,141288863203328,550837977088,141288863170560,550837944320,36170086150602752,550837977088,36170085345263616,551374815232,141288326332544,551777501184,141288863170560,550837944320,36170085882167424,550837977216,36170086150569984,550837944320,141288326332416,551374848128,141288326299648,551777468416,9259542122200072192,550837977088,36170085882134528,550837944320,141289265856512,551374848000,141288326299648,551374815232,9259542122200072320,551643283456,9259542122200039424,550837944320,141288863203456,550837977216,141289265823744,551374815232,0],[72341259464802561,72340194312912896,72340177133043712,1108118339584,283665426874625,282600274984960,282583095115776,1228377489664,1108118405377,1108118339584,1159657947136,1228377489664,1108118405377,1108118339584,1159657947136,72340177132978176,72340194312847360,1159658012672,1108118405120,282583095050240,282600274919424,1159658012672,1108118405120,1125298208768,72340177133043969,72340177133043712,72340194312847360,1125298208768,282583095116033,282583095115776,282600274919424,1108118405376,1159658012929,1125298208768,1108118339584,1108118405376,1159658012929,1125298208768,1108118339584,72340228672585728,72340177132978176,1108118405120,1640694349824,282634634657792,282583095050240,1108118405120,1640694349824,1108118339584,72340194312913153,72340297392128000,72340177132978176,1108118339584,282600274985217,282703354200064,282583095050240,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177132978176,72340297392062464,1125298274304,1108118405120,282583095050240,282703354134528,1125298274304,1108118405120,72341259464802560,72340177133043969,72340177133043712,72340228672585728,283665426874624,282583095116033,282583095115776,282634634657792,1108118405376,1125298208768,1159657947136,72340177133043712,1108118405376,1125298208768,1159657947136,282583095115776,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,72340177133043968,72340228672651521,72340194312847360,72340177132978176,282583095116032,282634634723585,282600274919424,282583095050240,1159658012928,1108118339584,1108118339584,72340297392128000,1159658012928,1108118339584,1108118339584,282703354200064,72340177132978176,72340194312847360,1640694349824,1108118405120,282583095050240,282600274919424,1640694349824,1108118405120,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118405376,1365816377344,1125298208768,72340177133043712,1108118405376,1365816377344,1125298208768,282583095115776,72340297392062464,72340177132978176,1108118405120,1159658012672,282703354134528,282583095050240,1108118405120,1159658012672,72340177133043968,72340194312913153,72340228672585728,72340177132978176,282583095116032,282600274985217,282634634657792,282583095050240,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,72340177132978176,1159658012929,1125298274304,1108118339584,282583095050240,1159658012929,1125298274304,1108118339584,72340228672651520,72340177133043969,72340177132978176,72340434831015936,282634634723584,282583095116033,282583095050240,282840793088000,1108118339584,1125298208768,72340297392128000,72340177133043712,1108118339584,1125298208768,282703354200064,282583095115776,72340194312847360,1108118405377,1108118405120,1125298208768,282600274919424,1108118405377,1108118405120,1125298208768,72340177133043968,72340297392128257,72340194312847360,72340177132978176,282583095116032,282703354200321,282600274919424,282583095050240,1365816377344,1108118339584,72340177133043712,72340228672651264,1365816377344,1108118339584,282583095115776,282634634723328,72340177132978176,1125298274561,1159658012672,1108118339584,282583095050240,1125298274561,1159658012672,1108118339584,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118339584,1159657947136,72340194312912896,72340177133043712,1108118339584,1159657947136,282600274984960,282583095115776,1159658012928,1108118405377,1108118339584,1228377423872,1159658012928,1108118405377,1108118339584,1228377423872,72340177133043968,72340194312847360,72340434831015936,1108118405120,282583095116032,282600274919424,282840793088000,1108118405120,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,1108118405376,1640694350081,1125298208768,1108118339584,1108118405376,1640694350081,1125298208768,1108118339584,72340297392128256,72340177132978176,72340177132978176,1159658012672,282703354200320,282583095050240,282583095050240,1159658012672,1108118339584,1125298208768,72340228672651264,72340177133043712,1108118339584,1125298208768,282634634723328,282583095115776,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177133043968,72340228672585728,72340194312847360,1108118405120,282583095116032,282634634657792,282600274919424,1108118405120,1159657947136,72340177133043969,72340177133043712,72341259464736768,1159657947136,282583095116033,282583095115776,283665426808832,1108118405376,1125298274561,1228377423872,1108118339584,1108118405376,1125298274561,1228377423872,1108118339584,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,1108118339584,72340297392128257,72340194312912896,72340177132978176,1108118339584,282703354200321,282600274984960,282583095050240,1640694350080,1108118405377,1108118339584,1159657947136,1640694350080,1108118405377,1108118339584,1159657947136,72340177132978176,72340194312847360,1159658012672,1108118405120,282583095050240,282600274919424,1159658012672,1108118405120,1125298208768,72340177133043969,72340177133043712,72340194312847360,1125298208768,282583095116033,282583095115776,282600274919424,1108118405376,1159658012929,1125298208768,1108118339584,1108118405376,1159658012929,1125298208768,1108118339584,72340228672585728,72340177132978176,1108118405120,1228377489408,282634634657792,282583095050240,1108118405120,1228377489408,72340177133043968,72340194312913153,72341259464736768,72340177132978176,282583095116032,282600274985217,283665426808832,282583095050240,1125298274560,1108118339584,1108118339584,72340194312912896,1125298274560,1108118339584,1108118339584,282600274984960,72340177132978176,72340434831015936,1125298274304,1108118405120,282583095050240,282840793088000,1125298274304,1108118405120,72340297392128256,72340177133043969,72340177132978176,72340228672585728,282703354200320,282583095116033,282583095050240,282634634657792,1108118405376,1125298208768,1159657947136,72340177133043712,1108118405376,1125298208768,1159657947136,282583095115776,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,72340177133043968,72340228672651521,72340194312847360,72340177132978176,282583095116032,282634634723585,282600274919424,282583095050240,1159658012928,1108118339584,1108118339584,72340434831081472,1159658012928,1108118339584,1108118339584,282840793153536,72340177132978176,72340194312847360,1228377489408,1108118405120,282583095050240,282600274919424,1228377489408,1108118405120,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118339584,1228377423872,72340194312912896,72340177133043712,1108118339584,1228377423872,282600274984960,282583095115776,72340434831015936,1108118405377,1108118405120,1159657947136,282840793088000,1108118405377,1108118405120,1159657947136,72340177133043968,72340194312913153,72340228672585728,72340177132978176,282583095116032,282600274985217,282634634657792,282583095050240,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,72340177132978176,1159658012929,1125298274304,1108118339584,282583095050240,1159658012929,1125298274304,1108118339584,72340228672651520,72340177133043969,72340177132978176,72340297392062464,282634634723584,282583095116033,282583095050240,282703354134528,1108118339584,1125298208768,72340434831081472,72340177133043712,1108118339584,1125298208768,282840793153536,282583095115776,72340194312847360,1108118405377,1108118405120,1125298208768,282600274919424,1108118405377,1108118405120,1125298208768,72340177133043968,72341259464736768,72340194312847360,72340177132978176,282583095116032,283665426808832,282600274919424,282583095050240,1228377423872,1108118339584,72340177133043712,72340228672651264,1228377423872,1108118339584,282583095115776,282634634723328,1108118405376,1125298274561,1159657947136,1108118339584,1108118405376,1125298274561,1159657947136,1108118339584,72340194312913152,72340177132978176,72340177132978176,1125298274304,282600274985216,282583095050240,282583095050240,1125298274304,1108118339584,1159657947136,72340194312912896,72340177133043712,1108118339584,1159657947136,282600274984960,282583095115776,1159658012928,1108118405377,1108118339584,1640694284288,1159658012928,1108118405377,1108118339584,1640694284288,72340177133043968,72340194312847360,72340297392062464,1108118405120,282583095116032,282600274919424,282703354134528,1108118405120,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,1108118405376,1228377489665,1125298208768,1108118339584,1108118405376,1228377489665,1125298208768,1108118339584,72341259464736768,72340177132978176,72340177132978176,1159658012672,283665426808832,282583095050240,282583095050240,1159658012672,1108118339584,72340194312913153,72340228672651264,72340177132978176,1108118339584,282600274985217,282634634723328,282583095050240,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177132978176,72340228672585728,1125298274304,1108118405120,282583095050240,282634634657792,1125298274304,1108118405120,1159657947136,72340177133043969,72340177133043712,72340297392062464,1159657947136,282583095116033,282583095115776,282703354134528,1108118405376,1125298274561,1640694284288,1108118339584,1108118405376,1125298274561,1640694284288,1108118339584,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,1108118339584,72340434831081729,72340194312912896,72340177132978176,1108118339584,282840793153793,282600274984960,282583095050240,1228377489664,1108118405377,1108118339584,1159657947136,1228377489664,1108118405377,1108118339584,1159657947136,72340177132978176,72340194312847360,1159658012672,1108118405120,282583095050240,282600274919424,1159658012672,1108118405120,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118405376,1159657947136,1125298208768,72340177133043712,1108118405376,1159657947136,1125298208768,282583095115776,72340228672585728,72340177132978176,1108118405120,1365816442880,282634634657792,282583095050240,1108118405120,1365816442880,72340177133043968,72340194312913153,72340297392062464,72340177132978176,282583095116032,282600274985217,282703354134528,282583095050240,1125298274560,1108118339584,1108118339584,72340194312912896,1125298274560,1108118339584,1108118339584,282600274984960,72340177132978176,72340297392062464,1125298274304,1108118405120,282583095050240,282703354134528,1125298274304,1108118405120,72340434831081728,72340177133043969,72340177132978176,72340228672585728,282840793153792,282583095116033,282583095050240,282634634657792,1108118405376,1125298208768,1159657947136,72340177133043712,1108118405376,1125298208768,1159657947136,282583095115776,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,72340177133043968,72340228672651521,72340194312847360,72340177132978176,282583095116032,282634634723585,282600274919424,282583095050240,1159657947136,1108118339584,72340177133043712,72340297392128000,1159657947136,1108118339584,282583095115776,282703354200064,72340177132978176,1125298274561,1365816442880,1108118339584,282583095050240,1125298274561,1365816442880,1108118339584,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118339584,1640694284288,72340194312912896,72340177133043712,1108118339584,1640694284288,282600274984960,282583095115776,72340297392062464,1108118405377,1108118405120,1159657947136,282703354134528,1108118405377,1108118405120,1159657947136,72340177133043968,72340194312913153,72340228672585728,72340177132978176,282583095116032,282600274985217,282634634657792,282583095050240,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,72340177132978176,1159658012929,1125298274304,1108118339584,282583095050240,1159658012929,1125298274304,1108118339584,72340228672651520,72340177132978176,72340177132978176,2190450163712,282634634723584,282583095050240,282583095050240,2190450163712,1108118339584,1125298208768,72340297392128000,72340177133043712,1108118339584,1125298208768,282703354200064,282583095115776,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177133043968,72340297392062464,72340194312847360,1108118405120,282583095116032,282703354134528,282600274919424,1108118405120,1640694284288,1108118339584,72340177133043712,72340228672651264,1640694284288,1108118339584,282583095115776,282634634723328,1108118405376,1125298274561,1159657947136,1108118339584,1108118405376,1125298274561,1159657947136,1108118339584,72340194312913152,72340177132978176,72340177132978176,1125298274304,282600274985216,282583095050240,282583095050240,1125298274304,1108118339584,1159657947136,72340194312912896,72340177133043712,1108118339584,1159657947136,282600274984960,282583095115776,1159658012928,1108118405377,1108118339584,1228377423872,1159658012928,1108118405377,1108118339584,1228377423872,72340177132978176,72340194312847360,2190450163712,1108118405120,282583095050240,282600274919424,2190450163712,1108118405120,1125298208768,72340177133043969,72340177133043712,72340194312847360,1125298208768,282583095116033,282583095115776,282600274919424,1108118405376,1365816443137,1125298208768,1108118339584,1108118405376,1365816443137,1125298208768,1108118339584,72340297392062464,72340177132978176,1108118405120,1159658012672,282703354134528,282583095050240,1108118405120,1159658012672,1108118339584,72340194312913153,72340228672651264,72340177132978176,1108118339584,282600274985217,282634634723328,282583095050240,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177132978176,72340228672585728,1125298274304,1108118405120,282583095050240,282634634657792,1125298274304,1108118405120,1159657947136,72340177133043969,72340177133043712,72340434831015936,1159657947136,282583095116033,282583095115776,282840793088000,1108118405376,1125298274561,1228377423872,1108118339584,1108118405376,1125298274561,1228377423872,1108118339584,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,72340177133043968,72340297392128257,72340194312847360,72340177132978176,282583095116032,282703354200321,282600274919424,282583095050240,1365816443136,1108118339584,1108118339584,72340228672651264,1365816443136,1108118339584,1108118339584,282634634723328,72340177132978176,72340194312847360,1159658012672,1108118405120,282583095050240,282600274919424,1159658012672,1108118405120,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118405376,1159657947136,1125298208768,72340177133043712,1108118405376,1159657947136,1125298208768,282583095115776,72340228672585728,72340177132978176,1108118405120,1228377489408,282634634657792,282583095050240,1108118405120,1228377489408,72340177133043968,72340194312913153,72340434831015936,72340177132978176,282583095116032,282600274985217,282840793088000,282583095050240,1125298274560,1108118339584,1108118339584,72340194312912896,1125298274560,1108118339584,1108118339584,282600274984960,72340177132978176,2190450163969,1125298274304,1108118405120,282583095050240,2190450163969,1125298274304,1108118405120,72340297392128256,72340177133043969,72340177132978176,72340228672585728,282703354200320,282583095116033,282583095050240,282634634657792,1108118339584,1125298208768,72340228672651264,72340177133043712,1108118339584,1125298208768,282634634723328,282583095115776,72340194312847360,1108118405377,1108118405120,1125298208768,282600274919424,1108118405377,1108118405120,1125298208768,72340177133043968,72340228672651521,72340194312847360,72340177132978176,282583095116032,282634634723585,282600274919424,282583095050240,1159657947136,1108118339584,72340177133043712,72340709708988416,1159657947136,1108118339584,282583095115776,283115671060480,72340177132978176,1125298274561,1228377489408,1108118339584,282583095050240,1125298274561,1228377489408,1108118339584,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118339584,1228377423872,72340194312912896,72340177133043712,1108118339584,1228377423872,282600274984960,282583095115776,2190450163968,1108118405377,1108118405120,1159657947136,2190450163968,1108118405377,1108118405120,1159657947136,72340177133043968,72340194312847360,72340228672585728,1108118405120,282583095116032,282600274919424,282634634657792,1108118405120,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,1108118405376,1159658012929,1125298208768,1108118339584,1108118405376,1159658012929,1125298208768,1108118339584,72340228672651520,72340177132978176,72340177132978176,1228377489408,282634634723584,282583095050240,282583095050240,1228377489408,1108118339584,1125298208768,72340709708988416,72340177133043712,1108118339584,1125298208768,283115671060480,282583095115776,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177133043968,72340434831015936,72340194312847360,1108118405120,282583095116032,282840793088000,282600274919424,1108118405120,1228377423872,1108118339584,72340177133043712,72340228672651264,1228377423872,1108118339584,282583095115776,282634634723328,1108118405376,1125298274561,1159657947136,1108118339584,1108118405376,1125298274561,1159657947136,1108118339584,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,1108118339584,72340228672651521,72340194312912896,72340177132978176,1108118339584,282634634723585,282600274984960,282583095050240,1159658012928,1108118405377,1108118339584,1365816377344,1159658012928,1108118405377,1108118339584,1365816377344,72340177132978176,72340194312847360,1228377489408,1108118405120,282583095050240,282600274919424,1228377489408,1108118405120,1125298208768,72340177133043969,72340177133043712,72340194312847360,1125298208768,282583095116033,282583095115776,282600274919424,1108118405376,1228377489665,1125298208768,1108118339584,1108118405376,1228377489665,1125298208768,1108118339584,72340434831015936,72340177132978176,1108118405120,1159658012672,282840793088000,282583095050240,1108118405120,1159658012672,1108118339584,72340194312913153,72340228672651264,72340177132978176,1108118339584,282600274985217,282634634723328,282583095050240,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177132978176,72340228672585728,1125298274304,1108118405120,282583095050240,282634634657792,1125298274304,1108118405120,72340228672651520,72340177133043969,72340177132978176,72340297392062464,282634634723584,282583095116033,282583095050240,282703354134528,1108118405376,1125298208768,1365816377344,72340177133043712,1108118405376,1125298208768,1365816377344,282583095115776,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,72340177133043968,72340709708988673,72340194312847360,72340177132978176,282583095116032,283115671060737,282600274919424,282583095050240,1228377489664,1108118339584,1108118339584,72340228672651264,1228377489664,1108118339584,1108118339584,282634634723328,72340177132978176,72340194312847360,1159658012672,1108118405120,282583095050240,282600274919424,1159658012672,1108118405120,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118405376,1159657947136,1125298208768,72340177133043712,1108118405376,1159657947136,1125298208768,282583095115776,72340228672585728,1108118405377,1108118405120,2190450098176,282634634657792,1108118405377,1108118405120,2190450098176,72340177133043968,72340194312913153,72340297392062464,72340177132978176,282583095116032,282600274985217,282703354134528,282583095050240,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,72340177132978176,1228377489665,1125298274304,1108118339584,282583095050240,1228377489665,1125298274304,1108118339584,72340709708988672,72340177133043969,72340177132978176,72340228672585728,283115671060736,282583095116033,282583095050240,282634634657792,1108118339584,1125298208768,72340228672651264,72340177133043712,1108118339584,1125298208768,282634634723328,282583095115776,72340194312847360,1108118405377,1108118405120,1125298208768,282600274919424,1108118405377,1108118405120,1125298208768,72340177133043968,72340228672651521,72340194312847360,72340177132978176,282583095116032,282634634723585,282600274919424,282583095050240,1159657947136,1108118339584,72340177133043712,72340297392128000,1159657947136,1108118339584,282583095115776,282703354200064,1108118405376,1125298274561,2190450098176,1108118339584,1108118405376,1125298274561,2190450098176,1108118339584,72340194312913152,72340177132978176,72340177132978176,1125298274304,282600274985216,282583095050240,282583095050240,1125298274304,1108118339584,1365816377344,72340194312912896,72340177133043712,1108118339584,1365816377344,282600274984960,282583095115776,1228377489664,1108118405377,1108118339584,1159657947136,1228377489664,1108118405377,1108118339584,1159657947136,72340177133043968,72340194312847360,72340228672585728,1108118405120,282583095116032,282600274919424,282634634657792,1108118405120,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,1108118405376,1159658012929,1125298208768,1108118339584,1108118405376,1159658012929,1125298208768,1108118339584,72340228672651520,72340177132978176,72340177132978176,1365816442880,282634634723584,282583095050240,282583095050240,1365816442880,1108118339584,1125298208768,72340297392128000,72340177133043712,1108118339584,1125298208768,282703354200064,282583095115776,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177132978176,72340297392062464,1125298274304,1108118405120,282583095050240,282703354134528,1125298274304,1108118405120,1365816377344,72340177133043969,72340177133043712,72340228672585728,1365816377344,282583095116033,282583095115776,282634634657792,1108118405376,1125298274561,1159657947136,1108118339584,1108118405376,1125298274561,1159657947136,1108118339584,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,1108118339584,72340228672651521,72340194312912896,72340177132978176,1108118339584,282634634723585,282600274984960,282583095050240,1159658012928,1108118405377,1108118339584,1228377423872,1159658012928,1108118405377,1108118339584,1228377423872,72340177132978176,72340194312847360,1365816442880,1108118405120,282583095050240,282600274919424,1365816442880,1108118405120,1125298208768,72340177133043969,72340177133043712,72340194312847360,1125298208768,282583095116033,282583095115776,282600274919424,1108118405376,2190450098176,1125298208768,1108118339584,1108118405376,2190450098176,1125298208768,1108118339584,72340297392062464,72340177132978176,1108118405120,1159658012672,282703354134528,282583095050240,1108118405120,1159658012672,72340177133043968,72340194312913153,72340228672585728,72340177132978176,282583095116032,282600274985217,282634634657792,282583095050240,1125298274560,1108118339584,1108118339584,72340194312912896,1125298274560,1108118339584,1108118339584,282600274984960,72340177132978176,72340228672585728,1125298274304,1108118405120,282583095050240,282634634657792,1125298274304,1108118405120,72340228672651520,72340177133043969,72340177132978176,72340709708922880,282634634723584,282583095116033,282583095050240,283115670994944,1108118405376,1125298208768,1228377423872,72340177133043712,1108118405376,1125298208768,1228377423872,282583095115776,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,72340177133043968,72340297392128257,72340194312847360,72340177132978176,282583095116032,282703354200321,282600274919424,282583095050240,2190450098176,1108118339584,1108118339584,72340228672651264,2190450098176,1108118339584,1108118339584,282634634723328,72340177132978176,1125298274561,1159658012672,1108118339584,282583095050240,1125298274561,1159658012672,1108118339584,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118339584,1159657947136,72340194312912896,72340177133043712,1108118339584,1159657947136,282600274984960,282583095115776,72340228672585728,1108118405377,1108118405120,1228377423872,282634634657792,1108118405377,1108118405120,1228377423872,72340177133043968,72340194312913153,72340709708922880,72340177132978176,282583095116032,282600274985217,283115670994944,282583095050240,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,72340177132978176,1365816443137,1125298274304,1108118339584,282583095050240,1365816443137,1125298274304,1108118339584,72340297392128256,72340177133043969,72340177132978176,72340228672585728,282703354200320,282583095116033,282583095050240,282634634657792,1108118339584,1125298208768,72340228672651264,72340177133043712,1108118339584,1125298208768,282634634723328,282583095115776,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177133043968,72340228672585728,72340194312847360,1108118405120,282583095116032,282634634657792,282600274919424,1108118405120,1159657947136,1108118339584,72340177133043712,72340434831081472,1159657947136,1108118339584,282583095115776,282840793153536,1108118405376,1125298274561,1228377423872,1108118339584,1108118405376,1125298274561,1228377423872,1108118339584,72340194312913152,72340177132978176,72340177132978176,1125298274304,282600274985216,282583095050240,282583095050240,1125298274304,1108118339584,1228377423872,72340194312912896,72340177133043712,1108118339584,1228377423872,282600274984960,282583095115776,1365816443136,1108118405377,1108118339584,1159657947136,1365816443136,1108118405377,1108118339584,1159657947136,72340177133043968,72340194312847360,72340228672585728,1108118405120,282583095116032,282600274919424,282634634657792,1108118405120,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,1108118405376,1159658012929,1125298208768,1108118339584,1108118405376,1159658012929,1125298208768,1108118339584,72340228672585728,72340177132978176,1108118405120,1228377489408,282634634657792,282583095050240,1108118405120,1228377489408,1108118339584,72340194312913153,72340434831081472,72340177132978176,1108118339584,282600274985217,282840793153536,282583095050240,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177132978176,72340709708922880,1125298274304,1108118405120,282583095050240,283115670994944,1125298274304,1108118405120,1228377423872,72340177133043969,72340177133043712,72340228672585728,1228377423872,282583095116033,282583095115776,282634634657792,1108118405376,1125298274561,1159657947136,1108118339584,1108118405376,1125298274561,1159657947136,1108118339584,72340194312847360,72340177132978176,1108118405120,1125298274304,282600274919424,282583095050240,1108118405120,1125298274304,1108118339584,72340228672651521,72340194312912896,72340177132978176,1108118339584,282634634723585,282600274984960,282583095050240,1159658012928,1108118339584,1108118339584,72341259464802304,1159658012928,1108118339584,1108118339584,283665426874368,72340177132978176,72340194312847360,1228377489408,1108118405120,282583095050240,282600274919424,1228377489408,1108118405120,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118405376,1228377423872,1125298208768,72340177133043712,1108118405376,1228377423872,1125298208768,282583095115776,72340709708922880,72340177132978176,1108118405120,1159658012672,283115670994944,282583095050240,1108118405120,1159658012672,72340177133043968,72340194312913153,72340228672585728,72340177132978176,282583095116032,282600274985217,282634634657792,282583095050240,1125298274560,1108118339584,1108118339584,72340194312912896,1125298274560,1108118339584,1108118339584,282600274984960,72340177132978176,72340228672585728,1125298274304,1108118405120,282583095050240,282634634657792,1125298274304,1108118405120,72340228672651520,72340177133043969,72340177132978176,72340297392062464,282634634723584,282583095116033,282583095050240,282703354134528,1108118339584,1125298208768,72341259464802304,72340177133043712,1108118339584,1125298208768,283665426874368,282583095115776,72340194312847360,1108118405377,1108118405120,1125298208768,282600274919424,1108118405377,1108118405120,1125298208768,72340177133043968,72340434831081729,72340194312847360,72340177132978176,282583095116032,282840793153793,282600274919424,282583095050240,1228377423872,1108118339584,72340177133043712,72340228672651264,1228377423872,1108118339584,282583095115776,282634634723328,72340177132978176,1125298274561,1159658012672,1108118339584,282583095050240,1125298274561,1159658012672,1108118339584,72340194312913152,72340177133043969,72340177132978176,72340194312847360,282600274985216,282583095116033,282583095050240,282600274919424,1108118339584,1159657947136,72340194312912896,72340177133043712,1108118339584,1159657947136,282600274984960,282583095115776,72340228672585728,1108118405377,1108118405120,1365816377344,282634634657792,1108118405377,1108118405120,1365816377344,72340177133043968,72340194312913153,72340297392062464,72340177132978176,282583095116032,282600274985217,282703354134528,282583095050240,1125298208768,1108118339584,72340177133043712,72340194312912896,1125298208768,1108118339584,282583095115776,282600274984960,1108118405376,1228377489665,1125298208768,1108118339584,1108118405376,1228377489665,1125298208768,1108118339584,72340434831081728,72340177132978176,72340177132978176,1159658012672,282840793153792,282583095050240,282583095050240,1159658012672,1108118339584,1125298208768,72340228672651264,72340177133043712,1108118339584,1125298208768,282634634723328,282583095115776,1125298274560,1108118405377,1108118339584,1125298208768,1125298274560,1108118405377,1108118339584,1125298208768,72340177133043968,72340228672585728,72340194312847360,1108118405120,282583095116032,282634634657792,282600274919424,1108118405120,1159657947136,1108118339584,72340177133043712,72340297392128000,1159657947136,1108118339584,282583095115776,282703354200064,1108118405376,1125298274561,1365816377344,1108118339584,1108118405376,1125298274561,1365816377344,1108118339584,72340194312913152,72340177132978176,72340177132978176,1125298274304,282600274985216,282583095050240,282583095050240,1125298274304,1108118339584,0],[144681423712944642,3285683667458,565411003367938,2461049946626,144680392920793600,2254891516416,565204844937728,2254891516416,144681423712944128,3285683666944,565411003367424,2461049946112,144680392920793088,2254891515904,565204844937216,2254891515904,144681423712813056,3285683535872,565411003236352,2461049815040,144680392920662016,2254891384832,565204844806144,2254891384832,144681423712813056,3285683535872,565411003236352,2461049815040,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144681423712944640,3285683667456,565411003367936,2461049946624,144680392920793088,2254891515904,565204844937216,2254891515904,144681423712944128,3285683666944,565411003367424,2461049946112,144680392920662016,2254891384832,565204844806144,2254891384832,144681423712813056,3285683535872,565411003236352,2461049815040,144680392920662016,2254891384832,565204844806144,2254891384832,144681423712813056,3285683535872,565411003236352,2461049815040,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680461640270338,2323610993154,565273564414466,2323610993154,144680392920793600,2254891516416,565204844937728,2254891516416,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680461640270336,2323610993152,565273564414464,2323610993152,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680599079223810,2461049946626,566235637088770,3285683667458,144680392920793600,2254891516416,565204844937728,2254891516416,144680599079223296,2461049946112,566235637088256,3285683666944,144680392920793088,2254891515904,565204844937216,2254891515904,144680599079092224,2461049815040,566235636957184,3285683535872,144680392920662016,2254891384832,565204844806144,2254891384832,144680599079092224,2461049815040,566235636957184,3285683535872,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680599079223808,2461049946624,566235637088768,3285683667456,144680392920793088,2254891515904,565204844937216,2254891515904,144680599079223296,2461049946112,566235637088256,3285683666944,144680392920662016,2254891384832,565204844806144,2254891384832,144680599079092224,2461049815040,566235636957184,3285683535872,144680392920662016,2254891384832,565204844806144,2254891384832,144680599079092224,2461049815040,566235636957184,3285683535872,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680461640270338,2323610993154,565273564414466,2323610993154,144680392920793600,2254891516416,565204844937728,2254891516416,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680461640270336,2323610993152,565273564414464,2323610993152,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680873957130754,2735927853570,565411003367938,2461049946626,144680392920793600,2254891516416,565204844937728,2254891516416,144680873957130240,2735927853056,565411003367424,2461049946112,144680392920793088,2254891515904,565204844937216,2254891515904,144680873956999168,2735927721984,565411003236352,2461049815040,144680392920662016,2254891384832,565204844806144,2254891384832,144680873956999168,2735927721984,565411003236352,2461049815040,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680873957130752,2735927853568,565411003367936,2461049946624,144680392920793088,2254891515904,565204844937216,2254891515904,144680873957130240,2735927853056,565411003367424,2461049946112,144680392920662016,2254891384832,565204844806144,2254891384832,144680873956999168,2735927721984,565411003236352,2461049815040,144680392920662016,2254891384832,565204844806144,2254891384832,144680873956999168,2735927721984,565411003236352,2461049815040,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680461640270338,2323610993154,565273564414466,2323610993154,144680392920793600,2254891516416,565204844937728,2254891516416,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680461640270336,2323610993152,565273564414464,2323610993152,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680599079223810,2461049946626,565685881274882,2735927853570,144680392920793600,2254891516416,565204844937728,2254891516416,144680599079223296,2461049946112,565685881274368,2735927853056,144680392920793088,2254891515904,565204844937216,2254891515904,144680599079092224,2461049815040,565685881143296,2735927721984,144680392920662016,2254891384832,565204844806144,2254891384832,144680599079092224,2461049815040,565685881143296,2735927721984,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680599079223808,2461049946624,565685881274880,2735927853568,144680392920793088,2254891515904,565204844937216,2254891515904,144680599079223296,2461049946112,565685881274368,2735927853056,144680392920662016,2254891384832,565204844806144,2254891384832,144680599079092224,2461049815040,565685881143296,2735927721984,144680392920662016,2254891384832,565204844806144,2254891384832,144680599079092224,2461049815040,565685881143296,2735927721984,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680461640270338,2323610993154,565273564414466,2323610993154,144680392920793600,2254891516416,565204844937728,2254891516416,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680392920793602,2254891516418,565204844937730,2254891516418,144680461640270336,2323610993152,565273564414464,2323610993152,144680392920793088,2254891515904,565204844937216,2254891515904,144680461640269824,2323610992640,565273564413952,2323610992640,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680392920662016,2254891384832,565204844806144,2254891384832,144680461640138752,2323610861568,565273564282880,2323610861568,144680358561055234,2220531778050,565170485199362,2220531778050,144680358561055232,2220531778048,565170485199360,2220531778048,144680358561054720,2220531777536,565170485198848,2220531777536,144680358561054720,2220531777536,565170485198848,2220531777536,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,144680358560923648,2220531646464,565170485067776,2220531646464,0],[289361752209228804,1130345265102848,5476150674436,4445358260224,289361747914261508,1130340970135552,5471855707140,4441063292928,289361752209228800,1130413984579584,5476150674432,4514077736960,289361747914261504,1130409689612288,5471855707136,4509782769664,289360721417077764,1130413984579584,4445358523396,4514077736960,289360717122110468,1130409689612288,4441063556100,4509782769664,289360721417077760,1130345265102848,4445358523392,4445358260224,289360717122110464,1130340970135552,4441063556096,4441063292928,289360790136554500,1130345265102848,4514078000132,4445358260224,289360785841587204,1130340970135552,4509783032836,4441063292928,289360790136554496,1130551423533056,4514078000128,4651516690432,289360785841587200,1130547128565760,4509783032832,4647221723136,289360721417077764,1130551423533056,4445358523396,4651516690432,289360717122110468,1130547128565760,4441063556100,4647221723136,289360721417077760,1130345265102848,4445358523392,4445358260224,289360717122110464,1130340970135552,4441063556096,4441063292928,289360927575507972,1130345265102848,4651516953604,4445358260224,289360923280540676,1130340970135552,4647221986308,4441063292928,289360927575507968,1130413984579584,4651516953600,4514077736960,289360923280540672,1130409689612288,4647221986304,4509782769664,289360721417077764,1130413984579584,4445358523396,4514077736960,289360717122110468,1130409689612288,4441063556100,4509782769664,289360721417077760,1130345265102848,4445358523392,4445358260224,289360717122110464,1130340970135552,4441063556096,4441063292928,289360790136554500,1130345265102848,4514078000132,4445358260224,289360785841587204,1130340970135552,4509783032836,4441063292928,289360790136554496,289361752209227776,4514078000128,5476150673408,289360785841587200,289361747914260480,4509783032832,5471855706112,289360721417077764,289361752209227776,4445358523396,5476150673408,289360717122110468,289361747914260480,4441063556100,5471855706112,289360721417077760,289360721417076736,4445358523392,4445358522368,289360717122110464,289360717122109440,4441063556096,4441063555072,289361202453414916,289360721417076736,4926394860548,4445358522368,289361198158447620,289360717122109440,4922099893252,4441063555072,289361202453414912,289360790136553472,4926394860544,4514077999104,289361198158447616,289360785841586176,4922099893248,4509783031808,289360721417077764,289360790136553472,4445358523396,4514077999104,289360717122110468,289360785841586176,4441063556100,4509783031808,289360721417077760,289360721417076736,4445358523392,4445358522368,289360717122110464,289360717122109440,4441063556096,4441063555072,289360790136554500,289360721417076736,4514078000132,4445358522368,289360785841587204,289360717122109440,4509783032836,4441063555072,289360790136554496,289360927575506944,4514078000128,4651516952576,289360785841587200,289360923280539648,4509783032832,4647221985280,289360721417077764,289360927575506944,4445358523396,4651516952576,289360717122110468,289360923280539648,4441063556100,4647221985280,289360721417077760,289360721417076736,4445358523392,4445358522368,289360717122110464,289360717122109440,4441063556096,4441063555072,289360927575507972,289360721417076736,4651516953604,4445358522368,289360923280540676,289360717122109440,4647221986308,4441063555072,289360927575507968,289360790136553472,4651516953600,4514077999104,289360923280540672,289360785841586176,4647221986304,4509783031808,289360721417077764,289360790136553472,4445358523396,4514077999104,289360717122110468,289360785841586176,4441063556100,4509783031808,289360721417077760,289360721417076736,4445358523392,4445358522368,289360717122110464,289360717122109440,4441063556096,4441063555072,289360790136554500,289360721417076736,4514078000132,4445358522368,289360785841587204,289360717122109440,4509783032836,4441063555072,289360790136554496,289361202453413888,4514078000128,4926394859520,289360785841587200,289361198158446592,4509783032832,4922099892224,289360721417077764,289361202453413888,4445358523396,4926394859520,289360717122110468,289361198158446592,4441063556100,4922099892224,289360721417077760,289360721417076736,4445358523392,4445358522368,289360717122110464,289360717122109440,4441063556096,4441063555072,289361752208965632,289360721417076736,5476150411264,4445358522368,289361747913998336,289360717122109440,5471855443968,4441063555072,289361752208965632,289360790136553472,5476150411264,4514077999104,289361747913998336,289360785841586176,5471855443968,4509783031808,289360721416814592,289360790136553472,4445358260224,4514077999104,289360717121847296,289360785841586176,4441063292928,4509783031808,289360721416814592,289360721417076736,4445358260224,4445358522368,289360717121847296,289360717122109440,4441063292928,4441063555072,289360790136291328,289360721417076736,4514077736960,4445358522368,289360785841324032,289360717122109440,4509782769664,4441063555072,289360790136291328,289360927575506944,4514077736960,4651516952576,289360785841324032,289360923280539648,4509782769664,4647221985280,289360721416814592,289360927575506944,4445358260224,4651516952576,289360717121847296,289360923280539648,4441063292928,4647221985280,289360721416814592,289360721417076736,4445358260224,4445358522368,289360717121847296,289360717122109440,4441063292928,4441063555072,289360927575244800,289360721417076736,4651516690432,4445358522368,289360923280277504,289360717122109440,4647221723136,4441063555072,289360927575244800,289360790136553472,4651516690432,4514077999104,289360923280277504,289360785841586176,4647221723136,4509783031808,289360721416814592,289360790136553472,4445358260224,4514077999104,289360717121847296,289360785841586176,4441063292928,4509783031808,289360721416814592,289360721417076736,4445358260224,4445358522368,289360717121847296,289360717122109440,4441063292928,4441063555072,289360790136291328,289360721417076736,4514077736960,4445358522368,289360785841324032,289360717122109440,4509782769664,4441063555072,289360790136291328,289361752208965632,4514077736960,5476150411264,289360785841324032,289361747913998336,4509782769664,5471855443968,289360721416814592,289361752208965632,4445358260224,5476150411264,289360717121847296,289361747913998336,4441063292928,5471855443968,289360721416814592,289360721416814592,4445358260224,4445358260224,289360717121847296,289360717121847296,4441063292928,4441063292928,289361202453151744,289360721416814592,4926394597376,4445358260224,289361198158184448,289360717121847296,4922099630080,4441063292928,289361202453151744,289360790136291328,4926394597376,4514077736960,289361198158184448,289360785841324032,4922099630080,4509782769664,289360721416814592,289360790136291328,4445358260224,4514077736960,289360717121847296,289360785841324032,4441063292928,4509782769664,289360721416814592,289360721416814592,4445358260224,4445358260224,289360717121847296,289360717121847296,4441063292928,4441063292928,289360790136291328,289360721416814592,4514077736960,4445358260224,289360785841324032,289360717121847296,4509782769664,4441063292928,289360790136291328,289360927575244800,4514077736960,4651516690432,289360785841324032,289360923280277504,4509782769664,4647221723136,289360721416814592,289360927575244800,4445358260224,4651516690432,289360717121847296,289360923280277504,4441063292928,4647221723136,289360721416814592,289360721416814592,4445358260224,4445358260224,289360717121847296,289360717121847296,4441063292928,4441063292928,289360927575244800,289360721416814592,4651516690432,4445358260224,289360923280277504,289360717121847296,4647221723136,4441063292928,289360927575244800,289360790136291328,4651516690432,4514077736960,289360923280277504,289360785841324032,4647221723136,4509782769664,289360721416814592,289360790136291328,4445358260224,4514077736960,289360717121847296,289360785841324032,4441063292928,4509782769664,289360721416814592,289360721416814592,4445358260224,4445358260224,289360717121847296,289360717121847296,4441063292928,4441063292928,289360790136291328,289360721416814592,4514077736960,4445358260224,289360785841324032,289360717121847296,4509782769664,4441063292928,289360790136291328,289361202453151744,4514077736960,4926394597376,289360785841324032,289361198158184448,4509782769664,4922099630080,289360721416814592,289361202453151744,4445358260224,4926394597376,289360717121847296,289361198158184448,4441063292928,4922099630080,289360721416814592,289360721416814592,4445358260224,4445358260224,289360717121847296,289360717121847296,4441063292928,4441063292928,1131376057517060,289360721416814592,5476150674436,4445358260224,1131371762549764,289360717121847296,5471855707140,4441063292928,1131376057517056,289360790136291328,5476150674432,4514077736960,1131371762549760,289360785841324032,5471855707136,4509782769664,1130345265366020,289360790136291328,4445358523396,4514077736960,1130340970398724,289360785841324032,4441063556100,4509782769664,1130345265366016,289360721416814592,4445358523392,4445358260224,1130340970398720,289360717121847296,4441063556096,4441063292928,1130413984842756,289360721416814592,4514078000132,4445358260224,1130409689875460,289360717121847296,4509783032836,4441063292928,1130413984842752,289360927575244800,4514078000128,4651516690432,1130409689875456,289360923280277504,4509783032832,4647221723136,1130345265366020,289360927575244800,4445358523396,4651516690432,1130340970398724,289360923280277504,4441063556100,4647221723136,1130345265366016,289360721416814592,4445358523392,4445358260224,1130340970398720,289360717121847296,4441063556096,4441063292928,1130551423796228,289360721416814592,4651516953604,4445358260224,1130547128828932,289360717121847296,4647221986308,4441063292928,1130551423796224,289360790136291328,4651516953600,4514077736960,1130547128828928,289360785841324032,4647221986304,4509782769664,1130345265366020,289360790136291328,4445358523396,4514077736960,1130340970398724,289360785841324032,4441063556100,4509782769664,1130345265366016,289360721416814592,4445358523392,4445358260224,1130340970398720,289360717121847296,4441063556096,4441063292928,1130413984842756,289360721416814592,4514078000132,4445358260224,1130409689875460,289360717121847296,4509783032836,4441063292928,1130413984842752,1131376057516032,4514078000128,5476150673408,1130409689875456,1131371762548736,4509783032832,5471855706112,1130345265366020,1131376057516032,4445358523396,5476150673408,1130340970398724,1131371762548736,4441063556100,5471855706112,1130345265366016,1130345265364992,4445358523392,4445358522368,1130340970398720,1130340970397696,4441063556096,4441063555072,1130826301703172,1130345265364992,4926394860548,4445358522368,1130822006735876,1130340970397696,4922099893252,4441063555072,1130826301703168,1130413984841728,4926394860544,4514077999104,1130822006735872,1130409689874432,4922099893248,4509783031808,1130345265366020,1130413984841728,4445358523396,4514077999104,1130340970398724,1130409689874432,4441063556100,4509783031808,1130345265366016,1130345265364992,4445358523392,4445358522368,1130340970398720,1130340970397696,4441063556096,4441063555072,1130413984842756,1130345265364992,4514078000132,4445358522368,1130409689875460,1130340970397696,4509783032836,4441063555072,1130413984842752,1130551423795200,4514078000128,4651516952576,1130409689875456,1130547128827904,4509783032832,4647221985280,1130345265366020,1130551423795200,4445358523396,4651516952576,1130340970398724,1130547128827904,4441063556100,4647221985280,1130345265366016,1130345265364992,4445358523392,4445358522368,1130340970398720,1130340970397696,4441063556096,4441063555072,1130551423796228,1130345265364992,4651516953604,4445358522368,1130547128828932,1130340970397696,4647221986308,4441063555072,1130551423796224,1130413984841728,4651516953600,4514077999104,1130547128828928,1130409689874432,4647221986304,4509783031808,1130345265366020,1130413984841728,4445358523396,4514077999104,1130340970398724,1130409689874432,4441063556100,4509783031808,1130345265366016,1130345265364992,4445358523392,4445358522368,1130340970398720,1130340970397696,4441063556096,4441063555072,1130413984842756,1130345265364992,4514078000132,4445358522368,1130409689875460,1130340970397696,4509783032836,4441063555072,1130413984842752,1130826301702144,4514078000128,4926394859520,1130409689875456,1130822006734848,4509783032832,4922099892224,1130345265366020,1130826301702144,4445358523396,4926394859520,1130340970398724,1130822006734848,4441063556100,4922099892224,1130345265366016,1130345265364992,4445358523392,4445358522368,1130340970398720,1130340970397696,4441063556096,4441063555072,1131376057253888,1130345265364992,5476150411264,4445358522368,1131371762286592,1130340970397696,5471855443968,4441063555072,1131376057253888,1130413984841728,5476150411264,4514077999104,1131371762286592,1130409689874432,5471855443968,4509783031808,1130345265102848,1130413984841728,4445358260224,4514077999104,1130340970135552,1130409689874432,4441063292928,4509783031808,1130345265102848,1130345265364992,4445358260224,4445358522368,1130340970135552,1130340970397696,4441063292928,4441063555072,1130413984579584,1130345265364992,4514077736960,4445358522368,1130409689612288,1130340970397696,4509782769664,4441063555072,1130413984579584,1130551423795200,4514077736960,4651516952576,1130409689612288,1130547128827904,4509782769664,4647221985280,1130345265102848,1130551423795200,4445358260224,4651516952576,1130340970135552,1130547128827904,4441063292928,4647221985280,1130345265102848,1130345265364992,4445358260224,4445358522368,1130340970135552,1130340970397696,4441063292928,4441063555072,1130551423533056,1130345265364992,4651516690432,4445358522368,1130547128565760,1130340970397696,4647221723136,4441063555072,1130551423533056,1130413984841728,4651516690432,4514077999104,1130547128565760,1130409689874432,4647221723136,4509783031808,1130345265102848,1130413984841728,4445358260224,4514077999104,1130340970135552,1130409689874432,4441063292928,4509783031808,1130345265102848,1130345265364992,4445358260224,4445358522368,1130340970135552,1130340970397696,4441063292928,4441063555072,1130413984579584,1130345265364992,4514077736960,4445358522368,1130409689612288,1130340970397696,4509782769664,4441063555072,1130413984579584,1131376057253888,4514077736960,5476150411264,1130409689612288,1131371762286592,4509782769664,5471855443968,1130345265102848,1131376057253888,4445358260224,5476150411264,1130340970135552,1131371762286592,4441063292928,5471855443968,1130345265102848,1130345265102848,4445358260224,4445358260224,1130340970135552,1130340970135552,4441063292928,4441063292928,1130826301440000,1130345265102848,4926394597376,4445358260224,1130822006472704,1130340970135552,4922099630080,4441063292928,1130826301440000,1130413984579584,4926394597376,4514077736960,1130822006472704,1130409689612288,4922099630080,4509782769664,1130345265102848,1130413984579584,4445358260224,4514077736960,1130340970135552,1130409689612288,4441063292928,4509782769664,1130345265102848,1130345265102848,4445358260224,4445358260224,1130340970135552,1130340970135552,4441063292928,4441063292928,1130413984579584,1130345265102848,4514077736960,4445358260224,1130409689612288,1130340970135552,4509782769664,4441063292928,1130413984579584,1130551423533056,4514077736960,4651516690432,1130409689612288,1130547128565760,4509782769664,4647221723136,1130345265102848,1130551423533056,4445358260224,4651516690432,1130340970135552,1130547128565760,4441063292928,4647221723136,1130345265102848,1130345265102848,4445358260224,4445358260224,1130340970135552,1130340970135552,4441063292928,4441063292928,1130551423533056,1130345265102848,4651516690432,4445358260224,1130547128565760,1130340970135552,4647221723136,4441063292928,1130551423533056,1130413984579584,4651516690432,4514077736960,1130547128565760,1130409689612288,4647221723136,4509782769664,1130345265102848,1130413984579584,4445358260224,4514077736960,1130340970135552,1130409689612288,4441063292928,4509782769664,1130345265102848,1130345265102848,4445358260224,4445358260224,1130340970135552,1130340970135552,4441063292928,4441063292928,1130413984579584,1130345265102848,4514077736960,4445358260224,1130409689612288,1130340970135552,4509782769664,4441063292928,1130413984579584,1130826301440000,4514077736960,4926394597376,1130409689612288,1130822006472704,4509782769664,4922099630080,1130345265102848,1130826301440000,4445358260224,4926394597376,1130340970135552,1130822006472704,4441063292928,4922099630080,1130345265102848,1130345265102848,4445358260224,4445358260224,1130340970135552,1130340970135552,4441063292928,4441063292928,0],[578722409201797128,2261656898373640,578722409201795072,2261656898371584,9857084688392,9857084688392,9857084686336,9857084686336,578722404906829832,2261652603406344,578722404906827776,2261652603404288,9852789721096,9852789721096,9852789719040,9852789719040,578722396316895240,2261644013471752,578722396316893184,2261644013469696,9844199786504,9844199786504,9844199784448,9844199784448,578722396316895240,2261644013471752,578722396316893184,2261644013469696,9844199786504,9844199786504,9844199784448,9844199784448,578722409201270784,2261656897847296,578722409201270784,2261656897847296,9857084162048,9857084162048,9857084162048,9857084162048,578722404906303488,2261652602880000,578722404906303488,2261652602880000,9852789194752,9852789194752,9852789194752,9852789194752,578722396316368896,2261644012945408,578722396316368896,2261644012945408,9844199260160,9844199260160,9844199260160,9844199260160,578722396316368896,2261644012945408,578722396316368896,2261644012945408,9844199260160,9844199260160,9844199260160,9844199260160,578721447129122824,2260694825699336,578721447129120768,2260694825697280,8895012014088,8895012014088,8895012012032,8895012012032,578721442834155528,2260690530732040,578721442834153472,2260690530729984,8890717046792,8890717046792,8890717044736,8890717044736,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721584568076296,2260832264652808,578721584568074240,2260832264650752,9032450967560,9032450967560,9032450965504,9032450965504,578721580273109000,2260827969685512,578721580273106944,2260827969683456,9028156000264,9028156000264,9028155998208,9028155998208,578721571683174408,2260819379750920,578721571683172352,2260819379748864,9019566065672,9019566065672,9019566063616,9019566063616,578721571683174408,2260819379750920,578721571683172352,2260819379748864,9019566065672,9019566065672,9019566063616,9019566063616,578721584567549952,2260832264126464,578721584567549952,2260832264126464,9032450441216,9032450441216,9032450441216,9032450441216,578721580272582656,2260827969159168,578721580272582656,2260827969159168,9028155473920,9028155473920,9028155473920,9028155473920,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721447129122824,2260694825699336,578721447129120768,2260694825697280,8895012014088,8895012014088,8895012012032,8895012012032,578721442834155528,2260690530732040,578721442834153472,2260690530729984,8890717046792,8890717046792,8890717044736,8890717044736,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721859445983240,2261107142559752,578721859445981184,2261107142557696,9307328874504,9307328874504,9307328872448,9307328872448,578721855151015944,2261102847592456,578721855151013888,2261102847590400,9303033907208,9303033907208,9303033905152,9303033905152,578721846561081352,2261094257657864,578721846561079296,2261094257655808,9294443972616,9294443972616,9294443970560,9294443970560,578721846561081352,2261094257657864,578721846561079296,2261094257655808,9294443972616,9294443972616,9294443970560,9294443970560,578721859445456896,2261107142033408,578721859445456896,2261107142033408,9307328348160,9307328348160,9307328348160,9307328348160,578721855150489600,2261102847066112,578721855150489600,2261102847066112,9303033380864,9303033380864,9303033380864,9303033380864,578721846560555008,2261094257131520,578721846560555008,2261094257131520,9294443446272,9294443446272,9294443446272,9294443446272,578721846560555008,2261094257131520,578721846560555008,2261094257131520,9294443446272,9294443446272,9294443446272,9294443446272,578721447129122824,2260694825699336,578721447129120768,2260694825697280,8895012014088,8895012014088,8895012012032,8895012012032,578721442834155528,2260690530732040,578721442834153472,2260690530729984,8890717046792,8890717046792,8890717044736,8890717044736,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721584568076296,2260832264652808,578721584568074240,2260832264650752,9032450967560,9032450967560,9032450965504,9032450965504,578721580273109000,2260827969685512,578721580273106944,2260827969683456,9028156000264,9028156000264,9028155998208,9028155998208,578721571683174408,2260819379750920,578721571683172352,2260819379748864,9019566065672,9019566065672,9019566063616,9019566063616,578721571683174408,2260819379750920,578721571683172352,2260819379748864,9019566065672,9019566065672,9019566063616,9019566063616,578721584567549952,2260832264126464,578721584567549952,2260832264126464,9032450441216,9032450441216,9032450441216,9032450441216,578721580272582656,2260827969159168,578721580272582656,2260827969159168,9028155473920,9028155473920,9028155473920,9028155473920,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721447129122824,2260694825699336,578721447129120768,2260694825697280,8895012014088,8895012014088,8895012012032,8895012012032,578721442834155528,2260690530732040,578721442834153472,2260690530729984,8890717046792,8890717046792,8890717044736,8890717044736,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721434244220936,2260681940797448,578721434244218880,2260681940795392,8882127112200,8882127112200,8882127110144,8882127110144,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578722409201795072,2261656898371584,578722409201797120,2261656898373632,9857084686336,9857084686336,9857084688384,9857084688384,578722404906827776,2261652603404288,578722404906829824,2261652603406336,9852789719040,9852789719040,9852789721088,9852789721088,578722396316893184,2261644013469696,578722396316895232,2261644013471744,9844199784448,9844199784448,9844199786496,9844199786496,578722396316893184,2261644013469696,578722396316895232,2261644013471744,9844199784448,9844199784448,9844199786496,9844199786496,578722409201270784,2261656897847296,578722409201270784,2261656897847296,9857084162048,9857084162048,9857084162048,9857084162048,578722404906303488,2261652602880000,578722404906303488,2261652602880000,9852789194752,9852789194752,9852789194752,9852789194752,578722396316368896,2261644012945408,578722396316368896,2261644012945408,9844199260160,9844199260160,9844199260160,9844199260160,578722396316368896,2261644012945408,578722396316368896,2261644012945408,9844199260160,9844199260160,9844199260160,9844199260160,578721447129120768,2260694825697280,578721447129122816,2260694825699328,8895012012032,8895012012032,8895012014080,8895012014080,578721442834153472,2260690530729984,578721442834155520,2260690530732032,8890717044736,8890717044736,8890717046784,8890717046784,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721584568074240,2260832264650752,578721584568076288,2260832264652800,9032450965504,9032450965504,9032450967552,9032450967552,578721580273106944,2260827969683456,578721580273108992,2260827969685504,9028155998208,9028155998208,9028156000256,9028156000256,578721571683172352,2260819379748864,578721571683174400,2260819379750912,9019566063616,9019566063616,9019566065664,9019566065664,578721571683172352,2260819379748864,578721571683174400,2260819379750912,9019566063616,9019566063616,9019566065664,9019566065664,578721584567549952,2260832264126464,578721584567549952,2260832264126464,9032450441216,9032450441216,9032450441216,9032450441216,578721580272582656,2260827969159168,578721580272582656,2260827969159168,9028155473920,9028155473920,9028155473920,9028155473920,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721447129120768,2260694825697280,578721447129122816,2260694825699328,8895012012032,8895012012032,8895012014080,8895012014080,578721442834153472,2260690530729984,578721442834155520,2260690530732032,8890717044736,8890717044736,8890717046784,8890717046784,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721859445981184,2261107142557696,578721859445983232,2261107142559744,9307328872448,9307328872448,9307328874496,9307328874496,578721855151013888,2261102847590400,578721855151015936,2261102847592448,9303033905152,9303033905152,9303033907200,9303033907200,578721846561079296,2261094257655808,578721846561081344,2261094257657856,9294443970560,9294443970560,9294443972608,9294443972608,578721846561079296,2261094257655808,578721846561081344,2261094257657856,9294443970560,9294443970560,9294443972608,9294443972608,578721859445456896,2261107142033408,578721859445456896,2261107142033408,9307328348160,9307328348160,9307328348160,9307328348160,578721855150489600,2261102847066112,578721855150489600,2261102847066112,9303033380864,9303033380864,9303033380864,9303033380864,578721846560555008,2261094257131520,578721846560555008,2261094257131520,9294443446272,9294443446272,9294443446272,9294443446272,578721846560555008,2261094257131520,578721846560555008,2261094257131520,9294443446272,9294443446272,9294443446272,9294443446272,578721447129120768,2260694825697280,578721447129122816,2260694825699328,8895012012032,8895012012032,8895012014080,8895012014080,578721442834153472,2260690530729984,578721442834155520,2260690530732032,8890717044736,8890717044736,8890717046784,8890717046784,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721584568074240,2260832264650752,578721584568076288,2260832264652800,9032450965504,9032450965504,9032450967552,9032450967552,578721580273106944,2260827969683456,578721580273108992,2260827969685504,9028155998208,9028155998208,9028156000256,9028156000256,578721571683172352,2260819379748864,578721571683174400,2260819379750912,9019566063616,9019566063616,9019566065664,9019566065664,578721571683172352,2260819379748864,578721571683174400,2260819379750912,9019566063616,9019566063616,9019566065664,9019566065664,578721584567549952,2260832264126464,578721584567549952,2260832264126464,9032450441216,9032450441216,9032450441216,9032450441216,578721580272582656,2260827969159168,578721580272582656,2260827969159168,9028155473920,9028155473920,9028155473920,9028155473920,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721571682648064,2260819379224576,578721571682648064,2260819379224576,9019565539328,9019565539328,9019565539328,9019565539328,578721447129120768,2260694825697280,578721447129122816,2260694825699328,8895012012032,8895012012032,8895012014080,8895012014080,578721442834153472,2260690530729984,578721442834155520,2260690530732032,8890717044736,8890717044736,8890717046784,8890717046784,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721434244218880,2260681940795392,578721434244220928,2260681940797440,8882127110144,8882127110144,8882127112192,8882127112192,578721447128596480,2260694825172992,578721447128596480,2260694825172992,8895011487744,8895011487744,8895011487744,8895011487744,578721442833629184,2260690530205696,578721442833629184,2260690530205696,8890716520448,8890716520448,8890716520448,8890716520448,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,578721434243694592,2260681940271104,578721434243694592,2260681940271104,8882126585856,8882126585856,8882126585856,8882126585856,0],[1157443723186933776,18618952716304,1157442868487389184,17764253171712,4521668823220224,18069195849728,4521363880542208,17764253171712,1157443718891966480,18614657749008,1157443723186929664,18618952712192,4521664528252928,18064900882432,4521668823220224,18069195849728,1157443710302031888,18606067814416,1157443718891962368,18614657744896,4521655938318336,18056310947840,4521664528252928,18064900882432,1157443710302031888,18606067814416,1157443710302027776,18606067810304,4521655938318336,18056310947840,4521655938318336,18056310947840,1157443693122162704,18588887945232,1157443710302027776,18606067810304,4521638758449152,18039131078656,4521655938318336,18056310947840,1157443693122162704,18588887945232,1157443693122158592,18588887941120,4521638758449152,18039131078656,4521638758449152,18039131078656,1157443693122162704,18588887945232,1157443693122158592,18588887941120,4521638758449152,18039131078656,4521638758449152,18039131078656,1157443693122162704,18588887945232,1157443693122158592,18588887941120,4521638758449152,18039131078656,4521638758449152,18039131078656,1157443723186933760,18618952716288,1157443693122158592,18588887941120,4521668823220224,18069195849728,4521638758449152,18039131078656,1157443718891966464,18614657748992,1157443723186929664,18618952712192,4521664528252928,18064900882432,4521668823220224,18069195849728,1157443710302031872,18606067814400,1157443718891962368,18614657744896,4521655938318336,18056310947840,4521664528252928,18064900882432,1157443710302031872,18606067814400,1157443710302027776,18606067810304,4521655938318336,18056310947840,4521655938318336,18056310947840,1157443693122162688,18588887945216,1157443710302027776,18606067810304,4521638758449152,18039131078656,4521655938318336,18056310947840,1157443693122162688,18588887945216,1157443693122158592,18588887941120,4521638758449152,18039131078656,4521638758449152,18039131078656,1157443693122162688,18588887945216,1157443693122158592,18588887941120,4521638758449152,18039131078656,4521638758449152,18039131078656,1157443693122162688,18588887945216,1157443693122158592,18588887941120,4521638758449152,18039131078656,4521638758449152,18039131078656,1157442898553212944,17794318995472,1157443693122158592,18588887941120,4521393945313280,17794317942784,4521638758449152,18039131078656,1157442894258245648,17790024028176,1157442898553208832,17794318991360,4521389650345984,17790022975488,4521393945313280,17794317942784,1157442885668311056,17781434093584,1157442894258241536,17790024024064,4521381060411392,17781433040896,4521389650345984,17790022975488,1157442885668311056,17781434093584,1157442885668306944,17781434089472,4521381060411392,17781433040896,4521381060411392,17781433040896,1157442868488441872,17764254224400,1157442885668306944,17781434089472,4521363880542208,17764253171712,4521381060411392,17781433040896,1157442868488441872,17764254224400,1157442868488437760,17764254220288,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868488441872,17764254224400,1157442868488437760,17764254220288,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868488441872,17764254224400,1157442868488437760,17764254220288,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442898553212928,17794318995456,1157442868488437760,17764254220288,4521393945313280,17794317942784,4521363880542208,17764253171712,1157442894258245632,17790024028160,1157442898553208832,17794318991360,4521389650345984,17790022975488,4521393945313280,17794317942784,1157442885668311040,17781434093568,1157442894258241536,17790024024064,4521381060411392,17781433040896,4521389650345984,17790022975488,1157442885668311040,17781434093568,1157442885668306944,17781434089472,4521381060411392,17781433040896,4521381060411392,17781433040896,1157442868488441856,17764254224384,1157442885668306944,17781434089472,4521363880542208,17764253171712,4521381060411392,17781433040896,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4521363880542208,17764253171712,4521363880542208,17764253171712,1157443173431119888,18069196902416,1157442868488437760,17764254220288,4522218580086800,18618952716304,4521363880542208,17764253171712,1157443169136152592,18064901935120,1157443173431115776,18069196898304,4522214285119504,18614657749008,4522218580082688,18618952712192,1157443160546218000,18056312000528,1157443169136148480,18064901931008,4522205695184912,18606067814416,4522214285115392,18614657744896,1157443160546218000,18056312000528,1157443160546213888,18056311996416,4522205695184912,18606067814416,4522205695180800,18606067810304,1157443143366348816,18039132131344,1157443160546213888,18056311996416,4522188515315728,18588887945232,4522205695180800,18606067810304,1157443143366348816,18039132131344,1157443143366344704,18039132127232,4522188515315728,18588887945232,4522188515311616,18588887941120,1157443143366348816,18039132131344,1157443143366344704,18039132127232,4522188515315728,18588887945232,4522188515311616,18588887941120,1157443143366348816,18039132131344,1157443143366344704,18039132127232,4522188515315728,18588887945232,4522188515311616,18588887941120,1157443173431119872,18069196902400,1157443143366344704,18039132127232,4522218580086784,18618952716288,4522188515311616,18588887941120,1157443169136152576,18064901935104,1157443173431115776,18069196898304,4522214285119488,18614657748992,4522218580082688,18618952712192,1157443160546217984,18056312000512,1157443169136148480,18064901931008,4522205695184896,18606067814400,4522214285115392,18614657744896,1157443160546217984,18056312000512,1157443160546213888,18056311996416,4522205695184896,18606067814400,4522205695180800,18606067810304,1157443143366348800,18039132131328,1157443160546213888,18056311996416,4522188515315712,18588887945216,4522205695180800,18606067810304,1157443143366348800,18039132131328,1157443143366344704,18039132127232,4522188515315712,18588887945216,4522188515311616,18588887941120,1157443143366348800,18039132131328,1157443143366344704,18039132127232,4522188515315712,18588887945216,4522188515311616,18588887941120,1157443143366348800,18039132131328,1157443143366344704,18039132127232,4522188515315712,18588887945216,4522188515311616,18588887941120,1157442898553212944,17794318995472,1157443143366344704,18039132127232,4521393946365968,17794318995472,4522188515311616,18588887941120,1157442894258245648,17790024028176,1157442898553208832,17794318991360,4521389651398672,17790024028176,4521393946361856,17794318991360,1157442885668311056,17781434093584,1157442894258241536,17790024024064,4521381061464080,17781434093584,4521389651394560,17790024024064,1157442885668311056,17781434093584,1157442885668306944,17781434089472,4521381061464080,17781434093584,4521381061459968,17781434089472,1157442868488441872,17764254224400,1157442885668306944,17781434089472,4521363881594896,17764254224400,4521381061459968,17781434089472,1157442868488441872,17764254224400,1157442868488437760,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,1157442898553212928,17794318995456,1157442868488437760,17764254220288,4521393946365952,17794318995456,4521363881590784,17764254220288,1157442894258245632,17790024028160,1157442898553208832,17794318991360,4521389651398656,17790024028160,4521393946361856,17794318991360,1157442885668311040,17781434093568,1157442894258241536,17790024024064,4521381061464064,17781434093568,4521389651394560,17790024024064,1157442885668311040,17781434093568,1157442885668306944,17781434089472,4521381061464064,17781434093568,4521381061459968,17781434089472,1157442868488441856,17764254224384,1157442885668306944,17781434089472,4521363881594880,17764254224384,4521381061459968,17781434089472,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,1157443723185881088,18618951663616,1157442868488437760,17764254220288,4521668824272912,18069196902416,4521363881590784,17764254220288,1157443718890913792,18614656696320,1157443723185881088,18618951663616,4521664529305616,18064901935120,4521668824268800,18069196898304,1157443710300979200,18606066761728,1157443718890913792,18614656696320,4521655939371024,18056312000528,4521664529301504,18064901931008,1157443710300979200,18606066761728,1157443710300979200,18606066761728,4521655939371024,18056312000528,4521655939366912,18056311996416,1157443693121110016,18588886892544,1157443710300979200,18606066761728,4521638759501840,18039132131344,4521655939366912,18056311996416,1157443693121110016,18588886892544,1157443693121110016,18588886892544,4521638759501840,18039132131344,4521638759497728,18039132127232,1157443693121110016,18588886892544,1157443693121110016,18588886892544,4521638759501840,18039132131344,4521638759497728,18039132127232,1157443693121110016,18588886892544,1157443693121110016,18588886892544,4521638759501840,18039132131344,4521638759497728,18039132127232,1157443723185881088,18618951663616,1157443693121110016,18588886892544,4521668824272896,18069196902400,4521638759497728,18039132127232,1157443718890913792,18614656696320,1157443723185881088,18618951663616,4521664529305600,18064901935104,4521668824268800,18069196898304,1157443710300979200,18606066761728,1157443718890913792,18614656696320,4521655939371008,18056312000512,4521664529301504,18064901931008,1157443710300979200,18606066761728,1157443710300979200,18606066761728,4521655939371008,18056312000512,4521655939366912,18056311996416,1157443693121110016,18588886892544,1157443710300979200,18606066761728,4521638759501824,18039132131328,4521655939366912,18056311996416,1157443693121110016,18588886892544,1157443693121110016,18588886892544,4521638759501824,18039132131328,4521638759497728,18039132127232,1157443693121110016,18588886892544,1157443693121110016,18588886892544,4521638759501824,18039132131328,4521638759497728,18039132127232,1157443693121110016,18588886892544,1157443693121110016,18588886892544,4521638759501824,18039132131328,4521638759497728,18039132127232,1157442898552160256,17794317942784,1157443693121110016,18588886892544,4521393946365968,17794318995472,4521638759497728,18039132127232,1157442894257192960,17790022975488,1157442898552160256,17794317942784,4521389651398672,17790024028176,4521393946361856,17794318991360,1157442885667258368,17781433040896,1157442894257192960,17790022975488,4521381061464080,17781434093584,4521389651394560,17790024024064,1157442885667258368,17781433040896,1157442885667258368,17781433040896,4521381061464080,17781434093584,4521381061459968,17781434089472,1157442868487389184,17764253171712,1157442885667258368,17781433040896,4521363881594896,17764254224400,4521381061459968,17781434089472,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363881594896,17764254224400,4521363881590784,17764254220288,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363881594896,17764254224400,4521363881590784,17764254220288,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363881594896,17764254224400,4521363881590784,17764254220288,1157442898552160256,17794317942784,1157442868487389184,17764253171712,4521393946365952,17794318995456,4521363881590784,17764254220288,1157442894257192960,17790022975488,1157442898552160256,17794317942784,4521389651398656,17790024028160,4521393946361856,17794318991360,1157442885667258368,17781433040896,1157442894257192960,17790022975488,4521381061464064,17781434093568,4521389651394560,17790024024064,1157442885667258368,17781433040896,1157442885667258368,17781433040896,4521381061464064,17781434093568,4521381061459968,17781434089472,1157442868487389184,17764253171712,1157442885667258368,17781433040896,4521363881594880,17764254224384,4521381061459968,17781434089472,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363881594880,17764254224384,4521363881590784,17764254220288,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363881594880,17764254224384,4521363881590784,17764254220288,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363881594880,17764254224384,4521363881590784,17764254220288,1157443173430067200,18069195849728,1157442868487389184,17764253171712,4522218579034112,18618951663616,4521363881590784,17764254220288,1157443169135099904,18064900882432,1157443173430067200,18069195849728,4522214284066816,18614656696320,4522218579034112,18618951663616,1157443160545165312,18056310947840,1157443169135099904,18064900882432,4522205694132224,18606066761728,4522214284066816,18614656696320,1157443160545165312,18056310947840,1157443160545165312,18056310947840,4522205694132224,18606066761728,4522205694132224,18606066761728,1157443143365296128,18039131078656,1157443160545165312,18056310947840,4522188514263040,18588886892544,4522205694132224,18606066761728,1157443143365296128,18039131078656,1157443143365296128,18039131078656,4522188514263040,18588886892544,4522188514263040,18588886892544,1157443143365296128,18039131078656,1157443143365296128,18039131078656,4522188514263040,18588886892544,4522188514263040,18588886892544,1157443143365296128,18039131078656,1157443143365296128,18039131078656,4522188514263040,18588886892544,4522188514263040,18588886892544,1157443173430067200,18069195849728,1157443143365296128,18039131078656,4522218579034112,18618951663616,4522188514263040,18588886892544,1157443169135099904,18064900882432,1157443173430067200,18069195849728,4522214284066816,18614656696320,4522218579034112,18618951663616,1157443160545165312,18056310947840,1157443169135099904,18064900882432,4522205694132224,18606066761728,4522214284066816,18614656696320,1157443160545165312,18056310947840,1157443160545165312,18056310947840,4522205694132224,18606066761728,4522205694132224,18606066761728,1157443143365296128,18039131078656,1157443160545165312,18056310947840,4522188514263040,18588886892544,4522205694132224,18606066761728,1157443143365296128,18039131078656,1157443143365296128,18039131078656,4522188514263040,18588886892544,4522188514263040,18588886892544,1157443143365296128,18039131078656,1157443143365296128,18039131078656,4522188514263040,18588886892544,4522188514263040,18588886892544,1157443143365296128,18039131078656,1157443143365296128,18039131078656,4522188514263040,18588886892544,4522188514263040,18588886892544,1157442898552160256,17794317942784,1157443143365296128,18039131078656,4521393945313280,17794317942784,4522188514263040,18588886892544,1157442894257192960,17790022975488,1157442898552160256,17794317942784,4521389650345984,17790022975488,4521393945313280,17794317942784,1157442885667258368,17781433040896,1157442894257192960,17790022975488,4521381060411392,17781433040896,4521389650345984,17790022975488,1157442885667258368,17781433040896,1157442885667258368,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,1157442868487389184,17764253171712,1157442885667258368,17781433040896,4521363880542208,17764253171712,4521381060411392,17781433040896,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442898552160256,17794317942784,1157442868487389184,17764253171712,4521393945313280,17794317942784,4521363880542208,17764253171712,1157442894257192960,17790022975488,1157442898552160256,17794317942784,4521389650345984,17790022975488,4521393945313280,17794317942784,1157442885667258368,17781433040896,1157442894257192960,17790022975488,4521381060411392,17781433040896,4521389650345984,17790022975488,1157442885667258368,17781433040896,1157442885667258368,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,1157442868487389184,17764253171712,1157442885667258368,17781433040896,4521363880542208,17764253171712,4521381060411392,17781433040896,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,0],[2314886351157207072,36142688772128,9042792185593856,35592930852864,2314886346862239776,36138393804832,9042787890626560,35588635885568,2314886338272305184,36129803870240,9042779300691968,35580045950976,2314886338272305184,36129803870240,9042779300691968,35580045950976,2314886321092436000,36112624001056,9042762120822784,35562866081792,2314886321092436000,36112624001056,9042762120822784,35562866081792,2314886321092436000,36112624001056,9042762120822784,35562866081792,2314886321092436000,36112624001056,9042762120822784,35562866081792,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886286732697632,36078264262688,9042727761084416,35528506343424,2314886351155101696,36142686666752,2314886351157207040,36142688772096,2314886346860134400,36138391699456,2314886346862239744,36138393804800,2314886338270199808,36129801764864,2314886338272305152,36129803870208,2314886338270199808,36129801764864,2314886338272305152,36129803870208,2314886321090330624,36112621895680,2314886321092435968,36112624001024,2314886321090330624,36112621895680,2314886321092435968,36112624001024,2314886321090330624,36112621895680,2314886321092435968,36112624001024,2314886321090330624,36112621895680,2314886321092435968,36112624001024,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314886286730592256,36078262157312,2314886286732697600,36078264262656,2314885801401393184,35592932958240,2314886351155101696,36142686666752,2314885797106425888,35588637990944,2314886346860134400,36138391699456,2314885788516491296,35580048056352,2314886338270199808,36129801764864,2314885788516491296,35580048056352,2314886338270199808,36129801764864,2314885771336622112,35562868187168,2314886321090330624,36112621895680,2314885771336622112,35562868187168,2314886321090330624,36112621895680,2314885771336622112,35562868187168,2314886321090330624,36112621895680,2314885771336622112,35562868187168,2314886321090330624,36112621895680,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885736976883744,35528508448800,2314886286730592256,36078262157312,2314885801399287808,35592930852864,2314885801401393152,35592932958208,2314885797104320512,35588635885568,2314885797106425856,35588637990912,2314885788514385920,35580045950976,2314885788516491264,35580048056320,2314885788514385920,35580045950976,2314885788516491264,35580048056320,2314885771334516736,35562866081792,2314885771336622080,35562868187136,2314885771334516736,35562866081792,2314885771336622080,35562868187136,2314885771334516736,35562866081792,2314885771336622080,35562868187136,2314885771334516736,35562866081792,2314885771336622080,35562868187136,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,2314885736974778368,35528506343424,2314885736976883712,35528508448768,9043341943513120,36142688772128,2314885801399287808,35592930852864,9043337648545824,36138393804832,2314885797104320512,35588635885568,9043329058611232,36129803870240,2314885788514385920,35580045950976,9043329058611232,36129803870240,2314885788514385920,35580045950976,9043311878742048,36112624001056,2314885771334516736,35562866081792,9043311878742048,36112624001056,2314885771334516736,35562866081792,9043311878742048,36112624001056,2314885771334516736,35562866081792,9043311878742048,36112624001056,2314885771334516736,35562866081792,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043277519003680,36078264262688,2314885736974778368,35528506343424,9043341941407744,36142686666752,9043341943513088,36142688772096,9043337646440448,36138391699456,9043337648545792,36138393804800,9043329056505856,36129801764864,9043329058611200,36129803870208,9043329056505856,36129801764864,9043329058611200,36129803870208,9043311876636672,36112621895680,9043311878742016,36112624001024,9043311876636672,36112621895680,9043311878742016,36112624001024,9043311876636672,36112621895680,9043311878742016,36112624001024,9043311876636672,36112621895680,9043311878742016,36112624001024,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9043277516898304,36078262157312,9043277519003648,36078264262656,9042792187699232,35592932958240,9043341941407744,36142686666752,9042787892731936,35588637990944,9043337646440448,36138391699456,9042779302797344,35580048056352,9043329056505856,36129801764864,9042779302797344,35580048056352,9043329056505856,36129801764864,9042762122928160,35562868187168,9043311876636672,36112621895680,9042762122928160,35562868187168,9043311876636672,36112621895680,9042762122928160,35562868187168,9043311876636672,36112621895680,9042762122928160,35562868187168,9043311876636672,36112621895680,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042727763189792,35528508448800,9043277516898304,36078262157312,9042792185593856,35592930852864,9042792187699200,35592932958208,9042787890626560,35588635885568,9042787892731904,35588637990912,9042779300691968,35580045950976,9042779302797312,35580048056320,9042779300691968,35580045950976,9042779302797312,35580048056320,9042762120822784,35562866081792,9042762122928128,35562868187136,9042762120822784,35562866081792,9042762122928128,35562868187136,9042762120822784,35562866081792,9042762122928128,35562868187136,9042762120822784,35562866081792,9042762122928128,35562868187136,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,9042727761084416,35528506343424,9042727763189760,35528508448768,2314886351157198848,36142688763904,9042792185593856,35592930852864,2314886346862231552,36138393796608,9042787890626560,35588635885568,2314886338272296960,36129803862016,9042779300691968,35580045950976,2314886338272296960,36129803862016,9042779300691968,35580045950976,2314886321092427776,36112623992832,9042762120822784,35562866081792,2314886321092427776,36112623992832,9042762120822784,35562866081792,2314886321092427776,36112623992832,9042762120822784,35562866081792,2314886321092427776,36112623992832,9042762120822784,35562866081792,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886286732689408,36078264254464,9042727761084416,35528506343424,2314886351155101696,36142686666752,2314886351157198848,36142688763904,2314886346860134400,36138391699456,2314886346862231552,36138393796608,2314886338270199808,36129801764864,2314886338272296960,36129803862016,2314886338270199808,36129801764864,2314886338272296960,36129803862016,2314886321090330624,36112621895680,2314886321092427776,36112623992832,2314886321090330624,36112621895680,2314886321092427776,36112623992832,2314886321090330624,36112621895680,2314886321092427776,36112623992832,2314886321090330624,36112621895680,2314886321092427776,36112623992832,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314886286730592256,36078262157312,2314886286732689408,36078264254464,2314885801401384960,35592932950016,2314886351155101696,36142686666752,2314885797106417664,35588637982720,2314886346860134400,36138391699456,2314885788516483072,35580048048128,2314886338270199808,36129801764864,2314885788516483072,35580048048128,2314886338270199808,36129801764864,2314885771336613888,35562868178944,2314886321090330624,36112621895680,2314885771336613888,35562868178944,2314886321090330624,36112621895680,2314885771336613888,35562868178944,2314886321090330624,36112621895680,2314885771336613888,35562868178944,2314886321090330624,36112621895680,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885736976875520,35528508440576,2314886286730592256,36078262157312,2314885801399287808,35592930852864,2314885801401384960,35592932950016,2314885797104320512,35588635885568,2314885797106417664,35588637982720,2314885788514385920,35580045950976,2314885788516483072,35580048048128,2314885788514385920,35580045950976,2314885788516483072,35580048048128,2314885771334516736,35562866081792,2314885771336613888,35562868178944,2314885771334516736,35562866081792,2314885771336613888,35562868178944,2314885771334516736,35562866081792,2314885771336613888,35562868178944,2314885771334516736,35562866081792,2314885771336613888,35562868178944,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,2314885736974778368,35528506343424,2314885736976875520,35528508440576,9043341943504896,36142688763904,2314885801399287808,35592930852864,9043337648537600,36138393796608,2314885797104320512,35588635885568,9043329058603008,36129803862016,2314885788514385920,35580045950976,9043329058603008,36129803862016,2314885788514385920,35580045950976,9043311878733824,36112623992832,2314885771334516736,35562866081792,9043311878733824,36112623992832,2314885771334516736,35562866081792,9043311878733824,36112623992832,2314885771334516736,35562866081792,9043311878733824,36112623992832,2314885771334516736,35562866081792,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043277518995456,36078264254464,2314885736974778368,35528506343424,9043341941407744,36142686666752,9043341943504896,36142688763904,9043337646440448,36138391699456,9043337648537600,36138393796608,9043329056505856,36129801764864,9043329058603008,36129803862016,9043329056505856,36129801764864,9043329058603008,36129803862016,9043311876636672,36112621895680,9043311878733824,36112623992832,9043311876636672,36112621895680,9043311878733824,36112623992832,9043311876636672,36112621895680,9043311878733824,36112623992832,9043311876636672,36112621895680,9043311878733824,36112623992832,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9043277516898304,36078262157312,9043277518995456,36078264254464,9042792187691008,35592932950016,9043341941407744,36142686666752,9042787892723712,35588637982720,9043337646440448,36138391699456,9042779302789120,35580048048128,9043329056505856,36129801764864,9042779302789120,35580048048128,9043329056505856,36129801764864,9042762122919936,35562868178944,9043311876636672,36112621895680,9042762122919936,35562868178944,9043311876636672,36112621895680,9042762122919936,35562868178944,9043311876636672,36112621895680,9042762122919936,35562868178944,9043311876636672,36112621895680,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042727763181568,35528508440576,9043277516898304,36078262157312,9042792185593856,35592930852864,9042792187691008,35592932950016,9042787890626560,35588635885568,9042787892723712,35588637982720,9042779300691968,35580045950976,9042779302789120,35580048048128,9042779300691968,35580045950976,9042779302789120,35580048048128,9042762120822784,35562866081792,9042762122919936,35562868178944,9042762120822784,35562866081792,9042762122919936,35562868178944,9042762120822784,35562866081792,9042762122919936,35562868178944,9042762120822784,35562866081792,9042762122919936,35562868178944,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,9042727761084416,35528506343424,9042727763181568,35528508440576,0],[4629771607097753664,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085524245839872,71125736374336,71125736357888,18085524241645568,18085558601383936,71160091901952,71177271771136,4629771607097753600,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085524245839872,71125736374272,71125736357888,18085524241645568,18085558601383936,71160091901952,71177271771136,4629771602802786368,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085524245839872,71125736374336,71125736357888,18085524241645568,18085558601383936,71160091901952,71177271771136,4629771602802786304,4629771607097737216,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71125736374272,71125736357888,18085524241645568,18085524241645568,71160091901952,71160091901952,4629771594212851776,4629771607097737216,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71125736374336,71125736357888,18085524241645568,18085524241645568,71160091901952,71160091901952,4629771594212851712,4629771602802769920,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71125736374272,71125736357888,18085524241645568,18085524241645568,71160091901952,71160091901952,4629771594212851776,4629771602802769920,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71125736374336,71125736357888,18085524241645568,18085524241645568,71160091901952,71160091901952,4629771594212851712,4629771594212835328,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71125736374272,71125736357888,18085524241645568,18085524241645568,71160091901952,71160091901952,4629771577032982592,4629771594212835328,71190160883776,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71125736357888,18085524241645568,18085524241645568,71125732163584,71160091901952,4629771577032982528,4629771594212835328,71190160883712,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71125736357888,18085524241645568,18085524241645568,71125732163584,71160091901952,4629771577032982592,4629771594212835328,71185865916480,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71125736357888,18085524241645568,18085524241645568,71125732163584,71160091901952,4629771577032982528,4629771577032966144,71185865916416,71190160867328,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085524241645568,18085524241645568,71125732163584,71125732163584,4629771577032982592,4629771577032966144,71177275981888,71190160867328,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085524241645568,18085524241645568,71125732163584,71125732163584,4629771577032982528,4629771577032966144,71177275981824,71185865900032,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085524241645568,18085524241645568,71125732163584,71125732163584,4629771577032982592,4629771577032966144,71177275981888,71185865900032,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085524241645568,18085524241645568,71125732163584,71125732163584,4629771577032982528,4629771577032966144,71177275981824,71177275965440,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085524241645568,18085524241645568,71125732163584,71125732163584,4629771542673244224,4629771577032966144,71160096112704,71177275965440,4629771607093542912,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085524241645568,71125732163584,71125732163584,4629771542673244160,4629771577032966144,71160096112640,71177275965440,4629771607093542912,4629771473949556736,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085524241645568,71125732163584,71125732163584,4629771542673244224,4629771577032966144,71160096112704,71177275965440,4629771602798575616,4629771473949556736,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085524241645568,71125732163584,71125732163584,4629771542673244160,4629771542673227776,71160096112640,71160096096256,4629771602798575616,4629771607093542912,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71125732163584,71125732163584,4629771542673244224,4629771542673227776,71160096112704,71160096096256,4629771594208641024,4629771607093542912,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71125732163584,71125732163584,4629771542673244160,4629771542673227776,71160096112640,71160096096256,4629771594208641024,4629771602798575616,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71125732163584,71125732163584,4629771542673244224,4629771542673227776,71160096112704,71160096096256,4629771594208641024,4629771602798575616,71057012686848,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71125732163584,71125732163584,4629771542673244160,4629771542673227776,71160096112640,71160096096256,4629771594208641024,4629771594208641024,71057012686848,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71125732163584,71125732163584,4629771542673244224,4629771542673227776,71125736374336,71160096096256,4629771577028771840,4629771594208641024,71190156673024,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71125732163584,4629771542673244160,4629771542673227776,71125736374272,71160096096256,4629771577028771840,4629771594208641024,71190156673024,71057012686848,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71125732163584,4629771542673244224,4629771542673227776,71125736374336,71160096096256,4629771577028771840,4629771594208641024,71185861705728,71057012686848,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71125732163584,4629771542673244160,4629771542673227776,71125736374272,71125736357888,4629771577028771840,4629771577028771840,71185861705728,71190156673024,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771542673244224,4629771542673227776,71125736374336,71125736357888,4629771577028771840,4629771577028771840,71177271771136,71190156673024,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771542673244160,4629771542673227776,71125736374272,71125736357888,4629771577028771840,4629771577028771840,71177271771136,71185861705728,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771542673244224,4629771542673227776,71125736374336,71125736357888,4629771577028771840,4629771577028771840,71177271771136,71185861705728,18085455526379584,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771542673244160,4629771542673227776,71125736374272,71125736357888,4629771577028771840,4629771577028771840,71177271771136,71177271771136,18085455526379520,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771542673227776,71125736374336,71125736357888,4629771542669033472,4629771577028771840,71160091901952,71177271771136,18085588670365760,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771542673227776,71125736374272,71125736357888,4629771542669033472,4629771577028771840,71160091901952,71177271771136,18085588670365696,18085455526363136,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771542673227776,71125736374336,71125736357888,4629771542669033472,4629771577028771840,71160091901952,71177271771136,18085584375398464,18085455526363136,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71125736374272,71125736357888,4629771542669033472,4629771542669033472,71160091901952,71160091901952,18085584375398400,18085588670349312,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71125736374336,71125736357888,4629771542669033472,4629771542669033472,71160091901952,71160091901952,18085575785463872,18085588670349312,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71125736374272,71125736357888,4629771542669033472,4629771542669033472,71160091901952,71160091901952,18085575785463808,18085584375382016,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71125736374336,71125736357888,4629771542669033472,4629771542669033472,71160091901952,71160091901952,18085575785463872,18085584375382016,71057016897600,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71125736374272,71125736357888,4629771542669033472,4629771542669033472,71160091901952,71160091901952,18085575785463808,18085575785447424,71057016897536,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71125736357888,4629771542669033472,4629771542669033472,71125732163584,71160091901952,18085558605594688,18085575785447424,71190160883776,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71125736357888,4629771542669033472,4629771542669033472,71125732163584,71160091901952,18085558605594624,18085575785447424,71190160883712,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71125736357888,4629771542669033472,4629771542669033472,71125732163584,71160091901952,18085558605594688,18085575785447424,71185865916480,71057016881152,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771542669033472,4629771542669033472,71125732163584,71125732163584,18085558605594624,18085558605578240,71185865916416,71190160867328,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771542669033472,4629771542669033472,71125732163584,71125732163584,18085558605594688,18085558605578240,71177275981888,71190160867328,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771542669033472,4629771542669033472,71125732163584,71125732163584,18085558605594624,18085558605578240,71177275981824,71185865900032,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771542669033472,4629771542669033472,71125732163584,71125732163584,18085558605594688,18085558605578240,71177275981888,71185865900032,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771542669033472,4629771542669033472,71125732163584,71125732163584,18085558605594624,18085558605578240,71177275981824,71177275965440,18085455522168832,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771542669033472,71125732163584,71125732163584,18085524245856320,18085558605578240,71160096112704,71177275965440,18085588666155008,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771542669033472,71125732163584,71125732163584,18085524245856256,18085558605578240,71160096112640,71177275965440,18085588666155008,18085455522168832,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771542669033472,71125732163584,71125732163584,18085524245856320,18085558605578240,71160096112704,71177275965440,18085584371187712,18085455522168832,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71125732163584,71125732163584,18085524245856256,18085524245839872,71160096112640,71160096096256,18085584371187712,18085588666155008,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71125732163584,71125732163584,18085524245856320,18085524245839872,71160096112704,71160096096256,18085575781253120,18085588666155008,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71125732163584,71125732163584,18085524245856256,18085524245839872,71160096112640,71160096096256,18085575781253120,18085584371187712,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71125732163584,71125732163584,18085524245856320,18085524245839872,71160096112704,71160096096256,18085575781253120,18085584371187712,71057012686848,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71125732163584,71125732163584,18085524245856256,18085524245839872,71160096112640,71160096096256,18085575781253120,18085575781253120,71057012686848,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71125732163584,18085524245856320,18085524245839872,71125736374336,71160096096256,18085558601383936,18085575781253120,71190156673024,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71125732163584,18085524245856256,18085524245839872,71125736374272,71160096096256,18085558601383936,18085575781253120,71190156673024,71057012686848,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71125732163584,18085524245856320,18085524245839872,71125736374336,71160096096256,18085558601383936,18085575781253120,71185861705728,71057012686848,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085524245856256,18085524245839872,71125736374272,71125736357888,18085558601383936,18085558601383936,71185861705728,71190156673024,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085524245856320,18085524245839872,71125736374336,71125736357888,18085558601383936,18085558601383936,71177271771136,71190156673024,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085524245856256,18085524245839872,71125736374272,71125736357888,18085558601383936,18085558601383936,71177271771136,71185861705728,4629771473953767488,4629771473953751040,71057016897600,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085524245856320,18085524245839872,71125736374336,71125736357888,18085558601383936,18085558601383936,71177271771136,71185861705728,4629771473953767424,4629771473953751040,71057016897536,71057016881152,4629771473949556736,4629771473949556736,71057012686848,71057012686848,18085524245856256,18085524245839872,71125736374272,71125736357888,18085558601383936,18085558601383936,71177271771136,71177271771136,0],[9259542118978846848,9259541848395874304,141220680597632,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542088905654272,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141255040303104,36169811541131264,36169948980051968,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141220672176128,36170052050878464,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141255040303104,9259542114683879424,9259541848395874304,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141220672176128,9259542088905654272,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141255040303104,36169811532709888,36169948971663360,141255031914496,141014513745920,36169948971663360,36169811532709888,141014513745920,141220672176128,9259541848395907200,9259541985834827776,141285105107072,141014522134528,9259541985834860544,9259541848395874304,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141255031914496,141014513745920,9259541848387485696,9259542118970425344,141014513745920,141220672176128,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141255031914496,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141280810139648,141014522134528,9259541985826439168,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141255031914496,141014513745920,36169811541131392,36170069239136256,141014522167424,141151961088000,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141151952699392,141014513745920,9259541848395907200,9259542088914042880,141014522167424,141151961088000,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141285096685568,36169811541131392,36169948980051968,141220680597632,141014522134528,36169811541131264,36170069239136256,141014522167296,141151961088000,36170077820682240,36169811532709888,141220672176128,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141220680597632,141014522134528,9259541848395907072,9259542088914042880,141014522167296,141151961088000,9259542106085523456,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141272220172288,36169811541131264,36169948980051968,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141220672176128,36170069230747648,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141255040303104,9259541848395907072,9259541985834827776,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141220672176128,9259542088905654272,9259541848387485696,141151952699392,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141272220172288,36169811532709888,36169948971663360,141280801718272,141014513745920,36169948971663360,36169811532709888,141014513745920,141220672176128,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141255040303104,9259541848387485696,9259541985826439168,141272211783680,141014513745920,9259541985826439168,9259541848387485696,141014513745920,141220672176128,36170052059299968,36169811541098496,141151961120896,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141272211783680,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141255031914496,141014513745920,36169948980084864,36169811541098496,141014522167424,141220680564736,36170052059299840,36169811541098496,141151961120768,141014522134528,36169811532709888,36170052050878464,141014513745920,141151952699392,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541848395907200,9259542114683846656,141014522167424,141220680564736,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542088905654272,141014513745920,141151952699392,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141255040336000,141014522134528,36169811541131264,36170082124038144,141014522167296,141220680564736,36169811532709888,36169948971663360,141220672176128,141014513745920,36169811532709888,36170052050878464,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141220680597632,141014522134528,9259541848395907072,9259542106093912064,141014522167296,141151961088000,9259542118970425344,9259541848387485696,141220672176128,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141255040335872,141014522134528,36169948971663360,36169811532709888,141014513745920,141255031914496,36169811532709888,36169948971663360,141220672176128,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141280810106880,9259541848395907072,9259541985834827776,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141255031914496,9259542114675458048,9259541848387485696,141220672176128,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141285105074176,36169811532709888,36169948971663360,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141255031914496,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141272220172288,9259541848387485696,9259541985826439168,141285096685568,141014513745920,9259541985826439168,9259541848387485696,141014513745920,141220672176128,36170069239169152,36169811541098496,141151961120896,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141014513745920,141151952699392,9259542088914075776,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141280801718272,141014513745920,36169948980084864,36169811541098496,141014522167424,141220680564736,36170052059299840,36169811541098496,141151961120768,141014522134528,36169811532709888,36170069230747648,141014513745920,141151952699392,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141220680564736,9259542088914075648,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542088905654272,141014513745920,141151952699392,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141272220205184,141014522134528,36169948980084736,36169811541098496,141014522167296,141220680564736,36169811532709888,36169948971663360,141220672176128,141014513745920,36169811532709888,36170069230747648,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141255040336000,141014522134528,9259541985834860544,9259541848395874304,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141220672176128,141014513745920,9259541848387485696,9259542088905654272,141014513745920,141151952699392,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141255040335872,141014522134528,36169948971663360,36169811532709888,141014513745920,141272211783680,36169811532709888,36169948971663360,141220672176128,141014513745920,9259541985834860672,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141255040335872,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141255031914496,9259541848387485696,9259541985826439168,141220672176128,141014513745920,36169811541131392,36170052059267072,141014522167424,141151961088000,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141272211783680,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141255031914496,36170082124071040,36169811541098496,141220680597632,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170052050878464,36169811532709888,141151952699392,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259542106093944960,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141255040303104,36170077829103616,36169811541098496,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141220672176128,36170052050878464,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141220680564736,9259542106093944832,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542114675458048,141014513745920,141220672176128,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141285105107072,141014522134528,36169948980084736,36169811541098496,141014522167296,141220680564736,36169811532709888,36169948971663360,141255031914496,141014513745920,36169811532709888,36170082115649536,141014513745920,141220672176128,9259541848395907200,9259541985834827776,141272220205184,141014522134528,9259541985834860544,9259541848395874304,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141220672176128,141014513745920,9259541848387485696,9259542106085523456,141014513745920,141151952699392,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141280810139648,141014522134528,36169948971663360,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141255031914496,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141272220205056,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141280801718272,9259541848387485696,9259541985826439168,141220672176128,141014513745920,36169811541131392,36170052059267072,141014522167424,141151961088000,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141285096685568,9259541848395907200,9259542088914042880,141014522167424,141151961088000,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141272211783680,36169811541131392,36169948980051968,141220680597632,141014522134528,36169811541131264,36170052059267072,141014522167296,141151961088000,36170069230747648,36169811532709888,141151952699392,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141220680597632,141014522134528,9259541848395907072,9259542088914042880,141014522167296,141151961088000,9259542088905654272,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141255040303104,36169811541131264,36169948980051968,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141220672176128,36170052050878464,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141255040303104,9259542118978846720,9259541848395874304,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141220672176128,9259542088905654272,9259541848387485696,141151952699392,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141255040303104,36169811532709888,36169948971663360,141272211783680,141014513745920,36169948971663360,36169811532709888,141014513745920,141220672176128,9259541848395907200,9259541985834827776,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141255040303104,9259541848387485696,9259541985826439168,141255031914496,141014513745920,9259541985826439168,9259541848387485696,141014513745920,141220672176128,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141255031914496,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141285105106944,141014522134528,9259541985826439168,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141255031914496,141014513745920,36169811541131392,36170077829070848,141014522167424,141220680564736,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170052050878464,141014513745920,141151952699392,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541848395907200,9259542106093912064,141014522167424,141151961088000,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141220680597632,141014522134528,36169811541131264,36170069239136256,141014522167296,141151961088000,36170082115649536,36169811532709888,141220672176128,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141220680597632,141014522134528,9259541848395907072,9259542088914042880,141014522167296,141151961088000,9259542106085523456,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141280810106880,36169811541131264,36169948980051968,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141255031914496,36170077820682240,36169811532709888,141220672176128,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141272220172288,9259541848395907072,9259541985834827776,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141220672176128,9259542106085523456,9259541848387485696,141151952699392,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141272220172288,36169811532709888,36169948971663360,141285096685568,141014513745920,36169948971663360,36169811532709888,141014513745920,141220672176128,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141255040303104,9259541848387485696,9259541985826439168,141272211783680,141014513745920,9259541985826439168,9259541848387485696,141014513745920,141220672176128,36170052059299968,36169811541098496,141151961120896,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141280801718272,141014513745920,9259542088914075776,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141272211783680,141014513745920,36169948980084864,36169811541098496,141014522167424,141220680564736,36170052059299840,36169811541098496,141151961120768,141014522134528,36169811532709888,36170052050878464,141014513745920,141151952699392,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541848395907200,9259542118978813952,141014522167424,141220680564736,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542088905654272,141014513745920,141151952699392,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141255040336000,141014522134528,36169948980084736,36169811541098496,141014522167296,141220680564736,36169811532709888,36169948971663360,141220672176128,141014513745920,36169811532709888,36170052050878464,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141255040336000,141014522134528,9259541848395907072,9259542114683846656,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141220672176128,141014513745920,9259541848387485696,9259542088905654272,141014513745920,141151952699392,36169948980084864,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141255040335872,141014522134528,36169948971663360,36169811532709888,141014513745920,141255031914496,36169811532709888,36169948971663360,141220672176128,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141285105074176,9259541848395907072,9259541985834827776,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141255031914496,9259542118970425344,9259541848387485696,141220672176128,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141255031914496,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141280810106880,9259541848387485696,9259541985826439168,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141255031914496,36170069239169152,36169811541098496,141151961120896,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141014513745920,141151952699392,9259542088914075776,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141285096685568,141014513745920,36169948980084864,36169811541098496,141014522167424,141220680564736,36170069239169024,36169811541098496,141151961120768,141014522134528,36169811532709888,36170077820682240,141014513745920,141220672176128,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141220680564736,9259542088914075648,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542106085523456,141014513745920,141151952699392,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141272220205184,141014522134528,36169948980084736,36169811541098496,141014522167296,141220680564736,36169811532709888,36169948971663360,141220672176128,141014513745920,36169811532709888,36170069230747648,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141255040336000,141014522134528,9259541985834860544,9259541848395874304,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141220672176128,141014513745920,9259541848387485696,9259542088905654272,141014513745920,141151952699392,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141272220205056,141014522134528,36169948971663360,36169811532709888,141014513745920,141280801718272,36169811532709888,36169948971663360,141220672176128,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141255040335872,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141272211783680,9259541848387485696,9259541985826439168,141220672176128,141014513745920,36169811541131392,36170052059267072,141014522167424,141151961088000,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141272211783680,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141255031914496,36169811541131392,36169948980051968,141220680597632,141014522134528,36169811541131264,36170052059267072,141014522167296,141151961088000,36170052050878464,36169811532709888,141151952699392,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259542114683879552,9259541848395874304,141220680597632,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542088905654272,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141255040303104,36170082124070912,36169811541098496,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141220672176128,36170052050878464,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141220680564736,9259542106093944832,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542118970425344,141014513745920,141220672176128,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141255040303104,36169811532709888,36169948971663360,141255031914496,141014513745920,36169948971663360,36169811532709888,141014513745920,141220672176128,9259541848395907200,9259541985834827776,141280810139776,141014522134528,9259541985834860544,9259541848395874304,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141255031914496,141014513745920,9259541848387485696,9259542114675458048,141014513745920,141220672176128,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141285105106944,141014522134528,36169948971663360,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141255031914496,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141272220205056,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141285096685568,9259541848387485696,9259541985826439168,141220672176128,141014513745920,36169811541131392,36170069239136256,141014522167424,141151961088000,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141151952699392,141014513745920,9259541848395907200,9259542088914042880,141014522167424,141151961088000,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141280801718272,36169811541131392,36169948980051968,141220680597632,141014522134528,36169811541131264,36170052059267072,141014522167296,141151961088000,36170069230747648,36169811532709888,141151952699392,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141220680597632,141014522134528,9259541848395907072,9259542088914042880,141014522167296,141151961088000,9259542088905654272,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141272220172288,36169811541131264,36169948980051968,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141220672176128,36170069230747648,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141255040303104,9259541848395907072,9259541985834827776,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141220672176128,9259542088905654272,9259541848387485696,141151952699392,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141255040303104,36169811532709888,36169948971663360,141272211783680,141014513745920,36169948971663360,36169811532709888,141014513745920,141220672176128,9259541848395907200,9259541985834827776,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141255040303104,9259541848387485696,9259541985826439168,141255031914496,141014513745920,9259541985826439168,9259541848387485696,141014513745920,141220672176128,36170052059299968,36169811541098496,141151961120896,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141272211783680,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141255031914496,141014513745920,36169811541131392,36170082124038144,141014522167424,141220680564736,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170052050878464,141014513745920,141151952699392,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541848395907200,9259542106093912064,141014522167424,141151961088000,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141255040336000,141014522134528,36169811541131264,36170077829070848,141014522167296,141220680564736,36169811532709888,36169948971663360,141220672176128,141014513745920,36169811532709888,36170052050878464,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141220680597632,141014522134528,9259541848395907072,9259542106093912064,141014522167296,141151961088000,9259542114675458048,9259541848387485696,141220672176128,141014513745920,9259541848387485696,9259542054545915904,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141285105074176,36169811541131264,36169948980051968,141220680597504,141014522134528,36169948971663360,36169811532709888,141014513745920,141255031914496,36170082115649536,36169811532709888,141220672176128,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141272220172288,9259541848395907072,9259541985834827776,141220680597504,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141220672176128,9259542106085523456,9259541848387485696,141151952699392,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141014522167296,141280810106880,36169811532709888,36169948971663360,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141255031914496,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141272220172288,9259541848387485696,9259541985826439168,141280801718272,141014513745920,9259541985826439168,9259541848387485696,141014513745920,141220672176128,36170052059299968,36169811541098496,141151961120896,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170017691140096,36169811532709888,141151952699392,141014513745920,36169811532709888,36169948971663360,141285096685568,141014513745920,9259542088914075776,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141272211783680,141014513745920,36169948980084864,36169811541098496,141014522167424,141220680564736,36170052059299840,36169811541098496,141151961120768,141014522134528,36169811532709888,36170069230747648,141014513745920,141151952699392,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141220680564736,9259542088914075648,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542088905654272,141014513745920,141151952699392,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141255040336000,141014522134528,36169948980084736,36169811541098496,141014522167296,141220680564736,36169811532709888,36169948971663360,141220672176128,141014513745920,36169811532709888,36170052050878464,141014513745920,141151952699392,9259541848395907200,9259541985834827776,141255040336000,141014522134528,9259541848395907072,9259542118978813952,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141220672176128,141014513745920,9259541848387485696,9259542088905654272,141014513745920,141151952699392,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141255040335872,141014522134528,36169948971663360,36169811532709888,141014513745920,141272211783680,36169811532709888,36169948971663360,141220672176128,141014513745920,9259541985834860672,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141255040335872,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141255031914496,9259541848387485696,9259541985826439168,141220672176128,141014513745920,36169811541131392,36170017699528704,141014522167424,141151961088000,36169948980084736,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141255031914496,9259541848395907200,9259542054554304512,141014522167424,141151961088000,9259541985834860544,9259541848395874304,141014522167296,141285105074176,9259541848387485696,9259541985826439168,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141255031914496,36170077829103744,36169811541098496,141220680597632,141014522134528,36169811541131264,36170017699528704,141014522167296,141151961088000,36170052050878464,36169811532709888,141151952699392,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,9259542106093944960,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259542054554304512,141014522167296,141151961088000,9259542054545915904,9259541848387485696,141151952699392,141014513745920,9259541848387485696,9259541985826439168,141014513745920,141151952699392,36169948980084864,36169811541098496,141014522167424,141220680564736,36170069239169024,36169811541098496,141151961120768,141014522134528,36169811532709888,36170082115649536,141014513745920,141220672176128,36170017691140096,36169811532709888,141151952699392,141014513745920,9259541985834860672,9259541848395874304,141014522167424,141220680564736,9259542088914075648,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542106085523456,141014513745920,141151952699392,9259542054545915904,9259541848387485696,141151952699392,141014513745920,36169811541131392,36169948980051968,141280810139776,141014522134528,36169948980084736,36169811541098496,141014522167296,141220680564736,36169811532709888,36169948971663360,141255031914496,141014513745920,36169811532709888,36170077820682240,141014513745920,141220672176128,9259541848395907200,9259541985834827776,141272220205184,141014522134528,9259541985834860544,9259541848395874304,141014522167296,141220680564736,9259541848387485696,9259541985826439168,141220672176128,141014513745920,9259541848387485696,9259542106085523456,141014513745920,141151952699392,36170017699561600,36169811541098496,141151961120896,141014522134528,36169811541131264,36169948980051968,141272220205056,141014522134528,36169948971663360,36169811532709888,141014513745920,141285096685568,36169811532709888,36169948971663360,141220672176128,141014513745920,9259542054554337408,9259541848395874304,141151961120896,141014522134528,9259541848395907072,9259541985834827776,141255040335872,141014522134528,9259541985826439168,9259541848387485696,141014513745920,141272211783680,9259541848387485696,9259541985826439168,141220672176128,141014513745920,36169811541131392,36170052059267072,141014522167424,141151961088000,36170017699561472,36169811541098496,141151961120768,141014522134528,36169811532709888,36170017691140096,141014513745920,141151952699392,36169948971663360,36169811532709888,141014513745920,141280801718272,9259541848395907200,9259542088914042880,141014522167424,141151961088000,9259542054554337280,9259541848395874304,141151961120768,141014522134528,9259541848387485696,9259542054545915904,141014513745920,141151952699392,9259541985826439168,9259541848387485696,141014513745920,141272211783680,36169811541131392,36169948980051968,141220680597632,141014522134528,36169811541131264,36170052059267072,141014522167296,141151961088000,36170052050878464,36169811532709888,141151952699392,141014513745920,36169811532709888,36170017691140096,141014513745920,141151952699392,0],[72618349279904001,72345670379372544,72354466489171968,288076341444608,560755241910272,72345670379372544,72354466489237504,288076341444608,283678311710720,72341272332861440,72341272349704192,283678294933504,283678311776512,283678294933504,283678311710720,72341272332861440,288076358287617,72618349263060992,288076358221824,72354466472394752,72345670396149760,560755225133056,288076358287360,72354466472394752,72341272349638656,283678294933504,283678311776256,72341272332861440,72341272349704448,283678294933504,72341272349638656,283678294933504,72354466489237761,288076341444608,560755241975808,288076341444608,296872451244032,72345670379372544,72618349279838208,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,72341272332861440,288076358287617,72354466472394752,72345670396215296,560755225133056,72345670396149760,296872434466816,288076358221824,72618349263060992,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72372058675282177,288076341444608,296872451309568,72345670379372544,314464637288448,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72372058658439168,72345670396215296,296872434466816,72345670396149760,314464620511232,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,314464637353984,72345670379372544,296872451244032,72345670379372544,72372058675216384,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,314464620511232,72345670396149760,296872434466816,288076358221824,72372058658439168,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72407243047371009,288076341444608,296872451309568,72345670379372544,349649009377280,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72407243030528000,72345670396215296,296872434466816,72345670396149760,349648992600064,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,349649009442816,72345670379372544,296872451244032,72345670379372544,72407243047305216,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,349648992600064,72345670396149760,296872434466816,288076358221824,72407243030528000,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72372058675282177,288076341444608,296872451309568,72345670379372544,314464637288448,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72372058658439168,72345670396215296,296872434466816,72345670396149760,314464620511232,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,314464637353984,72345670379372544,296872451244032,72345670379372544,72372058675216384,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,314464620511232,72345670396149760,296872434466816,288076358221824,72372058658439168,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72477611791548673,288076341444608,296872451309568,72345670379372544,420017753554944,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72477611774705664,72345670396215296,296872434466816,72345670396149760,420017736777728,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,420017753620480,72345670379372544,296872451244032,72345670379372544,72477611791482880,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,420017736777728,72345670396149760,296872434466816,288076358221824,72477611774705664,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72372058675282177,288076341444608,296872451309568,72345670379372544,314464637288448,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72372058658439168,72345670396215296,296872434466816,72345670396149760,314464620511232,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,314464637353984,72345670379372544,296872451244032,72345670379372544,72372058675216384,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,314464620511232,72345670396149760,296872434466816,288076358221824,72372058658439168,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72407243047371009,288076341444608,296872451309568,72345670379372544,349649009377280,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72407243030528000,72345670396215296,296872434466816,72345670396149760,349648992600064,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,349649009442816,72345670379372544,296872451244032,72345670379372544,72407243047305216,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,349648992600064,72345670396149760,296872434466816,288076358221824,72407243030528000,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72372058675282177,288076341444608,296872451309568,72345670379372544,314464637288448,72345670379372544,72354466489171968,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72372058658439168,72345670396215296,296872434466816,72345670396149760,314464620511232,288076358221824,72354466472394752,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72354466489237761,288076341444608,314464637353984,72345670379372544,296872451244032,72345670379372544,72372058675216384,288076341444608,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,288076358287617,72354466472394752,72345670396215296,314464620511232,72345670396149760,296872434466816,288076358221824,72372058658439168,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72618349279838208,288076341444608,296872451309568,72345670379372544,72618349279904000,72345670379372544,72354466489171968,288076341444608,72341272349704449,72341272332861440,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704192,283678294933504,288076358221824,72618349263060992,72345670396215296,296872434466816,288076358287616,72618349263060992,288076358221824,72354466472394752,283678311776513,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776256,72341272332861440,72354466489171968,288076341444608,560755241910272,72345670379372544,72354466489237760,288076341444608,560755241975808,288076341444608,72341272349704449,283678294933504,283678311776256,283678294933504,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,560755225133056,288076358287616,72354466472394752,72345670396215296,560755225133056,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72372058675216384,288076341444608,296872451244032,72345670379372544,72372058675282176,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72372058658439168,72345670396149760,296872434466816,288076358287616,72372058658439168,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,314464637288448,72345670379372544,72354466489237760,288076341444608,314464637353984,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,314464620511232,288076358287616,72354466472394752,72345670396215296,314464620511232,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72407243047305216,288076341444608,296872451244032,72345670379372544,72407243047371008,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72407243030528000,72345670396149760,296872434466816,288076358287616,72407243030528000,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,349649009377280,72345670379372544,72354466489237760,288076341444608,349649009442816,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,349648992600064,288076358287616,72354466472394752,72345670396215296,349648992600064,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72372058675216384,288076341444608,296872451244032,72345670379372544,72372058675282176,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72372058658439168,72345670396149760,296872434466816,288076358287616,72372058658439168,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,314464637288448,72345670379372544,72354466489237760,288076341444608,314464637353984,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,314464620511232,288076358287616,72354466472394752,72345670396215296,314464620511232,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72477611791482880,288076341444608,296872451244032,72345670379372544,72477611791548672,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72477611774705664,72345670396149760,296872434466816,288076358287616,72477611774705664,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,420017753554944,72345670379372544,72354466489237760,288076341444608,420017753620480,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,420017736777728,288076358287616,72354466472394752,72345670396215296,420017736777728,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72372058675216384,288076341444608,296872451244032,72345670379372544,72372058675282176,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72372058658439168,72345670396149760,296872434466816,288076358287616,72372058658439168,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,314464637288448,72345670379372544,72354466489237760,288076341444608,314464637353984,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,314464620511232,288076358287616,72354466472394752,72345670396215296,314464620511232,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72407243047305216,288076341444608,296872451244032,72345670379372544,72407243047371008,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72407243030528000,72345670396149760,296872434466816,288076358287616,72407243030528000,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,349649009377280,72345670379372544,72354466489237760,288076341444608,349649009442816,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,349648992600064,288076358287616,72354466472394752,72345670396215296,349648992600064,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72372058675216384,288076341444608,296872451244032,72345670379372544,72372058675282176,288076341444608,296872451309568,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72372058658439168,72345670396149760,296872434466816,288076358287616,72372058658439168,72345670396215296,296872434466816,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72354466489171968,288076341444608,314464637288448,72345670379372544,72354466489237760,288076341444608,314464637353984,72345670379372544,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,288076358221824,72354466472394752,72345670396149760,314464620511232,288076358287616,72354466472394752,72345670396215296,314464620511232,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,560755241976065,288076341444608,296872451244032,72345670379372544,72618349279838208,288076341444608,296872451309568,72345670379372544,72341272349638656,283678294933504,283678311776256,72341272332861440,72341272349704448,72341272332861440,72341272349638656,283678294933504,72345670396215553,560755225133056,72345670396149760,296872434466816,288076358221824,72618349263060992,72345670396215296,296872434466816,283678311710720,72341272332861440,72341272349704192,283678294933504,283678311776512,72341272332861440,283678311710720,72341272332861440,296872451309825,72345670379372544,72618349279903744,72345670379372544,72354466489171968,288076341444608,560755241910272,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,283678294933504,72345670396215553,296872434466816,288076358287360,72618349263060992,288076358221824,72354466472394752,72345670396149760,560755225133056,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,314464637354241,72345670379372544,72354466489237504,288076341444608,72372058675216384,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,314464620511232,288076358287360,72354466472394752,288076358221824,72372058658439168,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72372058675281920,288076341444608,72354466489171968,288076341444608,314464637288448,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72372058658439168,288076358221824,72354466472394752,72345670396149760,314464620511232,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,349649009443073,72345670379372544,72354466489237504,288076341444608,72407243047305216,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,349648992600064,288076358287360,72354466472394752,288076358221824,72407243030528000,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72407243047370752,288076341444608,72354466489171968,288076341444608,349649009377280,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72407243030528000,288076358221824,72354466472394752,72345670396149760,349648992600064,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,314464637354241,72345670379372544,72354466489237504,288076341444608,72372058675216384,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,314464620511232,288076358287360,72354466472394752,288076358221824,72372058658439168,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72372058675281920,288076341444608,72354466489171968,288076341444608,314464637288448,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72372058658439168,288076358221824,72354466472394752,72345670396149760,314464620511232,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,420017753620737,72345670379372544,72354466489237504,288076341444608,72477611791482880,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,420017736777728,288076358287360,72354466472394752,288076358221824,72477611774705664,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72477611791548416,288076341444608,72354466489171968,288076341444608,420017753554944,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72477611774705664,288076358221824,72354466472394752,72345670396149760,420017736777728,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,314464637354241,72345670379372544,72354466489237504,288076341444608,72372058675216384,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,314464620511232,288076358287360,72354466472394752,288076358221824,72372058658439168,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72372058675281920,288076341444608,72354466489171968,288076341444608,314464637288448,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72372058658439168,288076358221824,72354466472394752,72345670396149760,314464620511232,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,349649009443073,72345670379372544,72354466489237504,288076341444608,72407243047305216,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,349648992600064,288076358287360,72354466472394752,288076358221824,72407243030528000,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72407243047370752,288076341444608,72354466489171968,288076341444608,349649009377280,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72407243030528000,288076358221824,72354466472394752,72345670396149760,349648992600064,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,314464637354241,72345670379372544,72354466489237504,288076341444608,72372058675216384,288076341444608,296872451244032,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,314464620511232,288076358287360,72354466472394752,288076358221824,72372058658439168,72345670396149760,296872434466816,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,296872451309825,72345670379372544,72372058675281920,288076341444608,72354466489171968,288076341444608,314464637288448,72345670379372544,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704448,283678294933504,283678311776256,72341272332861440,72345670396215553,296872434466816,288076358287360,72372058658439168,288076358221824,72354466472394752,72345670396149760,314464620511232,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776512,72341272332861440,72341272349704192,283678294933504,560755241910272,72345670379372544,72354466489237504,288076341444608,560755241976064,288076341444608,296872451244032,72345670379372544,283678311776513,283678294933504,283678311710720,72341272332861440,72341272349638656,283678294933504,283678311776256,72341272332861440,72345670396149760,560755225133056,288076358287360,72354466472394752,72345670396215552,560755225133056,72345670396149760,296872434466816,72341272349704449,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72341272349704192,283678294933504,296872451244032,72345670379372544,72618349279838208,288076341444608,296872451309824,72345670379372544,72618349279903744,72345670379372544,283678311776513,72341272332861440,72341272349704192,72341272332861440,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72618349263060992,72345670396215552,296872434466816,288076358287360,72618349263060992,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,314464637288448,72345670379372544,72354466489171968,288076341444608,314464637354240,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,314464620511232,288076358221824,72354466472394752,72345670396215552,314464620511232,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72372058675216384,288076341444608,296872451309824,72345670379372544,72372058675281920,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72372058658439168,72345670396215552,296872434466816,288076358287360,72372058658439168,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,349649009377280,72345670379372544,72354466489171968,288076341444608,349649009443072,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,349648992600064,288076358221824,72354466472394752,72345670396215552,349648992600064,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72407243047305216,288076341444608,296872451309824,72345670379372544,72407243047370752,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72407243030528000,72345670396215552,296872434466816,288076358287360,72407243030528000,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,314464637288448,72345670379372544,72354466489171968,288076341444608,314464637354240,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,314464620511232,288076358221824,72354466472394752,72345670396215552,314464620511232,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72372058675216384,288076341444608,296872451309824,72345670379372544,72372058675281920,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72372058658439168,72345670396215552,296872434466816,288076358287360,72372058658439168,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,420017753554944,72345670379372544,72354466489171968,288076341444608,420017753620736,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,420017736777728,288076358221824,72354466472394752,72345670396215552,420017736777728,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72477611791482880,288076341444608,296872451309824,72345670379372544,72477611791548416,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72477611774705664,72345670396215552,296872434466816,288076358287360,72477611774705664,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,314464637288448,72345670379372544,72354466489171968,288076341444608,314464637354240,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,314464620511232,288076358221824,72354466472394752,72345670396215552,314464620511232,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72372058675216384,288076341444608,296872451309824,72345670379372544,72372058675281920,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72372058658439168,72345670396215552,296872434466816,288076358287360,72372058658439168,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,349649009377280,72345670379372544,72354466489171968,288076341444608,349649009443072,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,349648992600064,288076358221824,72354466472394752,72345670396215552,349648992600064,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72407243047305216,288076341444608,296872451309824,72345670379372544,72407243047370752,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72407243030528000,72345670396215552,296872434466816,288076358287360,72407243030528000,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,314464637288448,72345670379372544,72354466489171968,288076341444608,314464637354240,72345670379372544,72354466489237504,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,314464620511232,288076358221824,72354466472394752,72345670396215552,314464620511232,288076358287360,72354466472394752,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,296872451244032,72345670379372544,72372058675216384,288076341444608,296872451309824,72345670379372544,72372058675281920,288076341444608,283678311776513,72341272332861440,72341272349704192,283678294933504,72341272349638656,283678294933504,283678311710720,72341272332861440,72345670396149760,296872434466816,288076358221824,72372058658439168,72345670396215552,296872434466816,288076358287360,72372058658439168,72341272349704449,283678294933504,283678311776256,72341272332861440,283678311710720,72341272332861440,72341272349638656,283678294933504,0],[144956323094725122,841135018869250,144956323094724608,841135018868736,144683644177350656,568456101494784,144683644177350656,568456101494784,144956323061039104,841134985183232,144956323061039104,841134985183232,144956323094725120,841135018869248,144956323094724608,841135018868736,144683644211036674,568456135180802,144683644211036160,568456135180288,144956323061039104,841134985183232,144956323061039104,841134985183232,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644211036674,568456135180802,144683644211036160,568456135180288,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144745216862060544,630028786204672,144745216862060544,630028786204672,144683644177350656,568456101494784,144683644177350656,568456101494784,144745216828506112,630028752650240,144745216828506112,630028752650240,144745216862060544,630028786204672,144745216862060544,630028786204672,144683644210905088,568456135049216,144683644210905088,568456135049216,144745216828506112,630028752650240,144745216828506112,630028752650240,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144710032490103298,594844414247426,144710032490102784,594844414246912,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032490103296,594844414247424,144710032490102784,594844414246912,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144815585606369794,700397530513922,144815585606369280,700397530513408,144683644177350656,568456101494784,144683644177350656,568456101494784,144815585572683776,700397496827904,144815585572683776,700397496827904,144815585606369792,700397530513920,144815585606369280,700397530513408,144683644211036674,568456135180802,144683644211036160,568456135180288,144815585572683776,700397496827904,144815585572683776,700397496827904,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032490103298,594844414247426,144710032490102784,594844414246912,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032490103296,594844414247424,144710032490102784,594844414246912,144683644211036674,568456135180802,144683644211036160,568456135180288,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144745216862060544,630028786204672,144745216862060544,630028786204672,144683644177350656,568456101494784,144683644177350656,568456101494784,144745216828506112,630028752650240,144745216828506112,630028752650240,144745216862060544,630028786204672,144745216862060544,630028786204672,144683644211036674,568456135180802,144683644211036160,568456135180288,144745216828506112,630028752650240,144745216828506112,630028752650240,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144956323094593536,841135018737664,144956323094593536,841135018737664,144683644177350656,568456101494784,144683644177350656,568456101494784,144956323061039104,841134985183232,144956323061039104,841134985183232,144956323094593536,841135018737664,144956323094593536,841135018737664,144683644210905088,568456135049216,144683644210905088,568456135049216,144956323061039104,841134985183232,144956323061039104,841134985183232,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144710032490103298,594844414247426,144710032490102784,594844414246912,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032490103296,594844414247424,144710032490102784,594844414246912,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144745216862192130,630028786336258,144745216862191616,630028786335744,144683644177350656,568456101494784,144683644177350656,568456101494784,144745216828506112,630028752650240,144745216828506112,630028752650240,144745216862192128,630028786336256,144745216862191616,630028786335744,144683644211036674,568456135180802,144683644211036160,568456135180288,144745216828506112,630028752650240,144745216828506112,630028752650240,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644211036674,568456135180802,144683644211036160,568456135180288,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144815585606238208,700397530382336,144815585606238208,700397530382336,144683644177350656,568456101494784,144683644177350656,568456101494784,144815585572683776,700397496827904,144815585572683776,700397496827904,144815585606238208,700397530382336,144815585606238208,700397530382336,144683644210905088,568456135049216,144683644210905088,568456135049216,144815585572683776,700397496827904,144815585572683776,700397496827904,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440304058882,577252228203010,144692440304058368,577252228202496,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440304058880,577252228203008,144692440304058368,577252228202496,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032489971712,594844414115840,144710032489971712,594844414115840,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644211036674,568456135180802,144683644211036160,568456135180288,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144745216862192130,630028786336258,144745216862191616,630028786335744,144683644177350656,568456101494784,144683644177350656,568456101494784,144745216828506112,630028752650240,144745216828506112,630028752650240,144745216862192128,630028786336256,144745216862191616,630028786335744,144683644210905088,568456135049216,144683644210905088,568456135049216,144745216828506112,630028752650240,144745216828506112,630028752650240,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,144710032490103298,594844414247426,144710032490102784,594844414246912,144683644177350656,568456101494784,144683644177350656,568456101494784,144710032456417280,594844380561408,144710032456417280,594844380561408,144710032490103296,594844414247424,144710032490102784,594844414246912,144683644211036674,568456135180802,144683644211036160,568456135180288,144710032456417280,594844380561408,144710032456417280,594844380561408,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644211036672,568456135180800,144683644211036160,568456135180288,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644177350656,568456101494784,144683644177350656,568456101494784,144692440270372864,577252194516992,144692440270372864,577252194516992,144692440303927296,577252228071424,144692440303927296,577252228071424,144683644210905088,568456135049216,144683644210905088,568456135049216,144692440270372864,577252194516992,144692440270372864,577252194516992,144683644177350656,568456101494784,144683644177350656,568456101494784,144683644210905088,568456135049216,144683644210905088,568456135049216,0],[289632270724367364,1136912202989568,289384880540745728,1401894572655620,289368387933437952,1154504389033984,289632270724367360,1138011781726208,289631171212739588,1401894572655616,289368387933437952,1400795061027844,289367288421810176,1138011781726208,289631171212739584,1136912270098432,289632270656995328,1400795061027840,289367288421810176,1401894505283584,289368387866329088,1136912270098432,289632270656995328,1138011714617344,289631171145367552,1401894505283584,289368387866329088,1400794993655808,289367288354701312,1138011714617344,289631171145367552,1136912202989568,289368387933701124,1400794993655808,289367288354701312,1138011781989380,289632270724104192,1136912202989568,289368387933701120,1401894572392448,289367288422073348,1138011781989376,289632270724104192,1136912270361604,289631171212476416,1401894572392448,289367288422073344,1400795060764672,289368387866329088,1136912270361600,289631171212476416,1138011714617344,289632270656995328,1400795060764672,289368387866329088,1401894505283584,289367288354701312,1138011714617344,289632270656995328,1136912202989568,289631171145367552,1401894505283584,289367288354701312,1400794993655808,289385980119745540,1136912202989568,289631171145367552,1155603968033796,289368387933437952,1400794993655808,289385980119745536,1138011781726208,289384880608117764,1155603968033792,289368387933437952,1154504456406020,289367288421810176,1138011781726208,289384880608117760,1136912270098432,289385980052373504,1154504456406016,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933701124,1154504389033984,289367288354701312,1138011781989380,289385980119482368,1136912202989568,289368387933701120,1155603967770624,289367288422073348,1138011781989376,289385980119482368,1136912270361604,289384880607854592,1155603967770624,289367288422073344,1154504456142848,289368387866329088,1136912270361600,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289421164491834372,1136912202989568,289384880540745728,1190788340122628,289368387933437952,1154504389033984,289421164491834368,1138011781726208,289420064980206596,1190788340122624,289368387933437952,1189688828494852,289367288421810176,1138011781726208,289420064980206592,1136912270098432,289421164424462336,1189688828494848,289367288421810176,1190788272750592,289368387866329088,1136912270098432,289421164424462336,1138011714617344,289420064912834560,1190788272750592,289368387866329088,1189688761122816,289367288354701312,1138011714617344,289420064912834560,1136912202989568,289368387933701124,1189688761122816,289367288354701312,1138011781989380,289421164491571200,1136912202989568,289368387933701120,1190788339859456,289367288422073348,1138011781989376,289421164491571200,1136912270361604,289420064979943424,1190788339859456,289367288422073344,1189688828231680,289368387866329088,1136912270361600,289420064979943424,1138011714617344,289421164424462336,1189688828231680,289368387866329088,1190788272750592,289367288354701312,1138011714617344,289421164424462336,1136912202989568,289420064912834560,1190788272750592,289367288354701312,1189688761122816,289385980119745540,1136912202989568,289420064912834560,1155603968033796,289368387933437952,1189688761122816,289385980119745536,1138011781726208,289384880608117764,1155603968033792,289368387933437952,1154504456406020,289367288421810176,1138011781726208,289384880608117760,1136912270098432,289385980052373504,1154504456406016,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933701124,1154504389033984,289367288354701312,1138011781989380,289385980119482368,1136912202989568,289368387933701120,1155603967770624,289367288422073348,1138011781989376,289385980119482368,1136912270361604,289384880607854592,1155603967770624,289367288422073344,1154504456142848,289368387866329088,1136912270361600,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289491533236012036,1136912202989568,289384880540745728,1261157084300292,289368387933437952,1154504389033984,289491533236012032,1138011781726208,289490433724384260,1261157084300288,289368387933437952,1260057572672516,289367288421810176,1138011781726208,289490433724384256,1136912270098432,289491533168640000,1260057572672512,289367288421810176,1261157016928256,289368387866329088,1136912270098432,289491533168640000,1138011714617344,289490433657012224,1261157016928256,289368387866329088,1260057505300480,289367288354701312,1138011714617344,289490433657012224,1136912202989568,289368387933701124,1260057505300480,289367288354701312,1138011781989380,289491533235748864,1136912202989568,289368387933701120,1261157084037120,289367288422073348,1138011781989376,289491533235748864,1136912270361604,289490433724121088,1261157084037120,289367288422073344,1260057572409344,289368387866329088,1136912270361600,289490433724121088,1138011714617344,289491533168640000,1260057572409344,289368387866329088,1261157016928256,289367288354701312,1138011714617344,289491533168640000,1136912202989568,289490433657012224,1261157016928256,289367288354701312,1260057505300480,289385980119745540,1136912202989568,289490433657012224,1155603968033796,289368387933437952,1260057505300480,289385980119745536,1138011781726208,289384880608117764,1155603968033792,289368387933437952,1154504456406020,289367288421810176,1138011781726208,289384880608117760,1136912270098432,289385980052373504,1154504456406016,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933701124,1154504389033984,289367288354701312,1138011781989380,289385980119482368,1136912202989568,289368387933701120,1155603967770624,289367288422073348,1138011781989376,289385980119482368,1136912270361604,289384880607854592,1155603967770624,289367288422073344,1154504456142848,289368387866329088,1136912270361600,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289421164491834372,1136912202989568,289384880540745728,1190788340122628,289368387933437952,1154504389033984,289421164491834368,1138011781726208,289420064980206596,1190788340122624,289368387933437952,1189688828494852,289367288421810176,1138011781726208,289420064980206592,1136912270098432,289421164424462336,1189688828494848,289367288421810176,1190788272750592,289368387866329088,1136912270098432,289421164424462336,1138011714617344,289420064912834560,1190788272750592,289368387866329088,1189688761122816,289367288354701312,1138011714617344,289420064912834560,1136912202989568,289368387933701124,1189688761122816,289367288354701312,1138011781989380,289421164491571200,1136912202989568,289368387933701120,1190788339859456,289367288422073348,1138011781989376,289421164491571200,1136912270361604,289420064979943424,1190788339859456,289367288422073344,1189688828231680,289368387866329088,1136912270361600,289420064979943424,1138011714617344,289421164424462336,1189688828231680,289368387866329088,1190788272750592,289367288354701312,1138011714617344,289421164424462336,1136912202989568,289420064912834560,1190788272750592,289367288354701312,1189688761122816,289385980119745540,1136912202989568,289420064912834560,1155603968033796,289368387933437952,1189688761122816,289385980119745536,1138011781726208,289384880608117764,1155603968033792,289368387933437952,1154504456406020,289367288421810176,1138011781726208,289384880608117760,1136912270098432,289385980052373504,1154504456406016,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933701124,1154504389033984,289367288354701312,1138011781989380,289385980119482368,1136912202989568,289368387933701120,1155603967770624,289367288422073348,1138011781989376,289385980119482368,1136912270361604,289384880607854592,1155603967770624,289367288422073344,1154504456142848,289368387866329088,1136912270361600,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289632270724366336,1136912202989568,289384880540745728,1401894572654592,289368387933437952,1154504389033984,289632270724366336,1138011781726208,289631171212738560,1401894572654592,289368387933437952,1400795061026816,289367288421810176,1138011781726208,289631171212738560,1136912270098432,289632270656995328,1400795061026816,289367288421810176,1401894505283584,289368387866329088,1136912270098432,289632270656995328,1138011714617344,289631171145367552,1401894505283584,289368387866329088,1400794993655808,289367288354701312,1138011714617344,289631171145367552,1136912202989568,289368387933700096,1400794993655808,289367288354701312,1138011781988352,289632270724104192,1136912202989568,289368387933700096,1401894572392448,289367288422072320,1138011781988352,289632270724104192,1136912270360576,289631171212476416,1401894572392448,289367288422072320,1400795060764672,289368387866329088,1136912270360576,289631171212476416,1138011714617344,289632270656995328,1400795060764672,289368387866329088,1401894505283584,289367288354701312,1138011714617344,289632270656995328,1136912202989568,289631171145367552,1401894505283584,289367288354701312,1400794993655808,289385980119744512,1136912202989568,289631171145367552,1155603968032768,289368387933437952,1400794993655808,289385980119744512,1138011781726208,289384880608116736,1155603968032768,289368387933437952,1154504456404992,289367288421810176,1138011781726208,289384880608116736,1136912270098432,289385980052373504,1154504456404992,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933700096,1154504389033984,289367288354701312,1138011781988352,289385980119482368,1136912202989568,289368387933700096,1155603967770624,289367288422072320,1138011781988352,289385980119482368,1136912270360576,289384880607854592,1155603967770624,289367288422072320,1154504456142848,289368387866329088,1136912270360576,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289421164491833344,1136912202989568,289384880540745728,1190788340121600,289368387933437952,1154504389033984,289421164491833344,1138011781726208,289420064980205568,1190788340121600,289368387933437952,1189688828493824,289367288421810176,1138011781726208,289420064980205568,1136912270098432,289421164424462336,1189688828493824,289367288421810176,1190788272750592,289368387866329088,1136912270098432,289421164424462336,1138011714617344,289420064912834560,1190788272750592,289368387866329088,1189688761122816,289367288354701312,1138011714617344,289420064912834560,1136912202989568,289368387933700096,1189688761122816,289367288354701312,1138011781988352,289421164491571200,1136912202989568,289368387933700096,1190788339859456,289367288422072320,1138011781988352,289421164491571200,1136912270360576,289420064979943424,1190788339859456,289367288422072320,1189688828231680,289368387866329088,1136912270360576,289420064979943424,1138011714617344,289421164424462336,1189688828231680,289368387866329088,1190788272750592,289367288354701312,1138011714617344,289421164424462336,1136912202989568,289420064912834560,1190788272750592,289367288354701312,1189688761122816,289385980119744512,1136912202989568,289420064912834560,1155603968032768,289368387933437952,1189688761122816,289385980119744512,1138011781726208,289384880608116736,1155603968032768,289368387933437952,1154504456404992,289367288421810176,1138011781726208,289384880608116736,1136912270098432,289385980052373504,1154504456404992,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933700096,1154504389033984,289367288354701312,1138011781988352,289385980119482368,1136912202989568,289368387933700096,1155603967770624,289367288422072320,1138011781988352,289385980119482368,1136912270360576,289384880607854592,1155603967770624,289367288422072320,1154504456142848,289368387866329088,1136912270360576,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289491533236011008,1136912202989568,289384880540745728,1261157084299264,289368387933437952,1154504389033984,289491533236011008,1138011781726208,289490433724383232,1261157084299264,289368387933437952,1260057572671488,289367288421810176,1138011781726208,289490433724383232,1136912270098432,289491533168640000,1260057572671488,289367288421810176,1261157016928256,289368387866329088,1136912270098432,289491533168640000,1138011714617344,289490433657012224,1261157016928256,289368387866329088,1260057505300480,289367288354701312,1138011714617344,289490433657012224,1136912202989568,289368387933700096,1260057505300480,289367288354701312,1138011781988352,289491533235748864,1136912202989568,289368387933700096,1261157084037120,289367288422072320,1138011781988352,289491533235748864,1136912270360576,289490433724121088,1261157084037120,289367288422072320,1260057572409344,289368387866329088,1136912270360576,289490433724121088,1138011714617344,289491533168640000,1260057572409344,289368387866329088,1261157016928256,289367288354701312,1138011714617344,289491533168640000,1136912202989568,289490433657012224,1261157016928256,289367288354701312,1260057505300480,289385980119744512,1136912202989568,289490433657012224,1155603968032768,289368387933437952,1260057505300480,289385980119744512,1138011781726208,289384880608116736,1155603968032768,289368387933437952,1154504456404992,289367288421810176,1138011781726208,289384880608116736,1136912270098432,289385980052373504,1154504456404992,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933700096,1154504389033984,289367288354701312,1138011781988352,289385980119482368,1136912202989568,289368387933700096,1155603967770624,289367288422072320,1138011781988352,289385980119482368,1136912270360576,289384880607854592,1155603967770624,289367288422072320,1154504456142848,289368387866329088,1136912270360576,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,289421164491833344,1136912202989568,289384880540745728,1190788340121600,289368387933437952,1154504389033984,289421164491833344,1138011781726208,289420064980205568,1190788340121600,289368387933437952,1189688828493824,289367288421810176,1138011781726208,289420064980205568,1136912270098432,289421164424462336,1189688828493824,289367288421810176,1190788272750592,289368387866329088,1136912270098432,289421164424462336,1138011714617344,289420064912834560,1190788272750592,289368387866329088,1189688761122816,289367288354701312,1138011714617344,289420064912834560,1136912202989568,289368387933700096,1189688761122816,289367288354701312,1138011781988352,289421164491571200,1136912202989568,289368387933700096,1190788339859456,289367288422072320,1138011781988352,289421164491571200,1136912270360576,289420064979943424,1190788339859456,289367288422072320,1189688828231680,289368387866329088,1136912270360576,289420064979943424,1138011714617344,289421164424462336,1189688828231680,289368387866329088,1190788272750592,289367288354701312,1138011714617344,289421164424462336,1136912202989568,289420064912834560,1190788272750592,289367288354701312,1189688761122816,289385980119744512,1136912202989568,289420064912834560,1155603968032768,289368387933437952,1189688761122816,289385980119744512,1138011781726208,289384880608116736,1155603968032768,289368387933437952,1154504456404992,289367288421810176,1138011781726208,289384880608116736,1136912270098432,289385980052373504,1154504456404992,289367288421810176,1155603900661760,289368387866329088,1136912270098432,289385980052373504,1138011714617344,289384880540745728,1155603900661760,289368387866329088,1154504389033984,289367288354701312,1138011714617344,289384880540745728,1136912202989568,289368387933700096,1154504389033984,289367288354701312,1138011781988352,289385980119482368,1136912202989568,289368387933700096,1155603967770624,289367288422072320,1138011781988352,289385980119482368,1136912270360576,289384880607854592,1155603967770624,289367288422072320,1154504456142848,289368387866329088,1136912270360576,289384880607854592,1138011714617344,289385980052373504,1154504456142848,289368387866329088,1155603900661760,289367288354701312,1138011714617344,289385980052373504,1136912202989568,289384880540745728,1155603900661760,289367288354701312,1154504389033984,0],[578984165983651848,578984165983649792,2273824405979136,2273824405979136,2523413680228360,2523413680226304,578843428360552448,578843428360552448,578983066472024072,578983066472022016,2382676057128960,2382676057128960,2522314168600584,2522314168598528,578842328848924672,578842328848924672,578980867448768520,578980867448766464,2381576545501184,2381576545501184,2520115145345032,2520115145342976,578840129825669120,578840129825669120,578980867448768520,578980867448766464,2379377522245632,2379377522245632,2520115145345032,2520115145342976,578840129825669120,578840129825669120,578984165983651840,578984165983649792,2379377522245632,2379377522245632,2523413680228352,2523413680226304,578843428360552448,578843428360552448,578983066472024064,578983066472022016,2382676057128960,2382676057128960,2522314168600576,2522314168598528,578842328848924672,578842328848924672,578980867448768512,578980867448766464,2381576545501184,2381576545501184,2520115145345024,2520115145342976,578840129825669120,578840129825669120,578980867448768512,578980867448766464,2379377522245632,2379377522245632,2520115145345024,2520115145342976,578840129825669120,578840129825669120,578737875379030024,578737875379027968,2379377522245632,2379377522245632,2277123075606536,2277123075604480,578737875244285952,578737875244285952,578736775867402248,578736775867400192,2277122940862464,2277122940862464,2276023563978760,2276023563976704,578736775732658176,578736775732658176,578734576844146696,578734576844144640,2276023429234688,2276023429234688,2273824540723208,2273824540721152,578734576709402624,578734576709402624,578734576844146696,578734576844144640,2273824405979136,2273824405979136,2273824540723208,2273824540721152,578734576709402624,578734576709402624,578737875379030016,578737875379027968,2273824405979136,2273824405979136,2277123075606528,2277123075604480,578737875244285952,578737875244285952,578736775867402240,578736775867400192,2277122940862464,2277122940862464,2276023563978752,2276023563976704,578736775732658176,578736775732658176,578734576844146688,578734576844144640,2276023429234688,2276023429234688,2273824540723200,2273824540721152,578734576709402624,578734576709402624,578734576844146688,578734576844144640,2273824405979136,2273824405979136,2273824540723200,2273824540721152,578734576709402624,578734576709402624,578773059751118856,578773059751116800,2273824405979136,2273824405979136,2312307447695368,2312307447693312,578773059616374784,578773059616374784,578771960239491080,578771960239489024,2312307312951296,2312307312951296,2311207936067592,2311207936065536,578771960104747008,578771960104747008,578769761216235528,578769761216233472,2311207801323520,2311207801323520,2309008912812040,2309008912809984,578769761081491456,578769761081491456,578769761216235528,578769761216233472,2309008778067968,2309008778067968,2309008912812040,2309008912809984,578769761081491456,578769761081491456,578773059751118848,578773059751116800,2309008778067968,2309008778067968,2312307447695360,2312307447693312,578773059616374784,578773059616374784,578771960239491072,578771960239489024,2312307312951296,2312307312951296,2311207936067584,2311207936065536,578771960104747008,578771960104747008,578769761216235520,578769761216233472,2311207801323520,2311207801323520,2309008912812032,2309008912809984,578769761081491456,578769761081491456,578769761216235520,578769761216233472,2309008778067968,2309008778067968,2309008912812032,2309008912809984,578769761081491456,578769761081491456,578737875379030024,578737875379027968,2309008778067968,2309008778067968,2277123075606536,2277123075604480,578737875244285952,578737875244285952,578736775867402248,578736775867400192,2277122940862464,2277122940862464,2276023563978760,2276023563976704,578736775732658176,578736775732658176,578734576844146696,578734576844144640,2276023429234688,2276023429234688,2273824540723208,2273824540721152,578734576709402624,578734576709402624,578734576844146696,578734576844144640,2273824405979136,2273824405979136,2273824540723208,2273824540721152,578734576709402624,578734576709402624,578737875379030016,578737875379027968,2273824405979136,2273824405979136,2277123075606528,2277123075604480,578737875244285952,578737875244285952,578736775867402240,578736775867400192,2277122940862464,2277122940862464,2276023563978752,2276023563976704,578736775732658176,578736775732658176,578734576844146688,578734576844144640,2276023429234688,2276023429234688,2273824540723200,2273824540721152,578734576709402624,578734576709402624,578734576844146688,578734576844144640,2273824405979136,2273824405979136,2273824540723200,2273824540721152,578734576709402624,578734576709402624,578843428495296520,578843428495294464,2273824405979136,2273824405979136,2382676191873032,2382676191870976,578984165983125504,578984165983125504,578842328983668744,578842328983666688,2523413679702016,2523413679702016,2381576680245256,2381576680243200,578983066471497728,578983066471497728,578840129960413192,578840129960411136,2522314168074240,2522314168074240,2379377656989704,2379377656987648,578980867448242176,578980867448242176,578840129960413192,578840129960411136,2520115144818688,2520115144818688,2379377656989704,2379377656987648,578980867448242176,578980867448242176,578843428495296512,578843428495294464,2520115144818688,2520115144818688,2382676191873024,2382676191870976,578984165983125504,578984165983125504,578842328983668736,578842328983666688,2523413679702016,2523413679702016,2381576680245248,2381576680243200,578983066471497728,578983066471497728,578840129960413184,578840129960411136,2522314168074240,2522314168074240,2379377656989696,2379377656987648,578980867448242176,578980867448242176,578840129960413184,578840129960411136,2520115144818688,2520115144818688,2379377656989696,2379377656987648,578980867448242176,578980867448242176,578737875379030024,578737875379027968,2520115144818688,2520115144818688,2277123075606536,2277123075604480,578737875378503680,578737875378503680,578736775867402248,578736775867400192,2277123075080192,2277123075080192,2276023563978760,2276023563976704,578736775866875904,578736775866875904,578734576844146696,578734576844144640,2276023563452416,2276023563452416,2273824540723208,2273824540721152,578734576843620352,578734576843620352,578734576844146696,578734576844144640,2273824540196864,2273824540196864,2273824540723208,2273824540721152,578734576843620352,578734576843620352,578737875379030016,578737875379027968,2273824540196864,2273824540196864,2277123075606528,2277123075604480,578737875378503680,578737875378503680,578736775867402240,578736775867400192,2277123075080192,2277123075080192,2276023563978752,2276023563976704,578736775866875904,578736775866875904,578734576844146688,578734576844144640,2276023563452416,2276023563452416,2273824540723200,2273824540721152,578734576843620352,578734576843620352,578734576844146688,578734576844144640,2273824540196864,2273824540196864,2273824540723200,2273824540721152,578734576843620352,578734576843620352,578773059751118856,578773059751116800,2273824540196864,2273824540196864,2312307447695368,2312307447693312,578773059750592512,578773059750592512,578771960239491080,578771960239489024,2312307447169024,2312307447169024,2311207936067592,2311207936065536,578771960238964736,578771960238964736,578769761216235528,578769761216233472,2311207935541248,2311207935541248,2309008912812040,2309008912809984,578769761215709184,578769761215709184,578769761216235528,578769761216233472,2309008912285696,2309008912285696,2309008912812040,2309008912809984,578769761215709184,578769761215709184,578773059751118848,578773059751116800,2309008912285696,2309008912285696,2312307447695360,2312307447693312,578773059750592512,578773059750592512,578771960239491072,578771960239489024,2312307447169024,2312307447169024,2311207936067584,2311207936065536,578771960238964736,578771960238964736,578769761216235520,578769761216233472,2311207935541248,2311207935541248,2309008912812032,2309008912809984,578769761215709184,578769761215709184,578769761216235520,578769761216233472,2309008912285696,2309008912285696,2309008912812032,2309008912809984,578769761215709184,578769761215709184,578737875379030024,578737875379027968,2309008912285696,2309008912285696,2277123075606536,2277123075604480,578737875378503680,578737875378503680,578736775867402248,578736775867400192,2277123075080192,2277123075080192,2276023563978760,2276023563976704,578736775866875904,578736775866875904,578734576844146696,578734576844144640,2276023563452416,2276023563452416,2273824540723208,2273824540721152,578734576843620352,578734576843620352,578734576844146696,578734576844144640,2273824540196864,2273824540196864,2273824540723208,2273824540721152,578734576843620352,578734576843620352,578737875379030016,578737875379027968,2273824540196864,2273824540196864,2277123075606528,2277123075604480,578737875378503680,578737875378503680,578736775867402240,578736775867400192,2277123075080192,2277123075080192,2276023563978752,2276023563976704,578736775866875904,578736775866875904,578734576844146688,578734576844144640,2276023563452416,2276023563452416,2273824540723200,2273824540721152,578734576843620352,578734576843620352,578734576844146688,578734576844144640,2273824540196864,2273824540196864,2273824540723200,2273824540721152,578734576843620352,578734576843620352,578984165848907776,578984165848907776,2273824540196864,2273824540196864,2523413545484288,2523413545484288,578843428494770176,578843428494770176,578983066337280000,578983066337280000,2382676191346688,2382676191346688,2522314033856512,2522314033856512,578842328983142400,578842328983142400,578980867314024448,578980867314024448,2381576679718912,2381576679718912,2520115010600960,2520115010600960,578840129959886848,578840129959886848,578980867314024448,578980867314024448,2379377656463360,2379377656463360,2520115010600960,2520115010600960,578840129959886848,578840129959886848,578984165848907776,578984165848907776,2379377656463360,2379377656463360,2523413545484288,2523413545484288,578843428494770176,578843428494770176,578983066337280000,578983066337280000,2382676191346688,2382676191346688,2522314033856512,2522314033856512,578842328983142400,578842328983142400,578980867314024448,578980867314024448,2381576679718912,2381576679718912,2520115010600960,2520115010600960,578840129959886848,578840129959886848,578980867314024448,578980867314024448,2379377656463360,2379377656463360,2520115010600960,2520115010600960,578840129959886848,578840129959886848,578737875244285952,578737875244285952,2379377656463360,2379377656463360,2277122940862464,2277122940862464,578737875378503680,578737875378503680,578736775732658176,578736775732658176,2277123075080192,2277123075080192,2276023429234688,2276023429234688,578736775866875904,578736775866875904,578734576709402624,578734576709402624,2276023563452416,2276023563452416,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578734576709402624,578734576709402624,2273824540196864,2273824540196864,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578737875244285952,578737875244285952,2273824540196864,2273824540196864,2277122940862464,2277122940862464,578737875378503680,578737875378503680,578736775732658176,578736775732658176,2277123075080192,2277123075080192,2276023429234688,2276023429234688,578736775866875904,578736775866875904,578734576709402624,578734576709402624,2276023563452416,2276023563452416,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578734576709402624,578734576709402624,2273824540196864,2273824540196864,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578773059616374784,578773059616374784,2273824540196864,2273824540196864,2312307312951296,2312307312951296,578773059750592512,578773059750592512,578771960104747008,578771960104747008,2312307447169024,2312307447169024,2311207801323520,2311207801323520,578771960238964736,578771960238964736,578769761081491456,578769761081491456,2311207935541248,2311207935541248,2309008778067968,2309008778067968,578769761215709184,578769761215709184,578769761081491456,578769761081491456,2309008912285696,2309008912285696,2309008778067968,2309008778067968,578769761215709184,578769761215709184,578773059616374784,578773059616374784,2309008912285696,2309008912285696,2312307312951296,2312307312951296,578773059750592512,578773059750592512,578771960104747008,578771960104747008,2312307447169024,2312307447169024,2311207801323520,2311207801323520,578771960238964736,578771960238964736,578769761081491456,578769761081491456,2311207935541248,2311207935541248,2309008778067968,2309008778067968,578769761215709184,578769761215709184,578769761081491456,578769761081491456,2309008912285696,2309008912285696,2309008778067968,2309008778067968,578769761215709184,578769761215709184,578737875244285952,578737875244285952,2309008912285696,2309008912285696,2277122940862464,2277122940862464,578737875378503680,578737875378503680,578736775732658176,578736775732658176,2277123075080192,2277123075080192,2276023429234688,2276023429234688,578736775866875904,578736775866875904,578734576709402624,578734576709402624,2276023563452416,2276023563452416,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578734576709402624,578734576709402624,2273824540196864,2273824540196864,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578737875244285952,578737875244285952,2273824540196864,2273824540196864,2277122940862464,2277122940862464,578737875378503680,578737875378503680,578736775732658176,578736775732658176,2277123075080192,2277123075080192,2276023429234688,2276023429234688,578736775866875904,578736775866875904,578734576709402624,578734576709402624,2276023563452416,2276023563452416,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578734576709402624,578734576709402624,2273824540196864,2273824540196864,2273824405979136,2273824405979136,578734576843620352,578734576843620352,578843428360552448,578843428360552448,2273824540196864,2273824540196864,2382676057128960,2382676057128960,578984165848907776,578984165848907776,578842328848924672,578842328848924672,2523413545484288,2523413545484288,2381576545501184,2381576545501184,578983066337280000,578983066337280000,578840129825669120,578840129825669120,2522314033856512,2522314033856512,2379377522245632,2379377522245632,578980867314024448,578980867314024448,578840129825669120,578840129825669120,2520115010600960,2520115010600960,2379377522245632,2379377522245632,578980867314024448,578980867314024448,578843428360552448,578843428360552448,2520115010600960,2520115010600960,2382676057128960,2382676057128960,578984165848907776,578984165848907776,578842328848924672,578842328848924672,2523413545484288,2523413545484288,2381576545501184,2381576545501184,578983066337280000,578983066337280000,578840129825669120,578840129825669120,2522314033856512,2522314033856512,2379377522245632,2379377522245632,578980867314024448,578980867314024448,578840129825669120,578840129825669120,2520115010600960,2520115010600960,2379377522245632,2379377522245632,578980867314024448,578980867314024448,578737875244285952,578737875244285952,2520115010600960,2520115010600960,2277122940862464,2277122940862464,578737875244285952,578737875244285952,578736775732658176,578736775732658176,2277122940862464,2277122940862464,2276023429234688,2276023429234688,578736775732658176,578736775732658176,578734576709402624,578734576709402624,2276023429234688,2276023429234688,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578737875244285952,578737875244285952,2273824405979136,2273824405979136,2277122940862464,2277122940862464,578737875244285952,578737875244285952,578736775732658176,578736775732658176,2277122940862464,2277122940862464,2276023429234688,2276023429234688,578736775732658176,578736775732658176,578734576709402624,578734576709402624,2276023429234688,2276023429234688,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578773059616374784,578773059616374784,2273824405979136,2273824405979136,2312307312951296,2312307312951296,578773059616374784,578773059616374784,578771960104747008,578771960104747008,2312307312951296,2312307312951296,2311207801323520,2311207801323520,578771960104747008,578771960104747008,578769761081491456,578769761081491456,2311207801323520,2311207801323520,2309008778067968,2309008778067968,578769761081491456,578769761081491456,578769761081491456,578769761081491456,2309008778067968,2309008778067968,2309008778067968,2309008778067968,578769761081491456,578769761081491456,578773059616374784,578773059616374784,2309008778067968,2309008778067968,2312307312951296,2312307312951296,578773059616374784,578773059616374784,578771960104747008,578771960104747008,2312307312951296,2312307312951296,2311207801323520,2311207801323520,578771960104747008,578771960104747008,578769761081491456,578769761081491456,2311207801323520,2311207801323520,2309008778067968,2309008778067968,578769761081491456,578769761081491456,578769761081491456,578769761081491456,2309008778067968,2309008778067968,2309008778067968,2309008778067968,578769761081491456,578769761081491456,578737875244285952,578737875244285952,2309008778067968,2309008778067968,2277122940862464,2277122940862464,578737875244285952,578737875244285952,578736775732658176,578736775732658176,2277122940862464,2277122940862464,2276023429234688,2276023429234688,578736775732658176,578736775732658176,578734576709402624,578734576709402624,2276023429234688,2276023429234688,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578737875244285952,578737875244285952,2273824405979136,2273824405979136,2277122940862464,2277122940862464,578737875244285952,578737875244285952,578736775732658176,578736775732658176,2277122940862464,2277122940862464,2276023429234688,2276023429234688,578736775732658176,578736775732658176,578734576709402624,578734576709402624,2276023429234688,2276023429234688,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,0],[1157687956502220816,4766451895373840,1157469153418805248,4547648811958272,1157686856990593040,4765352383746064,1157687956501168128,4766451894321152,1157684657967337488,4763153360490512,1157686856989540352,4765352382693376,1157684657967337488,4763153360490512,1157684657966284800,4763153359437824,1157680259920826384,4758755313979408,1157684657966284800,4763153359437824,1157680259920826384,4758755313979408,1157680259919773696,4758755312926720,1157680259920826384,4758755313979408,1157680259919773696,4758755312926720,1157680259920826384,4758755313979408,1157680259919773696,4758755312926720,1157687956502216704,4766451895369728,1157680259919773696,4758755312926720,1157686856990588928,4765352383741952,1157687956501168128,4766451894321152,1157684657967333376,4763153360486400,1157686856989540352,4765352382693376,1157684657967333376,4763153360486400,1157684657966284800,4763153359437824,1157680259920822272,4758755313975296,1157684657966284800,4763153359437824,1157680259920822272,4758755313975296,1157680259919773696,4758755312926720,1157680259920822272,4758755313975296,1157680259919773696,4758755312926720,1157680259920822272,4758755313975296,1157680259919773696,4758755312926720,1157476850269687824,4555345662840848,1157680259919773696,4758755312926720,1157475750758060048,4554246151213072,1157476850268635136,4555345661788160,1157473551734804496,4552047127957520,1157475750757007360,4554246150160384,1157473551734804496,4552047127957520,1157473551733751808,4552047126904832,1157469153688293392,4547649081446416,1157473551733751808,4552047126904832,1157469153688293392,4547649081446416,1157469153687240704,4547649080393728,1157469153688293392,4547649081446416,1157469153687240704,4547649080393728,1157469153688293392,4547649081446416,1157469153687240704,4547649080393728,1157476850269683712,4555345662836736,1157469153687240704,4547649080393728,1157475750758055936,4554246151208960,1157476850268635136,4555345661788160,1157473551734800384,4552047127953408,1157475750757007360,4554246150160384,1157473551734800384,4552047127953408,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157547219013865488,4625714407018512,1157469153687240704,4547649080393728,1157546119502237712,4624614895390736,1157547219012812800,4625714405965824,1157543920478982160,4622415872135184,1157546119501185024,4624614894338048,1157543920478982160,4622415872135184,1157543920477929472,4622415871082496,1157539522432471056,4618017825624080,1157543920477929472,4622415871082496,1157539522432471056,4618017825624080,1157539522431418368,4618017824571392,1157539522432471056,4618017825624080,1157539522431418368,4618017824571392,1157539522432471056,4618017825624080,1157539522431418368,4618017824571392,1157547219013861376,4625714407014400,1157539522431418368,4618017824571392,1157546119502233600,4624614895386624,1157547219012812800,4625714405965824,1157543920478978048,4622415872131072,1157546119501185024,4624614894338048,1157543920478978048,4622415872131072,1157543920477929472,4622415871082496,1157539522432466944,4618017825619968,1157543920477929472,4622415871082496,1157539522432466944,4618017825619968,1157539522431418368,4618017824571392,1157539522432466944,4618017825619968,1157539522431418368,4618017824571392,1157539522432466944,4618017825619968,1157539522431418368,4618017824571392,1157476850269687824,4555345662840848,1157539522431418368,4618017824571392,1157475750758060048,4554246151213072,1157476850268635136,4555345661788160,1157473551734804496,4552047127957520,1157475750757007360,4554246150160384,1157473551734804496,4552047127957520,1157473551733751808,4552047126904832,1157469153688293392,4547649081446416,1157473551733751808,4552047126904832,1157469153688293392,4547649081446416,1157469153687240704,4547649080393728,1157469153688293392,4547649081446416,1157469153687240704,4547649080393728,1157469153688293392,4547649081446416,1157469153687240704,4547649080393728,1157476850269683712,4555345662836736,1157469153687240704,4547649080393728,1157475750758055936,4554246151208960,1157476850268635136,4555345661788160,1157473551734800384,4552047127953408,1157475750757007360,4554246150160384,1157473551734800384,4552047127953408,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157687956502220800,4766451895373824,1157469153687240704,4547649080393728,1157686856990593024,4765352383746048,1157687956501168128,4766451894321152,1157684657967337472,4763153360490496,1157686856989540352,4765352382693376,1157684657967337472,4763153360490496,1157684657966284800,4763153359437824,1157680259920826368,4758755313979392,1157684657966284800,4763153359437824,1157680259920826368,4758755313979392,1157680259919773696,4758755312926720,1157680259920826368,4758755313979392,1157680259919773696,4758755312926720,1157680259920826368,4758755313979392,1157680259919773696,4758755312926720,1157687956502216704,4766451895369728,1157680259919773696,4758755312926720,1157686856990588928,4765352383741952,1157687956501168128,4766451894321152,1157684657967333376,4763153360486400,1157686856989540352,4765352382693376,1157684657967333376,4763153360486400,1157684657966284800,4763153359437824,1157680259920822272,4758755313975296,1157684657966284800,4763153359437824,1157680259920822272,4758755313975296,1157680259919773696,4758755312926720,1157680259920822272,4758755313975296,1157680259919773696,4758755312926720,1157680259920822272,4758755313975296,1157680259919773696,4758755312926720,1157476850269687808,4555345662840832,1157680259919773696,4758755312926720,1157475750758060032,4554246151213056,1157476850268635136,4555345661788160,1157473551734804480,4552047127957504,1157475750757007360,4554246150160384,1157473551734804480,4552047127957504,1157473551733751808,4552047126904832,1157469153688293376,4547649081446400,1157473551733751808,4552047126904832,1157469153688293376,4547649081446400,1157469153687240704,4547649080393728,1157469153688293376,4547649081446400,1157469153687240704,4547649080393728,1157469153688293376,4547649081446400,1157469153687240704,4547649080393728,1157476850269683712,4555345662836736,1157469153687240704,4547649080393728,1157475750758055936,4554246151208960,1157476850268635136,4555345661788160,1157473551734800384,4552047127953408,1157475750757007360,4554246150160384,1157473551734800384,4552047127953408,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157547219013865472,4625714407018496,1157469153687240704,4547649080393728,1157546119502237696,4624614895390720,1157547219012812800,4625714405965824,1157543920478982144,4622415872135168,1157546119501185024,4624614894338048,1157543920478982144,4622415872135168,1157543920477929472,4622415871082496,1157539522432471040,4618017825624064,1157543920477929472,4622415871082496,1157539522432471040,4618017825624064,1157539522431418368,4618017824571392,1157539522432471040,4618017825624064,1157539522431418368,4618017824571392,1157539522432471040,4618017825624064,1157539522431418368,4618017824571392,1157547219013861376,4625714407014400,1157539522431418368,4618017824571392,1157546119502233600,4624614895386624,1157547219012812800,4625714405965824,1157543920478978048,4622415872131072,1157546119501185024,4624614894338048,1157543920478978048,4622415872131072,1157543920477929472,4622415871082496,1157539522432466944,4618017825619968,1157543920477929472,4622415871082496,1157539522432466944,4618017825619968,1157539522431418368,4618017824571392,1157539522432466944,4618017825619968,1157539522431418368,4618017824571392,1157539522432466944,4618017825619968,1157539522431418368,4618017824571392,1157476850269687808,4555345662840832,1157539522431418368,4618017824571392,1157475750758060032,4554246151213056,1157476850268635136,4555345661788160,1157473551734804480,4552047127957504,1157475750757007360,4554246150160384,1157473551734804480,4552047127957504,1157473551733751808,4552047126904832,1157469153688293376,4547649081446400,1157473551733751808,4552047126904832,1157469153688293376,4547649081446400,1157469153687240704,4547649080393728,1157469153688293376,4547649081446400,1157469153687240704,4547649080393728,1157469153688293376,4547649081446400,1157469153687240704,4547649080393728,1157476850269683712,4555345662836736,1157469153687240704,4547649080393728,1157475750758055936,4554246151208960,1157476850268635136,4555345661788160,1157473551734800384,4552047127953408,1157475750757007360,4554246150160384,1157473551734800384,4552047127953408,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157473551733751808,4552047126904832,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157469153688289280,4547649081442304,1157469153687240704,4547649080393728,1157687956232732672,4766451625885696,1157469153687240704,4547649080393728,1157686856721104896,4765352114257920,1157687956232732672,4766451625885696,1157684657697849344,4763153091002368,1157686856721104896,4765352114257920,1157684657697849344,4763153091002368,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157687956232732672,4766451625885696,1157680259651338240,4758755044491264,1157686856721104896,4765352114257920,1157687956232732672,4766451625885696,1157684657697849344,4763153091002368,1157686856721104896,4765352114257920,1157684657697849344,4763153091002368,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157476850000199680,4555345393352704,1157680259651338240,4758755044491264,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157476850000199680,4555345393352704,1157469153418805248,4547648811958272,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157547218744377344,4625714137530368,1157469153418805248,4547648811958272,1157546119232749568,4624614625902592,1157547218744377344,4625714137530368,1157543920209494016,4622415602647040,1157546119232749568,4624614625902592,1157543920209494016,4622415602647040,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157547218744377344,4625714137530368,1157539522162982912,4618017556135936,1157546119232749568,4624614625902592,1157547218744377344,4625714137530368,1157543920209494016,4622415602647040,1157546119232749568,4624614625902592,1157543920209494016,4622415602647040,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157476850000199680,4555345393352704,1157539522162982912,4618017556135936,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157476850000199680,4555345393352704,1157469153418805248,4547648811958272,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157687956232732672,4766451625885696,1157469153418805248,4547648811958272,1157686856721104896,4765352114257920,1157687956232732672,4766451625885696,1157684657697849344,4763153091002368,1157686856721104896,4765352114257920,1157684657697849344,4763153091002368,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157687956232732672,4766451625885696,1157680259651338240,4758755044491264,1157686856721104896,4765352114257920,1157687956232732672,4766451625885696,1157684657697849344,4763153091002368,1157686856721104896,4765352114257920,1157684657697849344,4763153091002368,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157684657697849344,4763153091002368,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157680259651338240,4758755044491264,1157476850000199680,4555345393352704,1157680259651338240,4758755044491264,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157476850000199680,4555345393352704,1157469153418805248,4547648811958272,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157547218744377344,4625714137530368,1157469153418805248,4547648811958272,1157546119232749568,4624614625902592,1157547218744377344,4625714137530368,1157543920209494016,4622415602647040,1157546119232749568,4624614625902592,1157543920209494016,4622415602647040,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157547218744377344,4625714137530368,1157539522162982912,4618017556135936,1157546119232749568,4624614625902592,1157547218744377344,4625714137530368,1157543920209494016,4622415602647040,1157546119232749568,4624614625902592,1157543920209494016,4622415602647040,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157543920209494016,4622415602647040,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157539522162982912,4618017556135936,1157476850000199680,4555345393352704,1157539522162982912,4618017556135936,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157476850000199680,4555345393352704,1157469153418805248,4547648811958272,1157475750488571904,4554245881724928,1157476850000199680,4555345393352704,1157473551465316352,4552046858469376,1157475750488571904,4554245881724928,1157473551465316352,4552046858469376,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157473551465316352,4552046858469376,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,1157469153418805248,4547648811958272,0],[2315095537539358752,2315095537537253376,9095297623916544,9095297623916544,2315094438027730976,2315094438025625600,9095297623916544,9095297623916544,2315092239004475424,2315092239002370048,9095297623916544,9095297623916544,2315092239004475424,2315092239002370048,9095297623916544,9095297623916544,2315087840957964320,2315087840955858944,9095297623916544,9095297623916544,2315087840957964320,2315087840955858944,9095297623916544,9095297623916544,2315087840957964320,2315087840955858944,9095297623916544,9095297623916544,2315087840957964320,2315087840955858944,9095297623916544,9095297623916544,2315079044864942112,2315079044862836736,2315095537539358720,2315095537537253376,2315079044864942112,2315079044862836736,2315094438027730944,2315094438025625600,2315079044864942112,2315079044862836736,2315092239004475392,2315092239002370048,2315079044864942112,2315079044862836736,2315092239004475392,2315092239002370048,2315079044864942112,2315079044862836736,2315087840957964288,2315087840955858944,2315079044864942112,2315079044862836736,2315087840957964288,2315087840955858944,2315079044864942112,2315079044862836736,2315087840957964288,2315087840955858944,2315079044864942112,2315079044862836736,2315087840957964288,2315087840955858944,9252528325664800,9252528323559424,2315079044864942080,2315079044862836736,9251428814037024,9251428811931648,2315079044864942080,2315079044862836736,9249229790781472,9249229788676096,2315079044864942080,2315079044862836736,9249229790781472,9249229788676096,2315079044864942080,2315079044862836736,9244831744270368,9244831742164992,2315079044864942080,2315079044862836736,9244831744270368,9244831742164992,2315079044864942080,2315079044862836736,9244831744270368,9244831742164992,2315079044864942080,2315079044862836736,9244831744270368,9244831742164992,2315079044864942080,2315079044862836736,9236035651248160,9236035649142784,9252528325664768,9252528323559424,9236035651248160,9236035649142784,9251428814036992,9251428811931648,9236035651248160,9236035649142784,9249229790781440,9249229788676096,9236035651248160,9236035649142784,9249229790781440,9249229788676096,9236035651248160,9236035649142784,9244831744270336,9244831742164992,9236035651248160,9236035649142784,9244831744270336,9244831742164992,9236035651248160,9236035649142784,9244831744270336,9244831742164992,9236035651248160,9236035649142784,9244831744270336,9244831742164992,2314954800051003424,2314954800048898048,9236035651248128,9236035649142784,2314953700539375648,2314953700537270272,9236035651248128,9236035649142784,2314951501516120096,2314951501514014720,9236035651248128,9236035649142784,2314951501516120096,2314951501514014720,9236035651248128,9236035649142784,2314947103469608992,2314947103467503616,9236035651248128,9236035649142784,2314947103469608992,2314947103467503616,9236035651248128,9236035649142784,2314947103469608992,2314947103467503616,9236035651248128,9236035649142784,2314947103469608992,2314947103467503616,9236035651248128,9236035649142784,2314938307376586784,2314938307374481408,2314954800051003392,2314954800048898048,2314938307376586784,2314938307374481408,2314953700539375616,2314953700537270272,2314938307376586784,2314938307374481408,2314951501516120064,2314951501514014720,2314938307376586784,2314938307374481408,2314951501516120064,2314951501514014720,2314938307376586784,2314938307374481408,2314947103469608960,2314947103467503616,2314938307376586784,2314938307374481408,2314947103469608960,2314947103467503616,2314938307376586784,2314938307374481408,2314947103469608960,2314947103467503616,2314938307376586784,2314938307374481408,2314947103469608960,2314947103467503616,9111790837309472,9111790835204096,2314938307376586752,2314938307374481408,9110691325681696,9110691323576320,2314938307376586752,2314938307374481408,9108492302426144,9108492300320768,2314938307376586752,2314938307374481408,9108492302426144,9108492300320768,2314938307376586752,2314938307374481408,9104094255915040,9104094253809664,2314938307376586752,2314938307374481408,9104094255915040,9104094253809664,2314938307376586752,2314938307374481408,9104094255915040,9104094253809664,2314938307376586752,2314938307374481408,9104094255915040,9104094253809664,2314938307376586752,2314938307374481408,9095298162892832,9095298160787456,9111790837309440,9111790835204096,9095298162892832,9095298160787456,9110691325681664,9110691323576320,9095298162892832,9095298160787456,9108492302426112,9108492300320768,9095298162892832,9095298160787456,9108492302426112,9108492300320768,9095298162892832,9095298160787456,9104094255915008,9104094253809664,9095298162892832,9095298160787456,9104094255915008,9104094253809664,9095298162892832,9095298160787456,9104094255915008,9104094253809664,9095298162892832,9095298160787456,9104094255915008,9104094253809664,2315095537000382464,2315095537000382464,9095298162892800,9095298160787456,2315094437488754688,2315094437488754688,9095298162892800,9095298160787456,2315092238465499136,2315092238465499136,9095298162892800,9095298160787456,2315092238465499136,2315092238465499136,9095298162892800,9095298160787456,2315087840418988032,2315087840418988032,9095298162892800,9095298160787456,2315087840418988032,2315087840418988032,9095298162892800,9095298160787456,2315087840418988032,2315087840418988032,9095298162892800,9095298160787456,2315087840418988032,2315087840418988032,9095298162892800,9095298160787456,2315079044325965824,2315079044325965824,2315095537000382464,2315095537000382464,2315079044325965824,2315079044325965824,2315094437488754688,2315094437488754688,2315079044325965824,2315079044325965824,2315092238465499136,2315092238465499136,2315079044325965824,2315079044325965824,2315092238465499136,2315092238465499136,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,9252527786688512,9252527786688512,2315079044325965824,2315079044325965824,9251428275060736,9251428275060736,2315079044325965824,2315079044325965824,9249229251805184,9249229251805184,2315079044325965824,2315079044325965824,9249229251805184,9249229251805184,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9236035112271872,9236035112271872,9252527786688512,9252527786688512,9236035112271872,9236035112271872,9251428275060736,9251428275060736,9236035112271872,9236035112271872,9249229251805184,9249229251805184,9236035112271872,9236035112271872,9249229251805184,9249229251805184,9236035112271872,9236035112271872,9244831205294080,9244831205294080,9236035112271872,9236035112271872,9244831205294080,9244831205294080,9236035112271872,9236035112271872,9244831205294080,9244831205294080,9236035112271872,9236035112271872,9244831205294080,9244831205294080,2314954799512027136,2314954799512027136,9236035112271872,9236035112271872,2314953700000399360,2314953700000399360,9236035112271872,9236035112271872,2314951500977143808,2314951500977143808,9236035112271872,9236035112271872,2314951500977143808,2314951500977143808,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314938306837610496,2314938306837610496,2314954799512027136,2314954799512027136,2314938306837610496,2314938306837610496,2314953700000399360,2314953700000399360,2314938306837610496,2314938306837610496,2314951500977143808,2314951500977143808,2314938306837610496,2314938306837610496,2314951500977143808,2314951500977143808,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,9111790298333184,9111790298333184,2314938306837610496,2314938306837610496,9110690786705408,9110690786705408,2314938306837610496,2314938306837610496,9108491763449856,9108491763449856,2314938306837610496,2314938306837610496,9108491763449856,9108491763449856,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9095297623916544,9095297623916544,9111790298333184,9111790298333184,9095297623916544,9095297623916544,9110690786705408,9110690786705408,9095297623916544,9095297623916544,9108491763449856,9108491763449856,9095297623916544,9095297623916544,9108491763449856,9108491763449856,9095297623916544,9095297623916544,9104093716938752,9104093716938752,9095297623916544,9095297623916544,9104093716938752,9104093716938752,9095297623916544,9095297623916544,9104093716938752,9104093716938752,9095297623916544,9095297623916544,9104093716938752,9104093716938752,2315095537539350528,2315095537537253376,9095297623916544,9095297623916544,2315094438027722752,2315094438025625600,9095297623916544,9095297623916544,2315092239004467200,2315092239002370048,9095297623916544,9095297623916544,2315092239004467200,2315092239002370048,9095297623916544,9095297623916544,2315087840957956096,2315087840955858944,9095297623916544,9095297623916544,2315087840957956096,2315087840955858944,9095297623916544,9095297623916544,2315087840957956096,2315087840955858944,9095297623916544,9095297623916544,2315087840957956096,2315087840955858944,9095297623916544,9095297623916544,2315079044864933888,2315079044862836736,2315095537539350528,2315095537537253376,2315079044864933888,2315079044862836736,2315094438027722752,2315094438025625600,2315079044864933888,2315079044862836736,2315092239004467200,2315092239002370048,2315079044864933888,2315079044862836736,2315092239004467200,2315092239002370048,2315079044864933888,2315079044862836736,2315087840957956096,2315087840955858944,2315079044864933888,2315079044862836736,2315087840957956096,2315087840955858944,2315079044864933888,2315079044862836736,2315087840957956096,2315087840955858944,2315079044864933888,2315079044862836736,2315087840957956096,2315087840955858944,9252528325656576,9252528323559424,2315079044864933888,2315079044862836736,9251428814028800,9251428811931648,2315079044864933888,2315079044862836736,9249229790773248,9249229788676096,2315079044864933888,2315079044862836736,9249229790773248,9249229788676096,2315079044864933888,2315079044862836736,9244831744262144,9244831742164992,2315079044864933888,2315079044862836736,9244831744262144,9244831742164992,2315079044864933888,2315079044862836736,9244831744262144,9244831742164992,2315079044864933888,2315079044862836736,9244831744262144,9244831742164992,2315079044864933888,2315079044862836736,9236035651239936,9236035649142784,9252528325656576,9252528323559424,9236035651239936,9236035649142784,9251428814028800,9251428811931648,9236035651239936,9236035649142784,9249229790773248,9249229788676096,9236035651239936,9236035649142784,9249229790773248,9249229788676096,9236035651239936,9236035649142784,9244831744262144,9244831742164992,9236035651239936,9236035649142784,9244831744262144,9244831742164992,9236035651239936,9236035649142784,9244831744262144,9244831742164992,9236035651239936,9236035649142784,9244831744262144,9244831742164992,2314954800050995200,2314954800048898048,9236035651239936,9236035649142784,2314953700539367424,2314953700537270272,9236035651239936,9236035649142784,2314951501516111872,2314951501514014720,9236035651239936,9236035649142784,2314951501516111872,2314951501514014720,9236035651239936,9236035649142784,2314947103469600768,2314947103467503616,9236035651239936,9236035649142784,2314947103469600768,2314947103467503616,9236035651239936,9236035649142784,2314947103469600768,2314947103467503616,9236035651239936,9236035649142784,2314947103469600768,2314947103467503616,9236035651239936,9236035649142784,2314938307376578560,2314938307374481408,2314954800050995200,2314954800048898048,2314938307376578560,2314938307374481408,2314953700539367424,2314953700537270272,2314938307376578560,2314938307374481408,2314951501516111872,2314951501514014720,2314938307376578560,2314938307374481408,2314951501516111872,2314951501514014720,2314938307376578560,2314938307374481408,2314947103469600768,2314947103467503616,2314938307376578560,2314938307374481408,2314947103469600768,2314947103467503616,2314938307376578560,2314938307374481408,2314947103469600768,2314947103467503616,2314938307376578560,2314938307374481408,2314947103469600768,2314947103467503616,9111790837301248,9111790835204096,2314938307376578560,2314938307374481408,9110691325673472,9110691323576320,2314938307376578560,2314938307374481408,9108492302417920,9108492300320768,2314938307376578560,2314938307374481408,9108492302417920,9108492300320768,2314938307376578560,2314938307374481408,9104094255906816,9104094253809664,2314938307376578560,2314938307374481408,9104094255906816,9104094253809664,2314938307376578560,2314938307374481408,9104094255906816,9104094253809664,2314938307376578560,2314938307374481408,9104094255906816,9104094253809664,2314938307376578560,2314938307374481408,9095298162884608,9095298160787456,9111790837301248,9111790835204096,9095298162884608,9095298160787456,9110691325673472,9110691323576320,9095298162884608,9095298160787456,9108492302417920,9108492300320768,9095298162884608,9095298160787456,9108492302417920,9108492300320768,9095298162884608,9095298160787456,9104094255906816,9104094253809664,9095298162884608,9095298160787456,9104094255906816,9104094253809664,9095298162884608,9095298160787456,9104094255906816,9104094253809664,9095298162884608,9095298160787456,9104094255906816,9104094253809664,2315095537000382464,2315095537000382464,9095298162884608,9095298160787456,2315094437488754688,2315094437488754688,9095298162884608,9095298160787456,2315092238465499136,2315092238465499136,9095298162884608,9095298160787456,2315092238465499136,2315092238465499136,9095298162884608,9095298160787456,2315087840418988032,2315087840418988032,9095298162884608,9095298160787456,2315087840418988032,2315087840418988032,9095298162884608,9095298160787456,2315087840418988032,2315087840418988032,9095298162884608,9095298160787456,2315087840418988032,2315087840418988032,9095298162884608,9095298160787456,2315079044325965824,2315079044325965824,2315095537000382464,2315095537000382464,2315079044325965824,2315079044325965824,2315094437488754688,2315094437488754688,2315079044325965824,2315079044325965824,2315092238465499136,2315092238465499136,2315079044325965824,2315079044325965824,2315092238465499136,2315092238465499136,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,2315079044325965824,2315079044325965824,2315087840418988032,2315087840418988032,9252527786688512,9252527786688512,2315079044325965824,2315079044325965824,9251428275060736,9251428275060736,2315079044325965824,2315079044325965824,9249229251805184,9249229251805184,2315079044325965824,2315079044325965824,9249229251805184,9249229251805184,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9244831205294080,9244831205294080,2315079044325965824,2315079044325965824,9236035112271872,9236035112271872,9252527786688512,9252527786688512,9236035112271872,9236035112271872,9251428275060736,9251428275060736,9236035112271872,9236035112271872,9249229251805184,9249229251805184,9236035112271872,9236035112271872,9249229251805184,9249229251805184,9236035112271872,9236035112271872,9244831205294080,9244831205294080,9236035112271872,9236035112271872,9244831205294080,9244831205294080,9236035112271872,9236035112271872,9244831205294080,9244831205294080,9236035112271872,9236035112271872,9244831205294080,9244831205294080,2314954799512027136,2314954799512027136,9236035112271872,9236035112271872,2314953700000399360,2314953700000399360,9236035112271872,9236035112271872,2314951500977143808,2314951500977143808,9236035112271872,9236035112271872,2314951500977143808,2314951500977143808,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314947102930632704,2314947102930632704,9236035112271872,9236035112271872,2314938306837610496,2314938306837610496,2314954799512027136,2314954799512027136,2314938306837610496,2314938306837610496,2314953700000399360,2314953700000399360,2314938306837610496,2314938306837610496,2314951500977143808,2314951500977143808,2314938306837610496,2314938306837610496,2314951500977143808,2314951500977143808,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,2314938306837610496,2314938306837610496,2314947102930632704,2314947102930632704,9111790298333184,9111790298333184,2314938306837610496,2314938306837610496,9110690786705408,9110690786705408,2314938306837610496,2314938306837610496,9108491763449856,9108491763449856,2314938306837610496,2314938306837610496,9108491763449856,9108491763449856,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9104093716938752,9104093716938752,2314938306837610496,2314938306837610496,9095297623916544,9095297623916544,9111790298333184,9111790298333184,9095297623916544,9095297623916544,9110690786705408,9110690786705408,9095297623916544,9095297623916544,9108491763449856,9108491763449856,9095297623916544,9095297623916544,9108491763449856,9108491763449856,9095297623916544,9095297623916544,9104093716938752,9104093716938752,9095297623916544,9095297623916544,9104093716938752,9104093716938752,9095297623916544,9095297623916544,9104093716938752,9104093716938752,9095297623916544,9095297623916544,9104093716938752,9104093716938752,0],[4629910699613634624,18190596325785600,4629910699609423872,18190596321574912,4629876613675220992,18208187433877504,4629876613675220992,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629894205861265408,18216983526899712,18224681186246720,4629910699613634560,18224681182035968,4629910699609423872,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629909600102006848,18224681186246656,4629909600097796096,18224681182035968,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18223581674618944,4629909600102006784,18223581670408192,4629909600097796096,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629907401078751296,18223581674618880,4629907401074540544,18223581670408192,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18221382651363392,4629907401078751232,18221382647152640,4629907401074540544,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629907401078751296,18221382651363328,4629907401074540544,18221382647152640,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18221382651363392,4629907401078751232,18221382647152640,4629907401074540544,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629903003032240192,18221382651363328,4629903003028029440,18221382647152640,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18216984604852288,4629903003032240128,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629903003032240192,18216984604852224,4629903003028029440,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18216984604852288,4629903003032240128,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629903003032240192,18216984604852224,4629903003028029440,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18216984604852288,4629903003032240128,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629903003032240192,18216984604852224,4629903003028029440,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,18216984604852288,4629903003032240128,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,4629894206939217984,18216984604852224,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629910699613618176,18190596325769216,4629910699609423872,18190596321574912,4629876613675220992,18208187433877504,4629876613675220992,18208187433877504,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18224681186230272,4629910699613618176,18224681182035968,4629910699609423872,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629909600101990400,18224681186230272,4629909600097796096,18224681182035968,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18223581674602496,4629909600101990400,18223581670408192,4629909600097796096,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629907401078734848,18223581674602496,4629907401074540544,18223581670408192,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18221382651346944,4629907401078734848,18221382647152640,4629907401074540544,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629907401078734848,18221382651346944,4629907401074540544,18221382647152640,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18221382651346944,4629907401078734848,18221382647152640,4629907401074540544,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629903003032223744,18221382651346944,4629903003028029440,18221382647152640,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18216984604835840,4629903003032223744,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629903003032223744,18216984604835840,4629903003028029440,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18216984604835840,4629903003032223744,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629903003032223744,18216984604835840,4629903003028029440,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18216984604835840,4629903003032223744,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629894206939217984,18208188511830016,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,4629903003032223744,18216984604835840,4629903003028029440,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18208188511830080,4629894206939217920,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,18216984604835840,4629903003032223744,18216984600641536,4629903003028029440,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18208188511830016,4629876614748962816,18208188507619328,4629910698535682048,18190595247833088,4629910698535682048,18190595247833088,4629894206939201536,18216984604835840,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18224680108294144,4629910698535682048,18224680108294144,4629910698535682048,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629909599024054272,18224680108294144,4629909599024054272,18224680108294144,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18223580596666368,4629909599024054272,18223580596666368,4629909599024054272,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629907400000798720,18223580596666368,4629907400000798720,18223580596666368,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18221381573410816,4629907400000798720,18221381573410816,4629907400000798720,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629907400000798720,18221381573410816,4629907400000798720,18221381573410816,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18221381573410816,4629907400000798720,18221381573410816,4629907400000798720,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629903001954287616,18221381573410816,4629903001954287616,18221381573410816,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629903001954287616,18216983526899712,4629903001954287616,18216983526899712,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629903001954287616,18216983526899712,4629903001954287616,18216983526899712,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629903001954287616,18216983526899712,4629903001954287616,18216983526899712,4629894206939201536,18208188511813632,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629876613675220992,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,18208188511813632,4629894206939201536,18208188507619328,4629894206935007232,18190595247833088,4629876613675220992,18190595247833088,4629876613675220992,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629894205861265408,18216983526899712,4629876614753157120,18208188511813632,4629876614748962816,18208188507619328,4629910698535682048,18190595247833088,4629910698535682048,18190595247833088,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18224680108294144,4629910698535682048,18224680108294144,4629910698535682048,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629909599024054272,18224680108294144,4629909599024054272,18224680108294144,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18223580596666368,4629909599024054272,18223580596666368,4629909599024054272,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629907400000798720,18223580596666368,4629907400000798720,18223580596666368,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18221381573410816,4629907400000798720,18221381573410816,4629907400000798720,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629907400000798720,18221381573410816,4629907400000798720,18221381573410816,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18221381573410816,4629907400000798720,18221381573410816,4629907400000798720,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629903001954287616,18221381573410816,4629903001954287616,18221381573410816,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629903001954287616,18216983526899712,4629903001954287616,18216983526899712,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629903001954287616,18216983526899712,4629903001954287616,18216983526899712,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,4629876614753173568,18190596325785600,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629894205861265408,18208187433877504,4629876614753157120,18190596325769216,4629876614748962816,18190596321574912,4629903001954287616,18216983526899712,4629903001954287616,18216983526899712,18190596325785664,4629876614753173504,18190596321574912,4629876614748962816,18208187433877504,4629894205861265408,18208187433877504,4629894205861265408,18190596325769216,4629876614753157120,18190596321574912,4629876614748962816,18216983526899712,4629903001954287616,18216983526899712,4629903001954287616,0],[9259541023762186368,36134902038528000,9259471754521214976,9259506936745820160,9259541023762186240,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36152494232961024,9259506936745820160,36165688364105728,9259524528931864576,36152494232961024,9259471754529636480,36165688364105728,9259471754521214976,9259533325024886784,9259471754529636352,9259471752373731328,9259471754521214976,9259533325024886784,36099715518955520,9259471752373731328,36134899891044352,9259471754529603584,36099715518955520,9259506938893303808,36134899891044352,9259471754529603584,36168986907410560,9259506938893303808,36099717666439168,36134899891044352,36168986907410432,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259524531087736832,36134899891044352,9259537725218881536,36152492077088768,9259524531087736832,36099717674860672,9259537725218881536,36099717666439168,36161288170110976,36099717674860544,36099715518955520,36099717666439168,36161288170110976,9259471752373731328,36099715518955520,9259506936745820160,36099717674827776,9259471752373731328,36134902038528000,9259506936745820160,36099717674827776,9259539924250558592,36134902038528000,9259471754521214976,9259506936745820160,9259539924250558464,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36152494232961024,9259506936745820160,36165688364105728,9259524528931864576,36152494232961024,9259471754529636480,36165688364105728,9259471754521214976,9259533325024886784,9259471754529636352,9259471752373731328,9259471754521214976,9259533325024886784,36099715518955520,9259471752373731328,36134899891044352,9259471754529603584,36099715518955520,9259506938893303808,36134899891044352,9259471754529603584,36167887395782784,9259506938893303808,36099717666439168,36134899891044352,36167887395782656,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259524531087736832,36134899891044352,9259533327172370432,36152492077088768,9259524531087736832,36099717674860672,9259533327172370432,36099717666439168,36161288170110976,36099717674860544,36099715518955520,36099717666439168,36161288170110976,9259471752373731328,36099715518955520,9259506936745820160,36099717674827776,9259471752373731328,36134902038528000,9259506936745820160,36099717674827776,9259537725227303040,36134902038528000,9259471754521214976,9259506936745820160,9259537725227302912,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36152494232961024,9259506936745820160,36161290317594624,9259524528931864576,36152494232961024,9259471754529636480,36161290317594624,9259471754521214976,9259533325024886784,9259471754529636352,9259471752373731328,9259471754521214976,9259533325024886784,36099715518955520,9259471752373731328,36134899891044352,9259471754529603584,36099715518955520,9259506938893303808,36134899891044352,9259471754529603584,36165688372527232,9259506938893303808,36099717666439168,36134899891044352,36165688372527104,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259524531087736832,36134899891044352,9259533327172370432,36152492077088768,9259524531087736832,36099717674860672,9259533327172370432,36099717666439168,36161288170110976,36099717674860544,36099715518955520,36099717666439168,36161288170110976,9259471752373731328,36099715518955520,9259471752373731328,36099717674827776,9259471752373731328,36134902038528000,9259471752373731328,36099717674827776,9259537725227303040,36134902038528000,9259471754521214976,9259506936745820160,9259537725227302912,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36152494232961024,9259506936745820160,36161290317594624,9259524528931864576,36152494232961024,9259471754529636480,36161290317594624,9259471754521214976,9259524528931864576,9259471754529636352,9259541021606281216,9259471754521214976,9259524528931864576,36099715518955520,9259541021606281216,36099715518955520,9259471754529603584,36099715518955520,9259506938893303808,36099715518955520,9259471754529603584,36165688372527232,9259506938893303808,36099717666439168,36134899891044352,36165688372527104,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259524531087736832,36134899891044352,9259533327172370432,36152492077088768,9259524531087736832,36099717674860672,9259533327172370432,36099717666439168,36152492077088768,36099717674860544,36168984751505408,36099717666439168,36152492077088768,9259471752373731328,36168984751505408,9259471752373731328,36099717674827776,9259471752373731328,36134902038528000,9259471752373731328,36099717674827776,9259533327180791936,36134902038528000,9259471754521214976,9259506936745820160,9259533327180791808,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36152494232961024,9259506936745820160,36161290317594624,9259524528931864576,36152494232961024,9259471754529636480,36161290317594624,9259471754521214976,9259524528931864576,9259471754529636352,9259539922094653440,9259471754521214976,9259524528931864576,36099715518955520,9259539922094653440,36099715518955520,9259471754529603584,36099715518955520,9259506938893303808,36099715518955520,9259471754529603584,36161290326016128,9259506938893303808,36099717666439168,36134899891044352,36161290326016000,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259524531087736832,36134899891044352,9259533327172370432,36152492077088768,9259524531087736832,36099717674860672,9259533327172370432,36099717666439168,36152492077088768,36099717674860544,36167885239877632,36099717666439168,36152492077088768,9259471752373731328,36167885239877632,9259471752373731328,36099717674827776,9259471752373731328,36134902038528000,9259471752373731328,36099717674827776,9259533327180791936,36134902038528000,9259471754521214976,9259506936745820160,9259533327180791808,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36152494232961024,9259506936745820160,36161290317594624,9259524528931864576,36152494232961024,9259471754529636480,36161290317594624,9259471754521214976,9259524528931864576,9259471754529636352,9259537723071397888,9259471754521214976,9259524528931864576,36099715518955520,9259537723071397888,36099715518955520,9259471754529603584,36099715518955520,9259506938893303808,36099715518955520,9259471754529603584,36161290326016128,9259506938893303808,36099717666439168,36134899891044352,36161290326016000,36134899891044352,36099717666439168,36134899891044352,9259541021606281216,36134899891044352,9259471752373731328,36099717674827776,9259541021606281216,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259506938901692416,36134899891044352,9259524531079348224,36152492077088768,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36152492077088768,36099717674860544,36165686216622080,36099717666439168,36152492077088768,9259471752373731328,36165686216622080,9259471752373731328,36099717674827776,9259471752373731328,36134902038528000,9259471752373731328,36099717674827776,9259533327180791936,36134902038528000,9259471754521214976,9259471752373731328,9259533327180791808,9259506936745820160,9259471754521214976,9259471752373731328,36168984751505408,9259506936745820160,36099715518955520,9259471754529603584,36168984751505408,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36134902046916608,9259506936745820160,36152494224572416,9259524528931864576,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259524528931864576,9259471754529636352,9259537723071397888,9259471754521214976,9259524528931864576,36099715518955520,9259537723071397888,36099715518955520,9259471754529603584,36099715518955520,9259506938893303808,36099715518955520,9259471754529603584,36161290326016128,9259506938893303808,36099717666439168,36099715518955520,36161290326016000,36134899891044352,36099717666439168,36099715518955520,9259539922094653440,36134899891044352,9259471752373731328,36099717674827776,9259539922094653440,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259506938901692416,36134899891044352,9259524531079348224,36152492077088768,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36152492077088768,36099717674860544,36165686216622080,36099717666439168,36152492077088768,9259471752373731328,36165686216622080,9259471752373731328,36099717674827776,9259471752373731328,36134902038528000,9259471752373731328,36099717674827776,9259533327180791936,36134902038528000,9259471754521214976,9259471752373731328,9259533327180791808,9259506936745820160,9259471754521214976,9259471752373731328,36167885239877632,9259506936745820160,36099715518955520,9259471754529603584,36167885239877632,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259524528931864576,36134902046916608,9259506936745820160,36152494224572416,9259524528931864576,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259524528931864576,9259471754529636352,9259533325024886784,9259471754521214976,9259524528931864576,36099715518955520,9259533325024886784,36099715518955520,9259471754529603584,36099715518955520,9259506938893303808,36099715518955520,9259471754529603584,36161290326016128,9259506938893303808,36099717666439168,36099715518955520,36161290326016000,36134899891044352,36099717666439168,36099715518955520,9259537723071397888,36134899891044352,9259471752373731328,36099717674827776,9259537723071397888,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36152492077088768,9259506938901692416,36134899891044352,9259524531079348224,36152492077088768,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36152492077088768,36099717674860544,36161288170110976,36099717666439168,36152492077088768,9259471752373731328,36161288170110976,9259471752373731328,36099717674827776,9259471752373731328,36134902038528000,9259471752373731328,36099717674827776,9259524531087769728,36134902038528000,9259541023753764864,9259471752373731328,9259524531087769600,9259506936745820160,9259541023753764864,9259471752373731328,36165686216622080,9259506936745820160,36099715518955520,9259471754529603584,36165686216622080,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36152494224572416,9259506936745820160,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259524528931864576,9259471754529636352,9259533325024886784,9259471754521214976,9259524528931864576,36099715518955520,9259533325024886784,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36168986898989056,36099715518955520,36152494232993792,36134899891044352,36168986898989056,36099715518955520,9259537723071397888,36134899891044352,9259471752373731328,36099717674827776,9259537723071397888,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259524531079348224,36134899891044352,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36152492077088768,36099717674860544,36161288170110976,36099717666439168,36152492077088768,9259471752373731328,36161288170110976,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259539924242137088,9259471752373731328,9259524531087769600,9259506936745820160,9259539924242137088,9259471752373731328,36165686216622080,9259506936745820160,36099715518955520,9259471754529603584,36165686216622080,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36152494224572416,9259506936745820160,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259524528931864576,9259471754529636352,9259533325024886784,9259471754521214976,9259524528931864576,36099715518955520,9259533325024886784,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36167887387361280,36099715518955520,36152494232993792,36134899891044352,36167887387361280,36099715518955520,9259533325024886784,36134899891044352,9259471752373731328,36099717674827776,9259533325024886784,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259506938893303808,9259471752373731328,9259506938901725184,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259524531079348224,36134899891044352,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36152492077088768,36099717674860544,36161288170110976,36099717666439168,36152492077088768,9259471752373731328,36161288170110976,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259537725218881536,9259471752373731328,9259524531087769600,9259506936745820160,9259537725218881536,9259471752373731328,36161288170110976,9259506936745820160,36099715518955520,9259471754529603584,36161288170110976,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36134902038528000,36099715518955520,36134902046949376,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36152494224572416,9259506936745820160,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259524528931864576,9259471754529636352,9259533325024886784,9259471754521214976,9259524528931864576,36099715518955520,9259533325024886784,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36165688364105728,36099715518955520,36152494232993792,36134899891044352,36165688364105728,36099715518955520,9259533325024886784,36134899891044352,9259471752373731328,36099717674827776,9259533325024886784,36099717666439168,9259471752373731328,36099717674827776,9259471754529636480,36099717666439168,9259506938893303808,9259471752373731328,9259471754529636352,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259524531079348224,36134899891044352,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36152492077088768,36099717674860544,36161288170110976,36099717666439168,36152492077088768,9259471752373731328,36161288170110976,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259537725218881536,9259471752373731328,9259524531087769600,9259506936745820160,9259537725218881536,9259471752373731328,36161288170110976,9259506936745820160,36099715518955520,9259541023762153472,36161288170110976,9259471754521214976,36099715518955520,9259541023762153472,36099717674860672,9259471754521214976,36134902038528000,36099715518955520,36099717674860544,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36152494224572416,9259506936745820160,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36165688364105728,36099715518955520,36152494232993792,36134899891044352,36165688364105728,36099715518955520,9259533325024886784,36134899891044352,9259471752373731328,36168986907377664,9259533325024886784,36099717666439168,9259471752373731328,36168986907377664,9259471754529636480,36099717666439168,9259506938893303808,9259471752373731328,9259471754529636352,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259524531079348224,36134899891044352,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259533327172370432,9259471752373731328,9259524531087769600,9259506936745820160,9259533327172370432,9259471752373731328,36161288170110976,9259506936745820160,36099715518955520,9259539924250525696,36161288170110976,9259471754521214976,36099715518955520,9259539924250525696,36099717674860672,9259471754521214976,36134902038528000,36099715518955520,36099717674860544,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36152494224572416,9259506936745820160,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36161290317594624,36099715518955520,36152494232993792,36134899891044352,36161290317594624,36099715518955520,9259533325024886784,36134899891044352,9259471752373731328,36167887395749888,9259533325024886784,36099717666439168,9259471752373731328,36167887395749888,9259471754529636480,36099717666439168,9259506938893303808,9259471752373731328,9259471754529636352,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259524531079348224,36134899891044352,9259506938901692416,36099717674860672,9259524531079348224,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259533327172370432,9259471752373731328,9259524531087769600,9259506936745820160,9259533327172370432,9259471752373731328,36161288170110976,9259506936745820160,36099715518955520,9259537725227270144,36161288170110976,9259471754521214976,36099715518955520,9259537725227270144,36099717674860672,9259471754521214976,36134902038528000,36099715518955520,36099717674860544,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36152494224572416,9259506936745820160,36134902046916608,9259471754529636480,36152494224572416,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36161290317594624,36099715518955520,36152494232993792,36134899891044352,36161290317594624,36099715518955520,9259524528931864576,36134899891044352,9259541021606281216,36165688372494336,9259524528931864576,36099717666439168,9259541021606281216,36165688372494336,9259471754529636480,36099717666439168,9259506938893303808,9259471752373731328,9259471754529636352,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259533327172370432,9259471752373731328,9259524531087769600,9259471752373731328,9259533327172370432,9259471752373731328,36152492077088768,9259471752373731328,36168984751505408,9259537725227270144,36152492077088768,9259471754521214976,36168984751505408,9259537725227270144,36099717674860672,9259471754521214976,36134902038528000,36099715518955520,36099717674860544,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36161290317594624,36099715518955520,36152494232993792,36099715518955520,36161290317594624,36099715518955520,9259524528931864576,36099715518955520,9259539922094653440,36165688372494336,9259524528931864576,36099717666439168,9259539922094653440,36165688372494336,9259471754529636480,36099717666439168,9259506938893303808,9259471752373731328,9259471754529636352,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259524531087769728,36099717666439168,9259533327172370432,9259471752373731328,9259524531087769600,9259471752373731328,9259533327172370432,9259471752373731328,36152492077088768,9259471752373731328,36167885239877632,9259533327180759040,36152492077088768,9259471754521214976,36167885239877632,9259533327180759040,36099717674860672,9259471754521214976,36134902038528000,36099715518955520,36099717674860544,36099715518955520,36134902038528000,36099715518955520,9259506936745820160,36099715518955520,9259506936745820160,36134902046916608,9259506936745820160,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36152494232993920,9259471754521214976,36161290317594624,36099715518955520,36152494232993792,36099715518955520,36161290317594624,36099715518955520,9259524528931864576,36099715518955520,9259537723071397888,36161290325983232,9259524528931864576,36099717666439168,9259537723071397888,36161290325983232,9259471754529636480,36099717666439168,9259506938893303808,9259471752373731328,9259471754529636352,9259471752373731328,9259506938893303808,9259471752373731328,36134899891044352,9259471752373731328,36134899891044352,9259506938901692416,36134899891044352,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36152492077088768,9259471752373731328,36165686216622080,9259533327180759040,36152492077088768,9259471754521214976,36165686216622080,9259533327180759040,36099717674860672,9259471754521214976,36134902038528000,36099715518955520,36099717674860544,36099715518955520,36134902038528000,36099715518955520,9259471752373731328,36099715518955520,9259506936745820160,36134902046916608,9259471752373731328,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259524528931864576,36099715518955520,9259537723071397888,36161290325983232,9259524528931864576,36099717666439168,9259537723071397888,36161290325983232,9259471754529636480,36099717666439168,9259506938893303808,9259541021606281216,9259471754529636352,9259471752373731328,9259506938893303808,9259541021606281216,36099715518955520,9259471752373731328,36134899891044352,9259506938901692416,36099715518955520,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36152492077088768,9259471752373731328,36165686216622080,9259533327180759040,36152492077088768,9259471754521214976,36165686216622080,9259533327180759040,36099717674860672,9259471754521214976,36134902038528000,36168984751505408,36099717674860544,36099715518955520,36134902038528000,36168984751505408,9259471752373731328,36099715518955520,9259506936745820160,36134902046916608,9259471752373731328,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259524528931864576,36099715518955520,9259533325024886784,36161290325983232,9259524528931864576,36099717666439168,9259533325024886784,36161290325983232,9259471754529636480,36099717666439168,9259506938893303808,9259539922094653440,9259471754529636352,9259471752373731328,9259506938893303808,9259539922094653440,36099715518955520,9259471752373731328,36134899891044352,9259506938901692416,36099715518955520,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36152492077088768,9259471752373731328,36161288170110976,9259533327180759040,36152492077088768,9259471754521214976,36161288170110976,9259533327180759040,36099717674860672,9259471754521214976,36134902038528000,36167885239877632,36099717674860544,36099715518955520,36134902038528000,36167885239877632,9259471752373731328,36099715518955520,9259506936745820160,36134902046916608,9259471752373731328,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259524528931864576,9259471754521214976,9259506936745820160,36099715518955520,9259524528931864576,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259524528931864576,36099715518955520,9259533325024886784,36161290325983232,9259524528931864576,36099717666439168,9259533325024886784,36161290325983232,9259471754529636480,36099717666439168,9259471754521214976,9259537723071397888,9259471754529636352,9259471752373731328,9259471754521214976,9259537723071397888,36099715518955520,9259471752373731328,36134899891044352,9259506938901692416,36099715518955520,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36152492077088768,36099717666439168,36134899891044352,9259471752373731328,36152492077088768,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36152492077088768,9259471752373731328,36161288170110976,9259524531087736832,36152492077088768,9259541023753764864,36161288170110976,9259524531087736832,36099717674860672,9259541023753764864,36099717666439168,36165686216622080,36099717674860544,36099715518955520,36099717666439168,36165686216622080,9259471752373731328,36099715518955520,9259506936745820160,36134902046916608,9259471752373731328,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259524528931864576,36099715518955520,9259533325024886784,36152494232961024,9259524528931864576,36168986898989056,9259533325024886784,36152494232961024,9259471754529636480,36168986898989056,9259471754521214976,9259537723071397888,9259471754529636352,9259471752373731328,9259471754521214976,9259537723071397888,36099715518955520,9259471752373731328,36134899891044352,9259506938901692416,36099715518955520,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36152492077088768,9259471752373731328,36161288170110976,9259524531087736832,36152492077088768,9259539924242137088,36161288170110976,9259524531087736832,36099717674860672,9259539924242137088,36099717666439168,36165686216622080,36099717674860544,36099715518955520,36099717666439168,36165686216622080,9259471752373731328,36099715518955520,9259506936745820160,36134902046916608,9259471752373731328,36134902038528000,9259506936745820160,36134902046916608,9259471754529636480,36134902038528000,9259471754521214976,9259506936745820160,9259471754529636352,9259506936745820160,9259471754521214976,9259506936745820160,36099715518955520,9259506936745820160,36099715518955520,9259471754529603584,36099715518955520,9259471754521214976,36099715518955520,9259471754529603584,36134902046949504,9259471754521214976,36152494224572416,36099715518955520,36134902046949376,36099715518955520,36152494224572416,36099715518955520,9259524528931864576,36099715518955520,9259533325024886784,36152494232961024,9259524528931864576,36167887387361280,9259533325024886784,36152494232961024,9259471754529636480,36167887387361280,9259471754521214976,9259533325024886784,9259471754529636352,9259471752373731328,9259471754521214976,9259533325024886784,36099715518955520,9259471752373731328,36134899891044352,9259506938901692416,36099715518955520,9259506938893303808,36134899891044352,9259506938901692416,36099717674860672,9259506938893303808,36099717666439168,36134899891044352,36099717674860544,36134899891044352,36099717666439168,36134899891044352,9259471752373731328,36134899891044352,9259471752373731328,36099717674827776,9259471752373731328,36099717666439168,9259471752373731328,36099717674827776,9259506938901725312,36099717666439168,9259524531079348224,9259471752373731328,9259506938901725184,9259471752373731328,9259524531079348224,9259471752373731328,36152492077088768,9259471752373731328,36161288170110976,9259524531087736832,36152492077088768,9259537725218881536,36161288170110976,9259524531087736832,36099717674860672,9259537725218881536,36099717666439168,36161288170110976,36099717674860544,36099715518955520,36099717666439168,36161288170110976,9259471752373731328,36099715518955520,9259506936745820160,36134902046916608,9259471752373731328,36134902038528000,9259506936745820160,36134902046916608,0],[143553341945872641,89510146417426432,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,143553341945872640,89510146417426432,80502947162619904,80502947162619904,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947162619904,80502947162619904,107524544910065664,89510146400583680,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,107524544910065664,89510146400583680,80502947145842688,80502947145842688,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,143553337634062336,89510142105616384,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,143553337634062336,89510142105616384,80502942850875392,80502942850875392,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,80502942850875392,80502942850875392,107524540615098368,89510142105616384,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,107524540615098368,89510142105616384,80502942850875392,80502942850875392,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,80502942850875392,80502942850875392,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,80502947162685697,80502947162685440,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,80502947162685696,80502947162685440,143553341945806848,89510146417360896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,143553341945806848,89510146417360896,80502947145842688,80502947145842688,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,107524544910065664,89510146400583680,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,107524544910065664,89510146400583680,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,80502942850875392,80502942850875392,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,80502942850875392,80502942850875392,143553337634062336,89510142105616384,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,143553337634062336,89510142105616384,80502942850875392,80502942850875392,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,80502942850875392,80502942850875392,107524540615098368,89510142105616384,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,107524540615098368,89510142105616384,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,89510146417426689,143553341945872384,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,89510146417426688,143553341945872384,80502947162619904,80502947162619904,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947162619904,80502947162619904,89510146400583680,107524544910065664,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,89510146400583680,107524544910065664,80502947145842688,80502947145842688,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,89510142105616384,143553337634062336,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,89510142105616384,143553337634062336,80502942850875392,80502942850875392,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,80502942850875392,80502942850875392,89510142105616384,107524540615098368,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,89510142105616384,107524540615098368,80502942850875392,80502942850875392,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,80502942850875392,80502942850875392,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,80502947162685697,80502947162685440,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,80502947162685696,80502947162685440,89510146417360896,143553341945806848,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,89510146417360896,143553341945806848,80502947145842688,80502947145842688,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,89510146400583680,107524544910065664,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,89510146400583680,107524544910065664,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,80502942850875392,80502942850875392,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,80502942850875392,80502942850875392,89510142105616384,143553337634062336,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,89510142105616384,143553337634062336,80502942850875392,80502942850875392,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,80502942850875392,80502942850875392,89510142105616384,107524540615098368,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,89510142105616384,107524540615098368,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,107524544926908673,89510146417426432,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,107524544926908672,89510146417426432,80502947162619904,80502947162619904,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947162619904,80502947162619904,143553341929029632,89510146400583680,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,143553341929029632,89510146400583680,80502947145842688,80502947145842688,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,107524540615098368,89510142105616384,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,107524540615098368,89510142105616384,80502942850875392,80502942850875392,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,80502942850875392,80502942850875392,143553337634062336,89510142105616384,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,143553337634062336,89510142105616384,80502942850875392,80502942850875392,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,80502942850875392,80502942850875392,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,80502947162685697,80502947162685440,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,80502947162685696,80502947162685440,107524544926842880,89510146417360896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,107524544926842880,89510146417360896,80502947145842688,80502947145842688,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,143553341929029632,89510146400583680,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,143553341929029632,89510146400583680,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,80502942850875392,80502942850875392,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,80502942850875392,80502942850875392,107524540615098368,89510142105616384,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,107524540615098368,89510142105616384,80502942850875392,80502942850875392,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,80502942850875392,80502942850875392,143553337634062336,89510142105616384,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,143553337634062336,89510142105616384,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,89510146417426689,107524544926908416,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,89510146417426688,107524544926908416,80502947162619904,80502947162619904,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947162619904,80502947162619904,89510146400583680,143553341929029632,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,89510146400583680,143553341929029632,80502947145842688,80502947145842688,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,89510142105616384,107524540615098368,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,89510142105616384,107524540615098368,80502942850875392,80502942850875392,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,80502942850875392,80502942850875392,89510142105616384,143553337634062336,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,89510142105616384,143553337634062336,80502942850875392,80502942850875392,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,80502942850875392,80502942850875392,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,80502947162685697,80502947162685440,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,75999343223504896,75999343223504896,80502947162685696,80502947162685440,89510146417360896,107524544926842880,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,75999343223504896,75999343223504896,75999343223504896,75999343223504896,89510146417360896,107524544926842880,80502947145842688,80502947145842688,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,75999343223504896,75999343223504896,75999343223504896,75999343223504896,80502947145842688,80502947145842688,89510146400583680,143553341929029632,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,89510146400583680,143553341929029632,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,75999343223504896,75999343223504896,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,75999347535315201,75999347535314944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,80502942850875392,80502942850875392,75999347535315200,75999347535314944,75999347535249408,75999347535249408,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,73747543409819648,73747543409819648,72621647814787329,72621647814787072,80502942850875392,80502942850875392,89510142105616384,107524540615098368,75999347535249408,75999347535249408,75999347518472192,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,89510142105616384,107524540615098368,80502942850875392,80502942850875392,75999347518472192,75999347518472192,75999347518472192,75999347518472192,72621643502977024,72621643502977024,73747547721629953,73747547721629696,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647814721536,72621647814721536,72621647797944320,72621647797944320,80502942850875392,80502942850875392,89510142105616384,143553337634062336,75999347518472192,75999347518472192,73747543409819648,73747543409819648,73747547721629952,73747547721629696,73747547721564160,73747547721564160,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621647797944320,72621647797944320,89510142105616384,143553337634062336,72621647814787329,72621647814787072,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547721564160,73747547721564160,73747547704786944,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,72621647797944320,72621647797944320,72621643502977024,72621643502977024,72621647814787328,72621647814787072,72621647814721536,72621647814721536,73747543409819648,73747543409819648,73747543409819648,73747543409819648,73747547704786944,73747547704786944,73747547704786944,73747547704786944,72621643502977024,72621643502977024,0],[215330564830528002,215330564796841984,152280170047209472,152280170013655040,215330564830528000,215330564796841984,152280170047209472,152280170013655040,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776561796349952,147776561796349952,147776570419970560,147776570386284544,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,215330564830527488,215330564796841984,152280161423720448,152280161423720448,215330564830527488,215330564796841984,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776570419970048,147776570386284544,147776570419838976,147776570386284544,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524761982664704,145524761982664704,145524770606285312,145524770572599296,145524761982664704,145524761982664704,161287360678461440,161287360678461440,152280161423720448,152280161423720448,161287360678461440,161287360678461440,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524770606284800,145524770572599296,145524761982664704,145524761982664704,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776570419838976,147776570386284544,147776570419970560,147776570386284544,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,152280170047341058,152280170013655040,161287360678461440,161287360678461440,152280170047341056,152280170013655040,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776570419970048,147776570386284544,147776561796349952,147776561796349952,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,179301767811432448,179301767777878016,152280170047340544,152280170013655040,179301767811432448,179301767777878016,152280170047340544,152280170013655040,145524770606285314,145524770572599296,145524761982664704,145524761982664704,145524770606285312,145524770572599296,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524770606284800,145524770572599296,145524761982664704,145524761982664704,145524770606284800,145524770572599296,152280170047341058,152280170013655040,179301767811432448,179301767777878016,152280170047341056,152280170013655040,179301767811432448,179301767777878016,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776561796349952,147776561796349952,147776570419970560,147776570386284544,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,152280170047340544,152280170013655040,161287360678461440,161287360678461440,152280170047340544,152280170013655040,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776570419970048,147776570386284544,147776570419838976,147776570386284544,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524761982664704,145524761982664704,145524770606285312,145524770572599296,145524761982664704,145524761982664704,152280161423720448,152280161423720448,161287360678461440,161287360678461440,152280161423720448,152280161423720448,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524770606284800,145524770572599296,145524761982664704,145524761982664704,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776570419838976,147776570386284544,147776570419970560,147776570386284544,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,215330556206907392,215330556206907392,152280161423720448,152280161423720448,215330556206907392,215330556206907392,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776570419970048,147776570386284544,147776561796349952,147776561796349952,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,152280170047209472,152280170013655040,215330556206907392,215330556206907392,152280170047209472,152280170013655040,215330556206907392,215330556206907392,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524770606284800,145524770572599296,145524761982664704,145524761982664704,145524770606284800,145524770572599296,161287369302082050,161287369268396032,152280170047209472,152280170013655040,161287369302082048,161287369268396032,152280170047209472,152280170013655040,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,161287369302081536,161287369268396032,152280161423720448,152280161423720448,161287369302081536,161287369268396032,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776561796349952,147776561796349952,147776570419838976,147776570386284544,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,179301759187943424,179301759187943424,152280161423720448,152280161423720448,179301759187943424,179301759187943424,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524770606284800,145524770572599296,145524761982664704,145524761982664704,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776570419838976,147776570386284544,147776570419970560,147776570386284544,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,152280161423720448,152280161423720448,179301759187943424,179301759187943424,152280161423720448,152280161423720448,179301759187943424,179301759187943424,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776570419970048,147776570386284544,147776561796349952,147776561796349952,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,161287369301950464,161287369268396032,152280161423720448,152280161423720448,161287369301950464,161287369268396032,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524770606284800,145524770572599296,145524761982664704,145524761982664704,145524770606284800,145524770572599296,152280170047341058,152280170013655040,161287369301950464,161287369268396032,152280170047341056,152280170013655040,161287369301950464,161287369268396032,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,215330564830396416,215330564796841984,152280170047340544,152280170013655040,215330564830396416,215330564796841984,152280170047340544,152280170013655040,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776561796349952,147776561796349952,147776570419838976,147776570386284544,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,215330564830396416,215330564796841984,152280161423720448,152280161423720448,215330564830396416,215330564796841984,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776570419838976,147776570386284544,147776570419970560,147776570386284544,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,161287360678461440,161287360678461440,152280161423720448,152280161423720448,161287360678461440,161287360678461440,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776570419970048,147776570386284544,147776570419838976,147776570386284544,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,152280170047209472,152280170013655040,161287360678461440,161287360678461440,152280170047209472,152280170013655040,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776570419838976,147776570386284544,147776561796349952,147776561796349952,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,179301767811564034,179301767777878016,152280170047209472,152280170013655040,179301767811564032,179301767777878016,152280170047209472,152280170013655040,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,152280170047209472,152280170013655040,179301767811563520,179301767777878016,152280170047209472,152280170013655040,179301767811563520,179301767777878016,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776561796349952,147776561796349952,147776570419838976,147776570386284544,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,152280170047209472,152280170013655040,161287360678461440,161287360678461440,152280170047209472,152280170013655040,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776570419838976,147776570386284544,147776570419970560,147776570386284544,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,152280161423720448,152280161423720448,161287360678461440,161287360678461440,152280161423720448,152280161423720448,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776570419970048,147776570386284544,147776570419838976,147776570386284544,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524770606153728,145524770572599296,145524770606285312,145524770572599296,145524770606153728,145524770572599296,215330556206907392,215330556206907392,152280161423720448,152280161423720448,215330556206907392,215330556206907392,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776570419838976,147776570386284544,147776561796349952,147776561796349952,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,152280170047341058,152280170013655040,215330556206907392,215330556206907392,152280170047341056,152280170013655040,215330556206907392,215330556206907392,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,161287369301950464,161287369268396032,152280170047340544,152280170013655040,161287369301950464,161287369268396032,152280170047340544,152280170013655040,145524770606285314,145524770572599296,145524761982664704,145524761982664704,145524770606285312,145524770572599296,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,161287369301950464,161287369268396032,152280161423720448,152280161423720448,161287369301950464,161287369268396032,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,147776570419970562,147776570386284544,147776561796349952,147776561796349952,147776570419970560,147776570386284544,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,179301759187943424,179301759187943424,152280161423720448,152280161423720448,179301759187943424,179301759187943424,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,147776570419838976,147776570386284544,147776570419970048,147776570386284544,147776570419838976,147776570386284544,147776570419970048,147776570386284544,145524770606285314,145524770572599296,145524761982664704,145524761982664704,145524770606285312,145524770572599296,145524761982664704,145524761982664704,152280161423720448,152280161423720448,179301759187943424,179301759187943424,152280161423720448,152280161423720448,179301759187943424,179301759187943424,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776570419838976,147776570386284544,147776561796349952,147776561796349952,147776570419838976,147776570386284544,145524770606153728,145524770572599296,145524770606284800,145524770572599296,145524770606153728,145524770572599296,145524770606284800,145524770572599296,161287369302082050,161287369268396032,152280161423720448,152280161423720448,161287369302082048,161287369268396032,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524770606153728,145524770572599296,145524761982664704,145524761982664704,145524770606153728,145524770572599296,152280170047209472,152280170013655040,161287369302081536,161287369268396032,152280170047209472,152280170013655040,161287369302081536,161287369268396032,145524770606285314,145524770572599296,145524761982664704,145524761982664704,145524770606285312,145524770572599296,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,145524761982664704,0],[358885010599838724,291049523965329408,295834615816650752,291049523965329408,291049523965329408,291330998942040064,291049523965329408,291330998942040064,358885010599575552,295553140772569088,295834615816388608,304560340027310080,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291331016189281284,295553140772569088,291330998942040064,304560340027310080,358603535623128068,358885010532466688,295553140839940096,295834615749279744,291331016189018112,291049523965329408,291330998942040064,291049523965329408,358603535622864896,358885010532466688,295553140839677952,295834615749279744,295834598569410560,291049523965329408,358885010599838720,291049523965329408,291049541212570628,291331016121909248,291049523965329408,291330998942040064,295834598569410560,358603535555756032,358885010599575552,295553140772569088,291049541212307456,291331016121909248,291049523965329408,291330998942040064,291331016189280256,358603535555756032,291331016189281280,295553140772569088,295553123592699904,295834598569410560,358603535623128064,358885010532466688,291331016189018112,291049541145198592,291331016189018112,291049523965329408,295553123592699904,295834598569410560,358603535622864896,358885010532466688,304841797824151552,291049541145198592,295834598569410560,291049523965329408,291049541212569600,291331016121909248,291049541212570624,291331016121909248,304841797824151552,295553123592699904,295834598569410560,358603535555756032,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291331016189281284,295553123592699904,291331016189280256,358603535555756032,304560322847440896,304841797824151552,295553123592699904,295834598569410560,291331016189018112,291049541145198592,291331016189018112,291049541145198592,304560322847440896,304841797824151552,295553123592699904,295834598569410560,295834615816651780,291049541145198592,304841797824151552,291049541145198592,291049541212570628,291331016121909248,291049541212569600,291331016121909248,295834615816388608,304560322847440896,304841797824151552,295553123592699904,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291330998942040064,304560322847440896,291331016189281280,295553123592699904,295553140839941124,295834615749279744,304560322847440896,304841797824151552,291330998942040064,291049541145198592,291331016189018112,291049541145198592,295553140839677952,295834615749279744,304560322847440896,304841797824151552,322856213580873728,291049541145198592,295834615816651776,291049541145198592,291049523965329408,291330998942040064,291049541212570624,291331016121909248,322856213580611584,295553140772569088,295834615816388608,304560322847440896,291049523965329408,291330998942040064,291049541212307456,291331016121909248,291330998942040064,295553140772569088,291330998942040064,304560322847440896,322574738604163072,322856213513502720,295553140839941120,295834615749279744,291330998942040064,291049523965329408,291330998942040064,291049541145198592,322574738603900928,322856213513502720,295553140839677952,295834615749279744,295834615816651780,291049523965329408,322856213580873728,291049541145198592,291049523965329408,291330998942040064,291049523965329408,291330998942040064,295834615816388608,322574738536792064,322856213580611584,295553140772569088,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291331016189281284,322574738536792064,291330998942040064,295553140772569088,295553140839941124,295834615749279744,322574738604163072,322856213513502720,291331016189018112,291049523965329408,291330998942040064,291049523965329408,295553140839677952,295834615749279744,322574738603900928,322856213513502720,304841797824151552,291049523965329408,295834615816651776,291049523965329408,291049541212570628,291331016121909248,291049523965329408,291330998942040064,304841797824151552,295553140772569088,295834615816388608,322574738536792064,291049541212307456,291331016121909248,291049523965329408,291330998942040064,291331016189280256,295553140772569088,291331016189281280,322574738536792064,304560322847440896,304841797824151552,295553140839941120,295834615749279744,291331016189018112,291049541145198592,291331016189018112,291049523965329408,304560322847440896,304841797824151552,295553140839677952,295834615749279744,295834598569410560,291049541145198592,304841797824151552,291049523965329408,291049541212569600,291331016121909248,291049541212570624,291331016121909248,295834598569410560,304560322847440896,304841797824151552,295553140772569088,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291331016189281284,304560322847440896,291331016189280256,295553140772569088,295553123592699904,295834598569410560,304560322847440896,304841797824151552,291331016189018112,291049541145198592,291331016189018112,291049541145198592,295553123592699904,295834598569410560,304560322847440896,304841797824151552,358884993352597504,291049541145198592,295834598569410560,291049541145198592,291049541212570628,291331016121909248,291049541212569600,291331016121909248,358884993352597504,295553123592699904,295834598569410560,304560322847440896,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291330998942040064,295553123592699904,291331016189281280,304560322847440896,358603518375886848,358884993352597504,295553123592699904,295834598569410560,291330998942040064,291049541145198592,291331016189018112,291049541145198592,358603518375886848,358884993352597504,295553123592699904,295834598569410560,295834615816650752,291049541145198592,358884993352597504,291049541145198592,291049523965329408,291330998942040064,291049541212570624,291331016121909248,295834615816388608,358603518375886848,358884993352597504,295553123592699904,291049523965329408,291330998942040064,291049541212307456,291331016121909248,291330998942040064,358603518375886848,291330998942040064,295553123592699904,295553140839940096,295834615749279744,358603518375886848,358884993352597504,291330998942040064,291049523965329408,291330998942040064,291049541145198592,295553140839677952,295834615749279744,358603518375886848,358884993352597504,304841815071392772,291049523965329408,295834615816650752,291049541145198592,291049523965329408,291330998942040064,291049523965329408,291330998942040064,304841815071129600,295553140772569088,295834615816388608,358603518375886848,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291330998942040064,295553140772569088,291330998942040064,358603518375886848,304560340094682116,304841815004020736,295553140839940096,295834615749279744,291330998942040064,291049523965329408,291330998942040064,291049523965329408,304560340094418944,304841815004020736,295553140839677952,295834615749279744,295834598569410560,291049523965329408,304841815071392768,291049523965329408,291049523965329408,291330998942040064,291049523965329408,291330998942040064,295834598569410560,304560340027310080,304841815071129600,295553140772569088,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291331016189280256,304560340027310080,291330998942040064,295553140772569088,295553123592699904,295834598569410560,304560340094682112,304841815004020736,291331016189018112,291049523965329408,291330998942040064,291049523965329408,295553123592699904,295834598569410560,304560340094418944,304841815004020736,322856196333633536,291049523965329408,295834598569410560,291049523965329408,291049541212569600,291331016121909248,291049523965329408,291330998942040064,322856196333633536,295553123592699904,295834598569410560,304560340027310080,291049541212307456,291331016121909248,291049523965329408,291330998942040064,291331016189281284,295553123592699904,291331016189280256,304560340027310080,322574721356922880,322856196333633536,295553123592699904,295834598569410560,291331016189018112,291049541145198592,291331016189018112,291049523965329408,322574721356922880,322856196333633536,295553123592699904,295834598569410560,295834598569410560,291049541145198592,322856196333633536,291049523965329408,291049541212570628,291331016121909248,291049541212569600,291331016121909248,295834598569410560,322574721356922880,322856196333633536,295553123592699904,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291330998942040064,322574721356922880,291331016189281280,295553123592699904,295553123592699904,295834598569410560,322574721356922880,322856196333633536,291330998942040064,291049541145198592,291331016189018112,291049541145198592,295553123592699904,295834598569410560,322574721356922880,322856196333633536,304841815071391744,291049541145198592,295834598569410560,291049541145198592,291049523965329408,291330998942040064,291049541212570624,291331016121909248,304841815071129600,295553123592699904,295834598569410560,322574721356922880,291049523965329408,291330998942040064,291049541212307456,291331016121909248,291330998942040064,295553123592699904,291330998942040064,322574721356922880,304560340094681088,304841815004020736,295553123592699904,295834598569410560,291330998942040064,291049523965329408,291330998942040064,291049541145198592,304560340094418944,304841815004020736,295553123592699904,295834598569410560,295834615816651780,291049523965329408,304841815071391744,291049541145198592,291049523965329408,291330998942040064,291049523965329408,291330998942040064,295834615816388608,304560340027310080,304841815071129600,295553123592699904,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291330998942040064,304560340027310080,291330998942040064,295553123592699904,295553140839941124,295834615749279744,304560340094681088,304841815004020736,291330998942040064,291049523965329408,291330998942040064,291049523965329408,295553140839677952,295834615749279744,304560340094418944,304841815004020736,358885010599837696,291049523965329408,295834615816651776,291049523965329408,291049523965329408,291330998942040064,291049523965329408,291330998942040064,358885010599575552,295553140772569088,295834615816388608,304560340027310080,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291331016189280256,295553140772569088,291330998942040064,304560340027310080,358603535623127040,358885010532466688,295553140839941120,295834615749279744,291331016189018112,291049523965329408,291330998942040064,291049523965329408,358603535622864896,358885010532466688,295553140839677952,295834615749279744,295834598569410560,291049523965329408,358885010599837696,291049523965329408,291049541212569600,291331016121909248,291049523965329408,291330998942040064,295834598569410560,358603535555756032,358885010599575552,295553140772569088,291049541212307456,291331016121909248,291049523965329408,291330998942040064,291331016189281284,358603535555756032,291331016189280256,295553140772569088,295553123592699904,295834598569410560,358603535623127040,358885010532466688,291331016189018112,291049541145198592,291331016189018112,291049523965329408,295553123592699904,295834598569410560,358603535622864896,358885010532466688,304841797824151552,291049541145198592,295834598569410560,291049523965329408,291049541212570628,291331016121909248,291049541212569600,291331016121909248,304841797824151552,295553123592699904,295834598569410560,358603535555756032,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291331016189280256,295553123592699904,291331016189281280,358603535555756032,304560322847440896,304841797824151552,295553123592699904,295834598569410560,291331016189018112,291049541145198592,291331016189018112,291049541145198592,304560322847440896,304841797824151552,295553123592699904,295834598569410560,295834615816650752,291049541145198592,304841797824151552,291049541145198592,291049541212569600,291331016121909248,291049541212570624,291331016121909248,295834615816388608,304560322847440896,304841797824151552,295553123592699904,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291330998942040064,304560322847440896,291331016189280256,295553123592699904,295553140839940096,295834615749279744,304560322847440896,304841797824151552,291330998942040064,291049541145198592,291331016189018112,291049541145198592,295553140839677952,295834615749279744,304560322847440896,304841797824151552,322856213580874756,291049541145198592,295834615816650752,291049541145198592,291049523965329408,291330998942040064,291049541212569600,291331016121909248,322856213580611584,295553140772569088,295834615816388608,304560322847440896,291049523965329408,291330998942040064,291049541212307456,291331016121909248,291330998942040064,295553140772569088,291330998942040064,304560322847440896,322574738604164100,322856213513502720,295553140839940096,295834615749279744,291330998942040064,291049523965329408,291330998942040064,291049541145198592,322574738603900928,322856213513502720,295553140839677952,295834615749279744,295834615816650752,291049523965329408,322856213580874752,291049541145198592,291049523965329408,291330998942040064,291049523965329408,291330998942040064,295834615816388608,322574738536792064,322856213580611584,295553140772569088,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291331016189280256,322574738536792064,291330998942040064,295553140772569088,295553140839940096,295834615749279744,322574738604164096,322856213513502720,291331016189018112,291049523965329408,291330998942040064,291049523965329408,295553140839677952,295834615749279744,322574738603900928,322856213513502720,304841797824151552,291049523965329408,295834615816650752,291049523965329408,291049541212569600,291331016121909248,291049523965329408,291330998942040064,304841797824151552,295553140772569088,295834615816388608,322574738536792064,291049541212307456,291331016121909248,291049523965329408,291330998942040064,291331016189281284,295553140772569088,291331016189280256,322574738536792064,304560322847440896,304841797824151552,295553140839940096,295834615749279744,291331016189018112,291049541145198592,291331016189018112,291049523965329408,304560322847440896,304841797824151552,295553140839677952,295834615749279744,295834598569410560,291049541145198592,304841797824151552,291049523965329408,291049541212570628,291331016121909248,291049541212569600,291331016121909248,295834598569410560,304560322847440896,304841797824151552,295553140772569088,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291331016189280256,304560322847440896,291331016189281280,295553140772569088,295553123592699904,295834598569410560,304560322847440896,304841797824151552,291331016189018112,291049541145198592,291331016189018112,291049541145198592,295553123592699904,295834598569410560,304560322847440896,304841797824151552,358884993352597504,291049541145198592,295834598569410560,291049541145198592,291049541212569600,291331016121909248,291049541212570624,291331016121909248,358884993352597504,295553123592699904,295834598569410560,304560322847440896,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291330998942040064,295553123592699904,291331016189280256,304560322847440896,358603518375886848,358884993352597504,295553123592699904,295834598569410560,291330998942040064,291049541145198592,291331016189018112,291049541145198592,358603518375886848,358884993352597504,295553123592699904,295834598569410560,295834615816651780,291049541145198592,358884993352597504,291049541145198592,291049523965329408,291330998942040064,291049541212569600,291331016121909248,295834615816388608,358603518375886848,358884993352597504,295553123592699904,291049523965329408,291330998942040064,291049541212307456,291331016121909248,291330998942040064,358603518375886848,291330998942040064,295553123592699904,295553140839941124,295834615749279744,358603518375886848,358884993352597504,291330998942040064,291049523965329408,291330998942040064,291049541145198592,295553140839677952,295834615749279744,358603518375886848,358884993352597504,304841815071391744,291049523965329408,295834615816651776,291049541145198592,291049523965329408,291330998942040064,291049523965329408,291330998942040064,304841815071129600,295553140772569088,295834615816388608,358603518375886848,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291330998942040064,295553140772569088,291330998942040064,358603518375886848,304560340094681088,304841815004020736,295553140839941120,295834615749279744,291330998942040064,291049523965329408,291330998942040064,291049523965329408,304560340094418944,304841815004020736,295553140839677952,295834615749279744,295834598569410560,291049523965329408,304841815071391744,291049523965329408,291049523965329408,291330998942040064,291049523965329408,291330998942040064,295834598569410560,304560340027310080,304841815071129600,295553140772569088,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291331016189281284,304560340027310080,291330998942040064,295553140772569088,295553123592699904,295834598569410560,304560340094681088,304841815004020736,291331016189018112,291049523965329408,291330998942040064,291049523965329408,295553123592699904,295834598569410560,304560340094418944,304841815004020736,322856196333633536,291049523965329408,295834598569410560,291049523965329408,291049541212570628,291331016121909248,291049523965329408,291330998942040064,322856196333633536,295553123592699904,295834598569410560,304560340027310080,291049541212307456,291331016121909248,291049523965329408,291330998942040064,291331016189280256,295553123592699904,291331016189281280,304560340027310080,322574721356922880,322856196333633536,295553123592699904,295834598569410560,291331016189018112,291049541145198592,291331016189018112,291049523965329408,322574721356922880,322856196333633536,295553123592699904,295834598569410560,295834598569410560,291049541145198592,322856196333633536,291049523965329408,291049541212569600,291331016121909248,291049541212570624,291331016121909248,295834598569410560,322574721356922880,322856196333633536,295553123592699904,291049541212307456,291331016121909248,291049541212307456,291331016121909248,291330998942040064,322574721356922880,291331016189280256,295553123592699904,295553123592699904,295834598569410560,322574721356922880,322856196333633536,291330998942040064,291049541145198592,291331016189018112,291049541145198592,295553123592699904,295834598569410560,322574721356922880,322856196333633536,304841815071392772,291049541145198592,295834598569410560,291049541145198592,291049523965329408,291330998942040064,291049541212569600,291331016121909248,304841815071129600,295553123592699904,295834598569410560,322574721356922880,291049523965329408,291330998942040064,291049541212307456,291331016121909248,291330998942040064,295553123592699904,291330998942040064,322574721356922880,304560340094682116,304841815004020736,295553123592699904,295834598569410560,291330998942040064,291049523965329408,291330998942040064,291049541145198592,304560340094418944,304841815004020736,295553123592699904,295834598569410560,295834615816650752,291049523965329408,304841815071392768,291049541145198592,291049523965329408,291330998942040064,291049523965329408,291330998942040064,295834615816388608,304560340027310080,304841815071129600,295553123592699904,291049523965329408,291330998942040064,291049523965329408,291330998942040064,291330998942040064,304560340027310080,291330998942040064,295553123592699904,295553140839940096,295834615749279744,304560340094682112,304841815004020736,291330998942040064,291049523965329408,291330998942040064,291049523965329408,295553140839677952,295834615749279744,304560340094418944,304841815004020736,0],[645993902138460168,645993902137933824,609965105118969856,609965105119494144,645993902003716096,645993902003716096,609965104984752128,609965104984752128,645712427161749512,645712427161223168,609683630142259200,609683630142783488,645712427027005440,645712427027005440,609683630008041472,609683630008041472,645149477208328200,645149477207801856,609120680188837888,609120680189362176,645149477073584128,645149477073584128,609120680054620160,609120680054620160,645149477208328200,645149477207801856,609120680188837888,609120680189362176,645149477073584128,645149477073584128,609120680054620160,609120680054620160,645993867643977728,645993867643977728,609965070625013760,609965070625013760,645993867643977728,645993867643977728,609965070625013760,609965070625013760,645712392667267072,645712392667267072,609683595648303104,609683595648303104,645712392667267072,645712392667267072,609683595648303104,609683595648303104,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,582943507355273224,582943507354746880,582943507354746880,582943507355271168,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378562568,582662032378036224,582662032378036224,582662032378560512,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082425141256,582099082424614912,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082425141256,582099082424614912,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,591950706610014216,591950706609487872,591950706609487872,591950706610012160,591950706475270144,591950706475270144,591950706475270144,591950706475270144,591669231633303560,591669231632777216,591669231632777216,591669231633301504,591669231498559488,591669231498559488,591669231498559488,591669231498559488,591106281679882248,591106281679355904,591106281679355904,591106281679880192,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591106281679882248,591106281679355904,591106281679355904,591106281679880192,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,582943507355273224,582943507354746880,582943507354746880,582943507355271168,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378562568,582662032378036224,582662032378036224,582662032378560512,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082425141256,582099082424614912,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082425141256,582099082424614912,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,609965105119496200,609965105118969856,645993902138458112,645993902137933824,609965104984752128,609965104984752128,645993902003716096,645993902003716096,609683630142785544,609683630142259200,645712427161747456,645712427161223168,609683630008041472,609683630008041472,645712427027005440,645712427027005440,609120680189364232,609120680188837888,645149477208326144,645149477207801856,609120680054620160,609120680054620160,645149477073584128,645149477073584128,609120680189364232,609120680188837888,645149477208326144,645149477207801856,609120680054620160,609120680054620160,645149477073584128,645149477073584128,609965070625013760,609965070625013760,645993867643977728,645993867643977728,609965070625013760,609965070625013760,645993867643977728,645993867643977728,609683595648303104,609683595648303104,645712392667267072,645712392667267072,609683595648303104,609683595648303104,645712392667267072,645712392667267072,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,582943507355273224,582943507354746880,582943507355271168,582943507354746880,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378562568,582662032378036224,582662032378560512,582662032378036224,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082425141256,582099082424614912,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082425141256,582099082424614912,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,591950706610014216,591950706609487872,591950706610012160,591950706609487872,591950706475270144,591950706475270144,591950706475270144,591950706475270144,591669231633303560,591669231632777216,591669231633301504,591669231632777216,591669231498559488,591669231498559488,591669231498559488,591669231498559488,591106281679882248,591106281679355904,591106281679880192,591106281679355904,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591106281679882248,591106281679355904,591106281679880192,591106281679355904,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,582943507355273224,582943507354746880,582943507355271168,582943507354746880,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378562568,582662032378036224,582662032378560512,582662032378036224,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082425141256,582099082424614912,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082425141256,582099082424614912,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,645993902137933824,645993902138460160,609965105119494144,609965105118969856,645993902003716096,645993902003716096,609965104984752128,609965104984752128,645712427161223168,645712427161749504,609683630142783488,609683630142259200,645712427027005440,645712427027005440,609683630008041472,609683630008041472,645149477207801856,645149477208328192,609120680189362176,609120680188837888,645149477073584128,645149477073584128,609120680054620160,609120680054620160,645149477207801856,645149477208328192,609120680189362176,609120680188837888,645149477073584128,645149477073584128,609120680054620160,609120680054620160,645993867643977728,645993867643977728,609965070625013760,609965070625013760,645993867643977728,645993867643977728,609965070625013760,609965070625013760,645712392667267072,645712392667267072,609683595648303104,609683595648303104,645712392667267072,645712392667267072,609683595648303104,609683595648303104,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,582943507354746880,582943507355273216,582943507355271168,582943507354746880,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378036224,582662032378562560,582662032378560512,582662032378036224,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082424614912,582099082425141248,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082424614912,582099082425141248,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,591950706609487872,591950706610014208,591950706610012160,591950706609487872,591950706475270144,591950706475270144,591950706475270144,591950706475270144,591669231632777216,591669231633303552,591669231633301504,591669231632777216,591669231498559488,591669231498559488,591669231498559488,591669231498559488,591106281679355904,591106281679882240,591106281679880192,591106281679355904,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591106281679355904,591106281679882240,591106281679880192,591106281679355904,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,582943507354746880,582943507355273216,582943507355271168,582943507354746880,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378036224,582662032378562560,582662032378560512,582662032378036224,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082424614912,582099082425141248,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082424614912,582099082425141248,582099082425139200,582099082424614912,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,609965105118969856,609965105119496192,645993902137933824,645993902138458112,609965104984752128,609965104984752128,645993902003716096,645993902003716096,609683630142259200,609683630142785536,645712427161223168,645712427161747456,609683630008041472,609683630008041472,645712427027005440,645712427027005440,609120680188837888,609120680189364224,645149477207801856,645149477208326144,609120680054620160,609120680054620160,645149477073584128,645149477073584128,609120680188837888,609120680189364224,645149477207801856,645149477208326144,609120680054620160,609120680054620160,645149477073584128,645149477073584128,609965070625013760,609965070625013760,645993867643977728,645993867643977728,609965070625013760,609965070625013760,645993867643977728,645993867643977728,609683595648303104,609683595648303104,645712392667267072,645712392667267072,609683595648303104,609683595648303104,645712392667267072,645712392667267072,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,609120645694881792,609120645694881792,645149442713845760,645149442713845760,582943507354746880,582943507355273216,582943507354746880,582943507355271168,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378036224,582662032378562560,582662032378036224,582662032378560512,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082424614912,582099082425141248,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082424614912,582099082425141248,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,591950706609487872,591950706610014208,591950706609487872,591950706610012160,591950706475270144,591950706475270144,591950706475270144,591950706475270144,591669231632777216,591669231633303552,591669231632777216,591669231633301504,591669231498559488,591669231498559488,591669231498559488,591669231498559488,591106281679355904,591106281679882240,591106281679355904,591106281679880192,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591106281679355904,591106281679882240,591106281679355904,591106281679880192,591106281545138176,591106281545138176,591106281545138176,591106281545138176,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106247185399808,582943507354746880,582943507355273216,582943507354746880,582943507355271168,582943507220529152,582943507220529152,582943507220529152,582943507220529152,582662032378036224,582662032378562560,582662032378036224,582662032378560512,582662032243818496,582662032243818496,582662032243818496,582662032243818496,582099082424614912,582099082425141248,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582099082424614912,582099082425141248,582099082424614912,582099082425139200,582099082290397184,582099082290397184,582099082290397184,582099082290397184,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099047930658816,0],[1220211685215703056,1165323995768160256,1220211685214650368,1165323995768160256,1219930210238992400,1165323995768160256,1219930210237939712,1164198095861317632,1219367260285571088,1164198095861317632,1219367260284518400,1164198095861317632,1219367260285571088,1164198095861317632,1219367260284518400,1164198095861317632,1218241360378728464,1164198095861317632,1218241360377675776,1164198095861317632,1218241360378728464,1164198095861317632,1218241360377675776,1220211685215703040,1218241360378728464,1220211685214650368,1218241360377675776,1219930210238992384,1218241360378728464,1219930210237939712,1218241360377675776,1219367260285571072,1220211616226738176,1219367260284518400,1220211616226738176,1219367260285571072,1219930141250027520,1219367260284518400,1219930141250027520,1218241360378728448,1219367191296606208,1218241360377675776,1219367191296606208,1218241360378728448,1219367191296606208,1218241360377675776,1219367191296606208,1218241360378728448,1218241291389763584,1218241360377675776,1218241291389763584,1218241360378728448,1218241291389763584,1218241360377675776,1218241291389763584,1220211616226738176,1218241291389763584,1220211616226738176,1218241291389763584,1219930141250027520,1218241291389763584,1219930141250027520,1218241291389763584,1219367191296606208,1166168489687257104,1219367191296606208,1166168489686204416,1219367191296606208,1165887014710546448,1219367191296606208,1165887014709493760,1218241291389763584,1165324064757125136,1218241291389763584,1165324064756072448,1218241291389763584,1165324064757125136,1218241291389763584,1165324064756072448,1218241291389763584,1164198164850282512,1218241291389763584,1164198164849229824,1218241291389763584,1164198164850282512,1218241291389763584,1164198164849229824,1166168489687257088,1164198164850282512,1166168489686204416,1164198164849229824,1165887014710546432,1164198164850282512,1165887014709493760,1164198164849229824,1165324064757125120,1166168420698292224,1165324064756072448,1166168420698292224,1165324064757125120,1165886945721581568,1165324064756072448,1165886945721581568,1164198164850282496,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850282496,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850282496,1164198095861317632,1164198164849229824,1164198095861317632,1164198164850282496,1164198095861317632,1164198164849229824,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1184182888196739088,1165323995768160256,1184182888195686400,1165323995768160256,1183901413220028432,1165323995768160256,1183901413218975744,1164198095861317632,1183338463266607120,1164198095861317632,1183338463265554432,1164198095861317632,1183338463266607120,1164198095861317632,1183338463265554432,1164198095861317632,1182212563359764496,1164198095861317632,1182212563358711808,1164198095861317632,1182212563359764496,1164198095861317632,1182212563358711808,1184182888196739072,1182212563359764496,1184182888195686400,1182212563358711808,1183901413220028416,1182212563359764496,1183901413218975744,1182212563358711808,1183338463266607104,1184182819207774208,1183338463265554432,1184182819207774208,1183338463266607104,1183901344231063552,1183338463265554432,1183901344231063552,1182212563359764480,1183338394277642240,1182212563358711808,1183338394277642240,1182212563359764480,1183338394277642240,1182212563358711808,1183338394277642240,1182212563359764480,1182212494370799616,1182212563358711808,1182212494370799616,1182212563359764480,1182212494370799616,1182212563358711808,1182212494370799616,1184182819207774208,1182212494370799616,1184182819207774208,1182212494370799616,1183901344231063552,1182212494370799616,1183901344231063552,1182212494370799616,1183338394277642240,1166168489687257104,1183338394277642240,1166168489686204416,1183338394277642240,1165887014710546448,1183338394277642240,1165887014709493760,1182212494370799616,1165324064757125136,1182212494370799616,1165324064756072448,1182212494370799616,1165324064757125136,1182212494370799616,1165324064756072448,1182212494370799616,1164198164850282512,1182212494370799616,1164198164849229824,1182212494370799616,1164198164850282512,1182212494370799616,1164198164849229824,1166168489687257088,1164198164850282512,1166168489686204416,1164198164849229824,1165887014710546432,1164198164850282512,1165887014709493760,1164198164849229824,1165324064757125120,1166168420698292224,1165324064756072448,1166168420698292224,1165324064757125120,1165886945721581568,1165324064756072448,1165886945721581568,1164198164850282496,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850282496,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850282496,1164198095861317632,1164198164849229824,1164198095861317632,1164198164850282496,1164198095861317632,1164198164849229824,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1220211684946214912,1165323995768160256,1220211684946214912,1165323995768160256,1219930209969504256,1165323995768160256,1219930209969504256,1164198095861317632,1219367260016082944,1164198095861317632,1219367260016082944,1164198095861317632,1219367260016082944,1164198095861317632,1219367260016082944,1164198095861317632,1218241360109240320,1164198095861317632,1218241360109240320,1164198095861317632,1218241360109240320,1164198095861317632,1218241360109240320,1220211684946214912,1218241360109240320,1220211684946214912,1218241360109240320,1219930209969504256,1218241360109240320,1219930209969504256,1218241360109240320,1219367260016082944,1220211616226738176,1219367260016082944,1220211616226738176,1219367260016082944,1219930141250027520,1219367260016082944,1219930141250027520,1218241360109240320,1219367191296606208,1218241360109240320,1219367191296606208,1218241360109240320,1219367191296606208,1218241360109240320,1219367191296606208,1218241360109240320,1218241291389763584,1218241360109240320,1218241291389763584,1218241360109240320,1218241291389763584,1218241360109240320,1218241291389763584,1220211616226738176,1218241291389763584,1220211616226738176,1218241291389763584,1219930141250027520,1218241291389763584,1219930141250027520,1218241291389763584,1219367191296606208,1166168489417768960,1219367191296606208,1166168489417768960,1219367191296606208,1165887014441058304,1219367191296606208,1165887014441058304,1218241291389763584,1165324064487636992,1218241291389763584,1165324064487636992,1218241291389763584,1165324064487636992,1218241291389763584,1165324064487636992,1218241291389763584,1164198164580794368,1218241291389763584,1164198164580794368,1218241291389763584,1164198164580794368,1218241291389763584,1164198164580794368,1166168489417768960,1164198164580794368,1166168489417768960,1164198164580794368,1165887014441058304,1164198164580794368,1165887014441058304,1164198164580794368,1165324064487636992,1166168420698292224,1165324064487636992,1166168420698292224,1165324064487636992,1165886945721581568,1165324064487636992,1165886945721581568,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1184182887927250944,1165323995768160256,1184182887927250944,1165323995768160256,1183901412950540288,1165323995768160256,1183901412950540288,1164198095861317632,1183338462997118976,1164198095861317632,1183338462997118976,1164198095861317632,1183338462997118976,1164198095861317632,1183338462997118976,1164198095861317632,1182212563090276352,1164198095861317632,1182212563090276352,1164198095861317632,1182212563090276352,1164198095861317632,1182212563090276352,1184182887927250944,1182212563090276352,1184182887927250944,1182212563090276352,1183901412950540288,1182212563090276352,1183901412950540288,1182212563090276352,1183338462997118976,1184182819207774208,1183338462997118976,1184182819207774208,1183338462997118976,1183901344231063552,1183338462997118976,1183901344231063552,1182212563090276352,1183338394277642240,1182212563090276352,1183338394277642240,1182212563090276352,1183338394277642240,1182212563090276352,1183338394277642240,1182212563090276352,1182212494370799616,1182212563090276352,1182212494370799616,1182212563090276352,1182212494370799616,1182212563090276352,1182212494370799616,1184182819207774208,1182212494370799616,1184182819207774208,1182212494370799616,1183901344231063552,1182212494370799616,1183901344231063552,1182212494370799616,1183338394277642240,1166168489417768960,1183338394277642240,1166168489417768960,1183338394277642240,1165887014441058304,1183338394277642240,1165887014441058304,1182212494370799616,1165324064487636992,1182212494370799616,1165324064487636992,1182212494370799616,1165324064487636992,1182212494370799616,1165324064487636992,1182212494370799616,1164198164580794368,1182212494370799616,1164198164580794368,1182212494370799616,1164198164580794368,1182212494370799616,1164198164580794368,1166168489417768960,1164198164580794368,1166168489417768960,1164198164580794368,1165887014441058304,1164198164580794368,1165887014441058304,1164198164580794368,1165324064487636992,1166168420698292224,1165324064487636992,1166168420698292224,1165324064487636992,1165886945721581568,1165324064487636992,1165886945721581568,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1220211684946214912,1165323995768160256,1220211684946214912,1165323995768160256,1219930209969504256,1165323995768160256,1219930209969504256,1164198095861317632,1219367260016082944,1164198095861317632,1219367260016082944,1164198095861317632,1219367260016082944,1164198095861317632,1219367260016082944,1164198095861317632,1218241360109240320,1164198095861317632,1218241360109240320,1164198095861317632,1218241360109240320,1164198095861317632,1218241360109240320,1220211684946214912,1218241360109240320,1220211684946214912,1218241360109240320,1219930209969504256,1218241360109240320,1219930209969504256,1218241360109240320,1219367260016082944,1220211616226738176,1219367260016082944,1220211616226738176,1219367260016082944,1219930141250027520,1219367260016082944,1219930141250027520,1218241360109240320,1219367191296606208,1218241360109240320,1219367191296606208,1218241360109240320,1219367191296606208,1218241360109240320,1219367191296606208,1218241360109240320,1218241291389763584,1218241360109240320,1218241291389763584,1218241360109240320,1218241291389763584,1218241360109240320,1218241291389763584,1220211616226738176,1218241291389763584,1220211616226738176,1218241291389763584,1219930141250027520,1218241291389763584,1219930141250027520,1218241291389763584,1219367191296606208,1166168489417768960,1219367191296606208,1166168489417768960,1219367191296606208,1165887014441058304,1219367191296606208,1165887014441058304,1218241291389763584,1165324064487636992,1218241291389763584,1165324064487636992,1218241291389763584,1165324064487636992,1218241291389763584,1165324064487636992,1218241291389763584,1164198164580794368,1218241291389763584,1164198164580794368,1218241291389763584,1164198164580794368,1218241291389763584,1164198164580794368,1166168489417768960,1164198164580794368,1166168489417768960,1164198164580794368,1165887014441058304,1164198164580794368,1165887014441058304,1164198164580794368,1165324064487636992,1166168420698292224,1165324064487636992,1166168420698292224,1165324064487636992,1165886945721581568,1165324064487636992,1165886945721581568,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1184182887927250944,1165323995768160256,1184182887927250944,1165323995768160256,1183901412950540288,1165323995768160256,1183901412950540288,1164198095861317632,1183338462997118976,1164198095861317632,1183338462997118976,1164198095861317632,1183338462997118976,1164198095861317632,1183338462997118976,1164198095861317632,1182212563090276352,1164198095861317632,1182212563090276352,1164198095861317632,1182212563090276352,1164198095861317632,1182212563090276352,1184182887927250944,1182212563090276352,1184182887927250944,1182212563090276352,1183901412950540288,1182212563090276352,1183901412950540288,1182212563090276352,1183338462997118976,1184182819207774208,1183338462997118976,1184182819207774208,1183338462997118976,1183901344231063552,1183338462997118976,1183901344231063552,1182212563090276352,1183338394277642240,1182212563090276352,1183338394277642240,1182212563090276352,1183338394277642240,1182212563090276352,1183338394277642240,1182212563090276352,1182212494370799616,1182212563090276352,1182212494370799616,1182212563090276352,1182212494370799616,1182212563090276352,1182212494370799616,1184182819207774208,1182212494370799616,1184182819207774208,1182212494370799616,1183901344231063552,1182212494370799616,1183901344231063552,1182212494370799616,1183338394277642240,1166168489417768960,1183338394277642240,1166168489417768960,1183338394277642240,1165887014441058304,1183338394277642240,1165887014441058304,1182212494370799616,1165324064487636992,1182212494370799616,1165324064487636992,1182212494370799616,1165324064487636992,1182212494370799616,1165324064487636992,1182212494370799616,1164198164580794368,1182212494370799616,1164198164580794368,1182212494370799616,1164198164580794368,1182212494370799616,1164198164580794368,1166168489417768960,1164198164580794368,1166168489417768960,1164198164580794368,1165887014441058304,1164198164580794368,1165887014441058304,1164198164580794368,1165324064487636992,1166168420698292224,1165324064487636992,1166168420698292224,1165324064487636992,1165886945721581568,1165324064487636992,1165886945721581568,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1165323995768160256,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1164198164580794368,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1220211685215698944,1165323995768160256,1220211685214650368,1165323995768160256,1219930210238988288,1165323995768160256,1219930210237939712,1164198095861317632,1219367260285566976,1164198095861317632,1219367260284518400,1164198095861317632,1219367260285566976,1164198095861317632,1219367260284518400,1164198095861317632,1218241360378724352,1164198095861317632,1218241360377675776,1164198095861317632,1218241360378724352,1164198095861317632,1218241360377675776,1220211685215698944,1218241360378724352,1220211685214650368,1218241360377675776,1219930210238988288,1218241360378724352,1219930210237939712,1218241360377675776,1219367260285566976,1220211616226738176,1219367260284518400,1220211616226738176,1219367260285566976,1219930141250027520,1219367260284518400,1219930141250027520,1218241360378724352,1219367191296606208,1218241360377675776,1219367191296606208,1218241360378724352,1219367191296606208,1218241360377675776,1219367191296606208,1218241360378724352,1218241291389763584,1218241360377675776,1218241291389763584,1218241360378724352,1218241291389763584,1218241360377675776,1218241291389763584,1220211616226738176,1218241291389763584,1220211616226738176,1218241291389763584,1219930141250027520,1218241291389763584,1219930141250027520,1218241291389763584,1219367191296606208,1166168489687252992,1219367191296606208,1166168489686204416,1219367191296606208,1165887014710542336,1219367191296606208,1165887014709493760,1218241291389763584,1165324064757121024,1218241291389763584,1165324064756072448,1218241291389763584,1165324064757121024,1218241291389763584,1165324064756072448,1218241291389763584,1164198164850278400,1218241291389763584,1164198164849229824,1218241291389763584,1164198164850278400,1218241291389763584,1164198164849229824,1166168489687252992,1164198164850278400,1166168489686204416,1164198164849229824,1165887014710542336,1164198164850278400,1165887014709493760,1164198164849229824,1165324064757121024,1166168420698292224,1165324064756072448,1166168420698292224,1165324064757121024,1165886945721581568,1165324064756072448,1165886945721581568,1164198164850278400,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850278400,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850278400,1164198095861317632,1164198164849229824,1164198095861317632,1164198164850278400,1164198095861317632,1164198164849229824,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,1184182888196734976,1165323995768160256,1184182888195686400,1165323995768160256,1183901413220024320,1165323995768160256,1183901413218975744,1164198095861317632,1183338463266603008,1164198095861317632,1183338463265554432,1164198095861317632,1183338463266603008,1164198095861317632,1183338463265554432,1164198095861317632,1182212563359760384,1164198095861317632,1182212563358711808,1164198095861317632,1182212563359760384,1164198095861317632,1182212563358711808,1184182888196734976,1182212563359760384,1184182888195686400,1182212563358711808,1183901413220024320,1182212563359760384,1183901413218975744,1182212563358711808,1183338463266603008,1184182819207774208,1183338463265554432,1184182819207774208,1183338463266603008,1183901344231063552,1183338463265554432,1183901344231063552,1182212563359760384,1183338394277642240,1182212563358711808,1183338394277642240,1182212563359760384,1183338394277642240,1182212563358711808,1183338394277642240,1182212563359760384,1182212494370799616,1182212563358711808,1182212494370799616,1182212563359760384,1182212494370799616,1182212563358711808,1182212494370799616,1184182819207774208,1182212494370799616,1184182819207774208,1182212494370799616,1183901344231063552,1182212494370799616,1183901344231063552,1182212494370799616,1183338394277642240,1166168489687252992,1183338394277642240,1166168489686204416,1183338394277642240,1165887014710542336,1183338394277642240,1165887014709493760,1182212494370799616,1165324064757121024,1182212494370799616,1165324064756072448,1182212494370799616,1165324064757121024,1182212494370799616,1165324064756072448,1182212494370799616,1164198164850278400,1182212494370799616,1164198164849229824,1182212494370799616,1164198164850278400,1182212494370799616,1164198164849229824,1166168489687252992,1164198164850278400,1166168489686204416,1164198164849229824,1165887014710542336,1164198164850278400,1165887014709493760,1164198164849229824,1165324064757121024,1166168420698292224,1165324064756072448,1166168420698292224,1165324064757121024,1165886945721581568,1165324064756072448,1165886945721581568,1164198164850278400,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850278400,1165323995768160256,1164198164849229824,1165323995768160256,1164198164850278400,1164198095861317632,1164198164849229824,1164198095861317632,1164198164850278400,1164198095861317632,1164198164849229824,1164198095861317632,1166168420698292224,1164198095861317632,1166168420698292224,1164198095861317632,1165886945721581568,1164198095861317632,1165886945721581568,1164198095861317632,1165323995768160256,0],[2368647251370188832,2330647991536320512,2368647251370180608,2330647991536320512,2328396329698459648,2367802688462127104,2328396329698459648,2367802688462127104,2364425126180552704,2368647113392259072,2364425126180552704,2368647113392259072,2366676926533214240,2328396191722635264,2366676926533206016,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2332336979374514176,2366676788555284480,2332336979374505984,2366676788555284480,2364425126719528992,2330647991536320512,2364425126719520768,2330647991536320512,2328396329161588736,2332336841396584448,2328396329161588736,2332336841396584448,2328396329700564992,2364424988741599232,2328396329700556800,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826437951488,2328396191722635264,2367802826437951488,2328396191722635264,2328396329700564992,2366676788555284480,2328396329700556800,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126717423616,2328396191722635264,2364425126717423616,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029421092896,2364424988741599232,2331774029421084672,2364424988741599232,2368647250831212544,2330647991536320512,2368647250831212544,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329700565024,2368647113392259072,2328396329700556800,2368647113392259072,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2332336978835537920,2366676788555284480,2332336978835537920,2366676788555284480,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126717423616,2332336841396584448,2364425126717423616,2332336841396584448,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329698459648,2367802688462127104,2328396329698459648,2367802688462127104,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926533214208,2328396191722635264,2366676926533206016,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2332618454349119488,2366676788555284480,2332618454349119488,2366676788555284480,2364425126719528960,2331773891443163136,2364425126719520768,2331773891443163136,2328396329161588736,2332618316373295104,2328396329161588736,2332618316373295104,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2368365776393478176,2330647991536320512,2368365776393469952,2330647991536320512,2328396329698459648,2366676788555284480,2328396329698459648,2366676788555284480,2364425126180552704,2368365638415548416,2364425126180552704,2368365638415548416,2364425126719528992,2328396191722635264,2364425126719520768,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029421092864,2364424988741599232,2331774029421084672,2364424988741599232,2364425126719528992,2330647991536320512,2364425126719520768,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329700564992,2364424988741599232,2328396329700556800,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826437951488,2328396191722635264,2367802826437951488,2328396191722635264,2332618453812248576,2366676788555284480,2332618453812248576,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126717423616,2332618316373295104,2364425126717423616,2332618316373295104,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2330648129514250272,2364424988741599232,2330648129514242048,2364424988741599232,2368365775854501888,2330647991536320512,2368365775854501888,2330647991536320512,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329700565024,2368365638415548416,2328396329700556800,2368365638415548416,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126717423616,2331773891443163136,2364425126717423616,2331773891443163136,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2368647251370188800,2330647991536320512,2368647251370180608,2330647991536320512,2328396329698459648,2367802688462127104,2328396329698459648,2367802688462127104,2364425126180552704,2368647113392259072,2364425126180552704,2368647113392259072,2366676926533214208,2328396191722635264,2366676926533206016,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2332336979372408832,2366676788555284480,2332336979372408832,2366676788555284480,2364425126719528960,2330647991536320512,2364425126719520768,2330647991536320512,2328396329161588736,2332336841396584448,2328396329161588736,2332336841396584448,2328396329698459648,2364424988741599232,2328396329698459648,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826440056864,2328396191722635264,2367802826440048640,2328396191722635264,2328396329698459648,2366676788555284480,2328396329698459648,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126719528992,2328396191722635264,2364425126719520768,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029421092864,2364424988741599232,2331774029421084672,2364424988741599232,2368647250831212544,2330647991536320512,2368647250831212544,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329700564992,2368647113392259072,2328396329700556800,2368647113392259072,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2332336978835537920,2366676788555284480,2332336978835537920,2366676788555284480,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126717423616,2332336841396584448,2364425126717423616,2332336841396584448,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129514250272,2364424988741599232,2330648129514242048,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329700565024,2367802688462127104,2328396329700556800,2367802688462127104,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2332618454349119488,2366676788555284480,2332618454349119488,2366676788555284480,2364425126717423616,2331773891443163136,2364425126717423616,2331773891443163136,2328396329161588736,2332618316373295104,2328396329161588736,2332618316373295104,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2368365776393478144,2330647991536320512,2368365776393469952,2330647991536320512,2328396329698459648,2366676788555284480,2328396329698459648,2366676788555284480,2364425126180552704,2368365638415548416,2364425126180552704,2368365638415548416,2364425126719528960,2328396191722635264,2364425126719520768,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029418987520,2364424988741599232,2331774029418987520,2364424988741599232,2364425126719528960,2330647991536320512,2364425126719520768,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329698459648,2364424988741599232,2328396329698459648,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826440056864,2328396191722635264,2367802826440048640,2328396191722635264,2332618453812248576,2366676788555284480,2332618453812248576,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126719528992,2332618316373295104,2364425126719520768,2332618316373295104,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2330648129514250240,2364424988741599232,2330648129514242048,2364424988741599232,2368365775854501888,2330647991536320512,2368365775854501888,2330647991536320512,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329700564992,2368365638415548416,2328396329700556800,2368365638415548416,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126717423616,2331773891443163136,2364425126717423616,2331773891443163136,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129514250272,2364424988741599232,2330648129514242048,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2368647251368083456,2330647991536320512,2368647251368083456,2330647991536320512,2328396329700565024,2367802688462127104,2328396329700556800,2367802688462127104,2364425126180552704,2368647113392259072,2364425126180552704,2368647113392259072,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2332336979372408832,2366676788555284480,2332336979372408832,2366676788555284480,2364425126717423616,2330647991536320512,2364425126717423616,2330647991536320512,2328396329161588736,2332336841396584448,2328396329161588736,2332336841396584448,2328396329698459648,2364424988741599232,2328396329698459648,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826440056832,2328396191722635264,2367802826440048640,2328396191722635264,2328396329698459648,2366676788555284480,2328396329698459648,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126719528960,2328396191722635264,2364425126719520768,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029418987520,2364424988741599232,2331774029418987520,2364424988741599232,2368647250831212544,2330647991536320512,2368647250831212544,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329698459648,2368647113392259072,2328396329698459648,2368647113392259072,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2366676926533214240,2328396191722635264,2366676926533206016,2328396191722635264,2332336978835537920,2366676788555284480,2332336978835537920,2366676788555284480,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126719528992,2332336841396584448,2364425126719520768,2332336841396584448,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129514250240,2364424988741599232,2330648129514242048,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329700564992,2367802688462127104,2328396329700556800,2367802688462127104,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2332618454351224864,2366676788555284480,2332618454351216640,2366676788555284480,2364425126717423616,2331773891443163136,2364425126717423616,2331773891443163136,2328396329161588736,2332618316373295104,2328396329161588736,2332618316373295104,2330648129514250272,2364424988741599232,2330648129514242048,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2368365776391372800,2330647991536320512,2368365776391372800,2330647991536320512,2328396329700565024,2366676788555284480,2328396329700556800,2366676788555284480,2364425126180552704,2368365638415548416,2364425126180552704,2368365638415548416,2364425126717423616,2328396191722635264,2364425126717423616,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029418987520,2364424988741599232,2331774029418987520,2364424988741599232,2364425126717423616,2330647991536320512,2364425126717423616,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329698459648,2364424988741599232,2328396329698459648,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826440056832,2328396191722635264,2367802826440048640,2328396191722635264,2332618453812248576,2366676788555284480,2332618453812248576,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126719528960,2332618316373295104,2364425126719520768,2332618316373295104,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2368365775854501888,2330647991536320512,2368365775854501888,2330647991536320512,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329698459648,2368365638415548416,2328396329698459648,2368365638415548416,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926533214240,2328396191722635264,2366676926533206016,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126719528992,2331773891443163136,2364425126719520768,2331773891443163136,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129514250240,2364424988741599232,2330648129514242048,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2368647251368083456,2330647991536320512,2368647251368083456,2330647991536320512,2328396329700564992,2367802688462127104,2328396329700556800,2367802688462127104,2364425126180552704,2368647113392259072,2364425126180552704,2368647113392259072,2366676926531108864,2328396191722635264,2366676926531108864,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2332336979374514208,2366676788555284480,2332336979374505984,2366676788555284480,2364425126717423616,2330647991536320512,2364425126717423616,2330647991536320512,2328396329161588736,2332336841396584448,2328396329161588736,2332336841396584448,2328396329700565024,2364424988741599232,2328396329700556800,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826437951488,2328396191722635264,2367802826437951488,2328396191722635264,2328396329700565024,2366676788555284480,2328396329700556800,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126717423616,2328396191722635264,2364425126717423616,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029418987520,2364424988741599232,2331774029418987520,2364424988741599232,2368647250831212544,2330647991536320512,2368647250831212544,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329698459648,2368647113392259072,2328396329698459648,2368647113392259072,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2366676926533214208,2328396191722635264,2366676926533206016,2328396191722635264,2332336978835537920,2366676788555284480,2332336978835537920,2366676788555284480,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126719528960,2332336841396584448,2364425126719520768,2332336841396584448,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329698459648,2367802688462127104,2328396329698459648,2367802688462127104,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926533214240,2328396191722635264,2366676926533206016,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2332618454351224832,2366676788555284480,2332618454351216640,2366676788555284480,2364425126719528992,2331773891443163136,2364425126719520768,2331773891443163136,2328396329161588736,2332618316373295104,2328396329161588736,2332618316373295104,2330648129514250240,2364424988741599232,2330648129514242048,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2368365776391372800,2330647991536320512,2368365776391372800,2330647991536320512,2328396329700564992,2366676788555284480,2328396329700556800,2366676788555284480,2364425126180552704,2368365638415548416,2364425126180552704,2368365638415548416,2364425126717423616,2328396191722635264,2364425126717423616,2328396191722635264,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2331774029421092896,2364424988741599232,2331774029421084672,2364424988741599232,2364425126717423616,2330647991536320512,2364425126717423616,2330647991536320512,2328396329161588736,2331773891443163136,2328396329161588736,2331773891443163136,2328396329700565024,2364424988741599232,2328396329700556800,2364424988741599232,2366676925994237952,2328396191722635264,2366676925994237952,2328396191722635264,2367802826437951488,2328396191722635264,2367802826437951488,2328396191722635264,2332618453812248576,2366676788555284480,2332618453812248576,2366676788555284480,2364425126180552704,2367802688462127104,2364425126180552704,2367802688462127104,2364425126717423616,2332618316373295104,2364425126717423616,2332618316373295104,2330648128975273984,2364424988741599232,2330648128975273984,2364424988741599232,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2368365775854501888,2330647991536320512,2368365775854501888,2330647991536320512,2328396329161588736,2330647991536320512,2328396329161588736,2330647991536320512,2328396329698459648,2368365638415548416,2328396329698459648,2368365638415548416,2364425126180552704,2328396191722635264,2364425126180552704,2328396191722635264,2366676926533214208,2328396191722635264,2366676926533206016,2328396191722635264,2331774028882116608,2364424988741599232,2331774028882116608,2364424988741599232,2364425126180552704,2366676788555284480,2364425126180552704,2366676788555284480,2364425126719528960,2331773891443163136,2364425126719520768,2331773891443163136,2328396329161588736,2364424988741599232,2328396329161588736,2364424988741599232,2330648129512144896,2364424988741599232,2330648129512144896,2364424988741599232,2367802825901080576,2328396191722635264,2367802825901080576,2328396191722635264,0],[4665518383679160384,4665518382601207808,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4661296259024289792,4661296257950547968,4665518383674949632,4665518382601207808,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4665518383679160320,4665518382601207808,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401113600,4656792658323177472,4665236908702449728,4665236907624497152,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665518383674949632,4665518382601207808,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659396919296,4656792658323177472,4665236908698238976,4665236907624497152,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665236908702449664,4665236907624497152,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401113600,4656792658323177472,4664673958749028416,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665236908698238976,4665236907624497152,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659396919296,4656792658323177472,4664673958744817664,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958749028352,4664673957671075840,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401113600,4656792658323177472,4664673958749028416,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958744817664,4664673957671075840,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659396919296,4656792658323177472,4664673958744817664,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958749028352,4664673957671075840,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401113600,4656792658323177472,4663548058842185792,4663548057764233216,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958744817664,4664673957671075840,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058837975040,4663548057764233216,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4663548058842185728,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4663548058842185792,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842185728,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4663548058842185792,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842185728,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4663548058842185792,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842185728,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4661295983072641024,4661295983072641024,4665518107723300864,4665518107723300864,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4656792383445270528,4656792383445270528,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4665518107723300864,4665518107723300864,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4665518107723300864,4665518107723300864,4656792383445270528,4656792383445270528,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4656792383445270528,4656792383445270528,4665236632746590208,4665236632746590208,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4665518107723300864,4665518107723300864,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4665236632746590208,4665236632746590208,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4665236632746590208,4665236632746590208,4656792383445270528,4656792383445270528,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4665236632746590208,4665236632746590208,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659401113600,4656792658323177472,4661296259028500544,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259024289792,4661296257950547968,4656792659401113600,4656792658323177472,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259028500480,4661296257950547968,4656792659396919296,4656792658323177472,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659401113600,4656792658323177472,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4661296259024289792,4661296257950547968,4665518383679143936,4665518382601207808,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401129984,4656792658323177472,4665518383674949632,4665518382601207808,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665518383679143936,4665518382601207808,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659396919296,4656792658323177472,4665236908702433280,4665236907624497152,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665518383674949632,4665518382601207808,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401129984,4656792658323177472,4665236908698238976,4665236907624497152,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665236908702433280,4665236907624497152,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659396919296,4656792658323177472,4664673958749011968,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4665236908698238976,4665236907624497152,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401129984,4656792658323177472,4664673958744817664,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958749011968,4664673957671075840,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659396919296,4656792658323177472,4664673958749011968,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958744817664,4664673957671075840,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4663547782886326272,4663547782886326272,4656792659401129984,4656792658323177472,4664673958744817664,4664673957671075840,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958749011968,4664673957671075840,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058842169344,4663548057764233216,4663547782886326272,4663547782886326272,4656792383445270528,4656792383445270528,4664673958744817664,4664673957671075840,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842169344,4663548057764233216,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058842169344,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842169344,4663548057764233216,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058842169344,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842169344,4663548057764233216,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4663548058842169344,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4663548058837975040,4663548057764233216,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058842169344,4663548057764233216,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4663548058837975040,4663548057764233216,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4661295983072641024,4661295983072641024,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4661295983072641024,4661295983072641024,4656792383445270528,4656792383445270528,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4656792383445270528,4656792383445270528,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4661295983072641024,4661295983072641024,4665518107723300864,4665518107723300864,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4656792383445270528,4656792383445270528,4656792383445270528,4656792383445270528,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4665518107723300864,4665518107723300864,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4665518107723300864,4665518107723300864,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4656792383445270528,4656792383445270528,4665236632746590208,4665236632746590208,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4665518107723300864,4665518107723300864,4656792383445270528,4656792383445270528,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4665236632746590208,4665236632746590208,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4665236632746590208,4665236632746590208,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4665236632746590208,4665236632746590208,4656792383445270528,4656792383445270528,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259028484096,4661296257950547968,4656792659401130048,4656792658323177472,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659396919296,4656792658323177472,4661296259028484096,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259024289792,4661296257950547968,4656792659396919296,4656792658323177472,4664673682793168896,4664673682793168896,4656792383445270528,4656792383445270528,4656792659401129984,4656792658323177472,4661296259024289792,4661296257950547968,4656792383445270528,4656792383445270528,4664673682793168896,4664673682793168896,4661296259028484096,4661296257950547968,0],[9259260648297103488,9241527724764332032,9241527722608427008,9255038521490538496,9259260648288681984,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9259260646141198336,9241527724755910656,9241527724755910656,9250534921863168000,9259260646141198336,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764332160,9255038523646443520,9258416221211066368,9241527722608427008,9241527724755910656,9255038523638022144,9258416221211066368,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9258416223366938624,9241527722608427008,9241527722608427008,9250534924010651648,9258416223358550016,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9257290323460128896,9241527724764332032,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9258978621408673792,9241527172852613120,9241527172852613120,9255037971734724608,9258978621408673792,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9258978621408673792,9241527172852613120,9241527172852613120,9250534372107354112,9258978621408673792,9241527172852613120,9241527172852613120,9241527724764332160,9255038523646443520,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9257290323460096000,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9259260648297070592,9241527724764299264,9241527722608427008,9255038521490538496,9259260648288681984,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9258979171164487680,9241527724755910656,9241527724755910656,9250534921863168000,9258979171164487680,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764299264,9255038523646410752,9258416221211066368,9241527722608427008,9241527724755910656,9255038523638022144,9258416221211066368,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9258416223366971392,9241527722608427008,9241527722608427008,9250534924010651648,9258416223358550016,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9259260096385384448,9241527172852613120,9241527172852613120,9250534372107354112,9259260096385384448,9257290323460096000,9241527724764299264,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9258978621408673792,9241527172852613120,9241527172852613120,9255037971734724608,9258978621408673792,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9241527724764299264,9255038523646410752,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9257290323460128768,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9258979173320392832,9241527724764332032,9241527722608427008,9255038521490538496,9258979173311971328,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9258979171164487680,9241527724755910656,9241527724755910656,9250534921863168000,9258979171164487680,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764332160,9255038523646443520,9258416221211066368,9241527722608427008,9241527724755910656,9255038523638022144,9258416221211066368,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9258416223366938624,9241527722608427008,9241527722608427008,9250534924010651648,9258416223358550016,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9259260096385384448,9241527172852613120,9241527172852613120,9255037971734724608,9259260096385384448,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9259260096385384448,9241527172852613120,9241527172852613120,9250534372107354112,9259260096385384448,9257290323460128896,9241527724764332032,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9241527724764332160,9255038523646443520,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9257290323460096000,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9259260648297103360,9241527722608427008,9241527722608427008,9250534924010651648,9259260648288681984,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9258979173320359936,9241527724764299264,9241527722608427008,9255038521490538496,9258979173311971328,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9258416221211066368,9241527724755910656,9241527724755910656,9250534921863168000,9258416221211066368,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764299264,9255038523646410752,9258416221211066368,9241527722608427008,9241527724755910656,9255038523638022144,9258416221211066368,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9257290323460128768,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9259260096385384448,9241527172852613120,9241527172852613120,9255037971734724608,9259260096385384448,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9258978621408673792,9241527172852613120,9241527172852613120,9250534372107354112,9258978621408673792,9257290323460096000,9241527724764299264,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9241527724764299264,9255038523646410752,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764332160,9255038523646443520,9259260646141198336,9241527722608427008,9241527724755910656,9255038523638022144,9259260646141198336,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9259260648297070592,9241527722608427008,9241527722608427008,9250534924010651648,9259260648288681984,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9258416223366971520,9241527724764332032,9241527722608427008,9255038521490538496,9258416223358550016,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9258416221211066368,9241527724755910656,9241527724755910656,9250534921863168000,9258416221211066368,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764332160,9255038523646443520,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9257290323460096000,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9258978621408673792,9241527172852613120,9241527172852613120,9255037971734724608,9258978621408673792,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9258978621408673792,9241527172852613120,9241527172852613120,9250534372107354112,9258978621408673792,9257290323460128896,9241527724764332032,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764299264,9255038523646410752,9259260646141198336,9241527722608427008,9241527724755910656,9255038523638022144,9259260646141198336,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9258979173320392704,9241527722608427008,9241527722608427008,9250534924010651648,9258979173311971328,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9258416223366938624,9241527724764299264,9241527722608427008,9255038521490538496,9258416223358550016,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9258416221211066368,9241527724755910656,9241527724755910656,9250534921863168000,9258416221211066368,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9259260096385384448,9241527172852613120,9241527172852613120,9250534372107354112,9259260096385384448,9241527172852613120,9241527172852613120,9241527724764299264,9255038523646410752,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9257290323460128768,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9258978621408673792,9241527172852613120,9241527172852613120,9255037971734724608,9258978621408673792,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9257290323460096000,9241527724764299264,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764332160,9255038523646443520,9258979171164487680,9241527722608427008,9241527724755910656,9255038523638022144,9258979171164487680,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9258979173320359936,9241527722608427008,9241527722608427008,9250534924010651648,9258979173311971328,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9258416223366971520,9241527724764332032,9241527722608427008,9255038521490538496,9258416223358550016,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9258416221211066368,9241527724755910656,9241527724755910656,9250534921863168000,9258416221211066368,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764332160,9250534924019073024,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9259260096385384448,9241527172852613120,9241527172852613120,9255037971734724608,9259260096385384448,9241527172852613120,9241527724764299264,9250534924019040256,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9259260096385384448,9241527172852613120,9241527172852613120,9250534372107354112,9259260096385384448,9241527172852613120,9241527172852613120,9241527724764332160,9255038523646443520,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9257290323460096000,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9241527724764332032,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646410752,9241527724764299264,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9257290323460128896,9241527724764332032,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527724764299264,9241527724764299264,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9259260646141198336,9241527724755910656,9241527724755910656,9250534921863168000,9259260646141198336,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9241527724764299264,9255038523646410752,9258979171164487680,9241527722608427008,9241527724755910656,9255038523638022144,9258979171164487680,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9258416223366971392,9241527722608427008,9241527722608427008,9250534924010651648,9258416223358550016,9241527722608427008,9241527722608427008,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9257289771548409856,9241527172852613120,9241527172852613120,9255037971734724608,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9241527172852613120,9241527172852613120,9250534372107354112,9257289771548409856,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9258416223366938624,9241527724764299264,9241527722608427008,9255038521490538496,9258416223358550016,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764332160,9241527724764332032,9250534921863168000,9257290321304223744,9241527724755910656,9241527724755910656,9250534921863168000,9257290321304223744,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527724764299264,9250534924019040256,9250534921863168000,9241527722608427008,9241527724755910656,9250534924010651648,9250534921863168000,9241527722608427008,9241527172852613120,9255037971734724608,9259260096385384448,9241527172852613120,9241527172852613120,9255037971734724608,9259260096385384448,9241527172852613120,9241527724764332160,9250534924019073024,9255038521490538496,9241527722608427008,9241527724755910656,9250534924010651648,9255038521490538496,9241527722608427008,9250534372107354112,9258978621408673792,9241527172852613120,9241527172852613120,9250534372107354112,9258978621408673792,9241527172852613120,9241527172852613120,9241527724764299264,9255038523646410752,9257290321304223744,9241527722608427008,9241527724755910656,9255038523638022144,9257290321304223744,9241527722608427008,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019073152,9257290323460128768,9241527722608427008,9241527722608427008,9250534924010651648,9257290323451707392,9241527722608427008,9241527722608427008,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9255037971734724608,9241527172852613120,9241527172852613120,9250534372107354112,9250534924019040256,9241527724764299264,9241527722608427008,9250534921863168000,9250534924010651648,9241527724755910656,9241527722608427008,9250534921863168000,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9258415671455252480,9241527172852613120,9241527172852613120,9255037971734724608,9255038523646443648,9241527724764332032,9241527722608427008,9250534921863168000,9255038523638022144,9241527724755910656,9241527722608427008,9250534921863168000,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9241527172852613120,9241527172852613120,9250534372107354112,9258415671455252480,9257290323460096000,9241527724764299264,9241527722608427008,9255038521490538496,9257290323451707392,9241527724755910656,9241527722608427008,9255038521490538496,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,0],[18302911464433844481,432628138715906048,18302910360610406400,432627039204278272,432628143027716096,1009088895314296832,432627039204278272,1009087791507701760,2162010399921143808,432628143027650560,2162009296114548736,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,9079539427562225664,144397762564194304,9079538323755630592,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,9079539423267258368,144396663052566528,9079538323755630592,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,18302911464433844224,432628138715906048,18302910360610406400,432627039204278272,432628138715906048,2162010395626176512,432627039204278272,2162009296114548736,2162010399921143808,432628143027650560,2162009296114548736,432627039204278272,432628143027716352,18302911464417001472,432627039204278272,18302910360610406400,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,9079539427562225664,144397762564194304,9079538323755630592,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,9079539423267258368,144396663052566528,9079538323755630592,1009088895331139841,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,1009088895314296832,432628143027650560,1009087791507701760,432627039204278272,432628138715906048,2162010395626176512,432627039204278272,2162009296114548736,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143027716096,18302911464417001472,432627039204278272,18302910360610406400,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895314296832,432628143027650560,1009087791507701760,432627039204278272,432628143027716352,1009088895314296832,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,2162010399937986817,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,18302911460122034176,432628143027650560,18302910360610406400,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,4467853404839870464,432628138715906048,4467852305328242688,432627039204278272,432628143027716096,1009088895314296832,432627039204278272,1009087791507701760,2162010399921143808,144397766875938816,2162009296114548736,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,2162010395626176512,144396663052566528,2162009296114548736,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,9079539427562225664,432627039204278272,9079538323755630592,2162010399937986560,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,4467853404839870464,432627039204278272,4467852305328242688,18302911460122034176,432628143027650560,18302910360610406400,432627039204278272,432628143027716352,2162010399921143808,432627039204278272,2162009296114548736,4467853404839870464,432628138715906048,4467852305328242688,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,2162010399921143808,144397766875938816,2162009296114548736,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,2162010395626176512,144396663052566528,2162009296114548736,1009088895331139841,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,9079539427562225664,432627039204278272,9079538323755630592,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143010873344,4467853404839870464,432627039204278272,4467852305328242688,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143027716096,2162010399921143808,432627039204278272,2162009296114548736,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143027716352,1009088895314296832,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,4467853409151680769,432628138715906048,4467852305328242688,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,2162010395626176512,432628143027650560,2162009296114548736,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,2162010395626176512,432628138715906048,2162009296114548736,432627039204278272,432628143027716096,1009088895314296832,432627039204278272,1009087791507701760,4467853409134837760,144397766875938816,4467852305328242688,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,4467853404839870464,144396663052566528,4467852305328242688,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,4467853409151680512,432628138715906048,4467852305328242688,432627039204278272,432628143010873344,2162010395626176512,432627039204278272,2162009296114548736,2162010395626176512,432628143027650560,2162009296114548736,432627039204278272,432628143027716352,4467853409134837760,432627039204278272,4467852305328242688,2162010395626176512,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,4467853409134837760,144397766875938816,4467852305328242688,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,4467853404839870464,144396663052566528,4467852305328242688,1009088895331139841,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143010873344,2162010395626176512,432627039204278272,2162009296114548736,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143027716096,4467853409134837760,432627039204278272,4467852305328242688,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143027716352,1009088895314296832,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,2162010399937986817,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,4467853404839870464,432628143027650560,4467852305328242688,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,18302911464433844480,432628138715906048,18302910360610406400,432627039204278272,432628143027716096,1009088895314296832,432627039204278272,1009087791507701760,2162010399921143808,144397766875938816,2162009296114548736,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,2162010395626176512,144396663052566528,2162009296114548736,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,4467853409134837760,432627039204278272,4467852305328242688,2162010399937986560,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,9079539423267258368,432627039204278272,9079538323755630592,4467853404839870464,432628143027650560,4467852305328242688,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,18302911464433844224,432628138715906048,18302910360610406400,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,2162010399921143808,144397766875938816,2162009296114548736,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,2162010395626176512,144396663052566528,2162009296114548736,1009088895331139841,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,4467853409134837760,432627039204278272,4467852305328242688,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143010873344,9079539423267258368,432627039204278272,9079538323755630592,1009088895331139840,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,144397762564194304,432627039204278272,144396663052566528,1009088895314296832,144397766875938816,1009087791507701760,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628143027650560,144396663052566528,432627039204278272,144397766859161600,1009088891019329536,144396663052566528,1009087791507701760,9079539427579068673,432628138715906048,9079538323755630592,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,2162010395626176512,432628143027650560,2162009296114548736,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,2162010399937986816,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,18302911460122034176,144397766875938816,18302910360610406400,144396663052566528,432628138715906048,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,18302911464433778688,144396663052566528,18302910360610406400,144397762564194304,432628143027650560,144396663052566528,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,9079539427579068416,432628138715906048,9079538323755630592,432627039204278272,432628143010873344,2162010395626176512,432627039204278272,2162009296114548736,2162010395626176512,432628143027650560,2162009296114548736,432627039204278272,432628138715906048,9079539427562225664,432627039204278272,9079538323755630592,2162010399937986560,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,18302911460122034176,144397766875938816,18302910360610406400,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,18302911464433778688,144396663052566528,18302910360610406400,1009088895331139841,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143010873344,2162010395626176512,432627039204278272,2162009296114548736,1009088895331139840,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,9079539427562225664,432627039204278272,9079538323755630592,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,2162010399937986817,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,9079539423267258368,432628143027650560,9079538323755630592,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,4467853409151680768,432628138715906048,4467852305328242688,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,2162010395626176512,144397766875938816,2162009296114548736,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,2162010399937921024,144396663052566528,2162009296114548736,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,18302911460122034176,432627039204278272,18302910360610406400,2162010399937986560,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,4467853404839870464,432627039204278272,4467852305328242688,9079539423267258368,432628143027650560,9079538323755630592,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,4467853409151680512,432628138715906048,4467852305328242688,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,2162010395626176512,144397766875938816,2162009296114548736,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,2162010399937921024,144396663052566528,2162009296114548736,1009088895331139841,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,18302911460122034176,432627039204278272,18302910360610406400,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143010873344,4467853404839870464,432627039204278272,4467852305328242688,1009088895331139840,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895331139584,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,4467853409151680769,432628143010873344,4467852305328242688,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,2162010395626176512,432628143027650560,2162009296114548736,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,2162010399937986816,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,4467853404839870464,144397766875938816,4467852305328242688,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,4467853409151614976,144396663052566528,4467852305328242688,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,2162010395626176512,432627039204278272,2162009296114548736,4467853409151680512,432628143010873344,4467852305328242688,432627039204278272,432628143010873344,2162010395626176512,432627039204278272,2162009296114548736,2162010395626176512,432628143027650560,2162009296114548736,432627039204278272,432628138715906048,4467853409134837760,432627039204278272,4467852305328242688,2162010399937986560,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,4467853404839870464,144397766875938816,4467852305328242688,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,4467853409151614976,144396663052566528,4467852305328242688,1009088895331139841,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,2162010395626176512,432627039204278272,2162009296114548736,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628143010873344,2162010395626176512,432627039204278272,2162009296114548736,1009088895331139840,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,4467853409134837760,432627039204278272,4467852305328242688,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895331139584,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143027650560,1009087791507701760,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,2162010399937986817,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,4467853404839870464,432628143027650560,4467852305328242688,432627039204278272,432628143010873344,1009088891019329536,432627039204278272,1009087791507701760,9079539427579068672,432628138715906048,9079538323755630592,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,2162010395626176512,144397766875938816,2162009296114548736,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,2162010399937921024,144396663052566528,2162009296114548736,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,4467853404839870464,432627039204278272,4467852305328242688,2162010399937986560,432628143010873344,2162009296114548736,432627039204278272,432628143010873344,18302911464433778688,432627039204278272,18302910360610406400,4467853404839870464,432628143027650560,4467852305328242688,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,9079539427579068416,432628138715906048,9079538323755630592,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,2162010395626176512,144397766875938816,2162009296114548736,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,2162010399937921024,144396663052566528,2162009296114548736,1009088895331139841,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,4467853404839870464,432627039204278272,4467852305328242688,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,18302911464433778688,432627039204278272,18302910360610406400,1009088895331139840,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399921143808,432627039204278272,2162009296114548736,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895331139584,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,1009088895331074048,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,1009088895331139584,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,144397762564194304,432627039204278272,144396663052566528,1009088891019329536,144397766875938816,1009087791507701760,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397762564194304,432628138715906048,144396663052566528,432627039204278272,144397766859161600,1009088895331074048,144396663052566528,1009087791507701760,18302911460122034176,432628143010873344,18302910360610406400,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,2162010395626176512,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,1009088895331074048,432627039204278272,1009087791507701760,2162010399937986816,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895314296832,432627039204278272,1009087791507701760,9079539423267258368,144397766875938816,9079538323755630592,144396663052566528,432628143010873344,144397762564194304,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,9079539427579002880,144396663052566528,9079538323755630592,144397762564194304,432628138715906048,144396663052566528,432627039204278272,432628143027716353,2162010395626176512,432627039204278272,2162009296114548736,18302911460122034176,432628143010873344,18302910360610406400,432627039204278272,432628143010873344,2162010399937921024,432627039204278272,2162009296114548736,2162010395626176512,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,18302911460122034176,432627039204278272,18302910360610406400,2162010399937986560,432628138715906048,2162009296114548736,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,9079539423267258368,144397766875938816,9079538323755630592,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,9079539427579002880,144396663052566528,9079538323755630592,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,2162010395626176512,432627039204278272,2162009296114548736,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143010873344,2162010399937921024,432627039204278272,2162009296114548736,1009088895331139840,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,18302911460122034176,432627039204278272,18302910360610406400,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,1009088895331074048,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895331139584,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,18302911464417001472,432628138715906048,18302910360610406400,432627039204278272,432628143010873344,1009088895331074048,432627039204278272,1009087791507701760,4467853409151680768,432628143010873344,4467852305328242688,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,2162010395626176512,144397762564194304,2162009296114548736,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,2162010399937921024,144396663052566528,2162009296114548736,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,9079539423267258368,432627039204278272,9079538323755630592,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,4467853409151614976,432627039204278272,4467852305328242688,18302911464417001472,432628138715906048,18302910360610406400,432627039204278272,432628138715906048,2162010395626176512,432627039204278272,2162009296114548736,4467853409151680512,432628143010873344,4467852305328242688,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,2162010395626176512,144397762564194304,2162009296114548736,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,2162010399937921024,144396663052566528,2162009296114548736,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,9079539423267258368,432627039204278272,9079538323755630592,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,4467853409151614976,432627039204278272,4467852305328242688,1009088895331139840,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,2162010395626176512,432627039204278272,2162009296114548736,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895331139584,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,4467853404839870464,432628143010873344,4467852305328242688,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,2162010399921143808,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,2162010399937986816,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,4467853404839870464,144397762564194304,4467852305328242688,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,4467853409151614976,144396663052566528,4467852305328242688,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,2162010395626176512,432627039204278272,2162009296114548736,4467853404839870464,432628143010873344,4467852305328242688,432627039204278272,432628138715906048,2162010399937921024,432627039204278272,2162009296114548736,2162010399921143808,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,4467853404839870464,432627039204278272,4467852305328242688,2162010399937986560,432628143010873344,2162009296114548736,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,4467853404839870464,144397762564194304,4467852305328242688,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,4467853409151614976,144396663052566528,4467852305328242688,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,2162010395626176512,432627039204278272,2162009296114548736,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399937921024,432627039204278272,2162009296114548736,1009088895331139840,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,4467853404839870464,432627039204278272,4467852305328242688,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895331139584,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,4467853409134837760,432628138715906048,4467852305328242688,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,18302911460122034176,432628143010873344,18302910360610406400,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,2162010395626176512,144397762564194304,2162009296114548736,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,2162010399937921024,144396663052566528,2162009296114548736,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,4467853404839870464,432627039204278272,4467852305328242688,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,9079539427579002880,432627039204278272,9079538323755630592,4467853409134837760,432628138715906048,4467852305328242688,432627039204278272,432628143027716352,2162010395626176512,432627039204278272,2162009296114548736,18302911460122034176,432628143010873344,18302910360610406400,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,2162010395626176512,144397762564194304,2162009296114548736,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,2162010399937921024,144396663052566528,2162009296114548736,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,4467853404839870464,432627039204278272,4467852305328242688,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,9079539427579002880,432627039204278272,9079538323755630592,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,2162010395626176512,432627039204278272,2162009296114548736,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397766876004609,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628143027716352,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143010873344,144397766875938816,432627039204278272,144396663052566528,1009088891019329536,144397762564194304,1009087791507701760,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628138715906048,144396663052566528,432627039204278272,144397762564194304,1009088895331074048,144396663052566528,1009087791507701760,9079539423267258368,432628143010873344,9079538323755630592,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,2162010399921143808,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,18302911464417001472,144397762564194304,18302910360610406400,144396663052566528,432628143010873344,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,18302911460122034176,144396663052566528,18302910360610406400,144397766859161600,432628138715906048,144396663052566528,432627039204278272,432628143027716353,2162010395626176512,432627039204278272,2162009296114548736,9079539423267258368,432628143010873344,9079538323755630592,432627039204278272,432628138715906048,2162010399937921024,432627039204278272,2162009296114548736,2162010399921143808,432628138715906048,2162009296114548736,432627039204278272,432628143027716352,9079539423267258368,432627039204278272,9079538323755630592,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,18302911464417001472,144397762564194304,18302910360610406400,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,18302911460122034176,144396663052566528,18302910360610406400,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,2162010395626176512,432627039204278272,2162009296114548736,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399937921024,432627039204278272,2162009296114548736,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,9079539423267258368,432627039204278272,9079538323755630592,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628143027716352,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,9079539427562225664,432628138715906048,9079538323755630592,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,4467853404839870464,432628143010873344,4467852305328242688,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,2162010399921143808,144397762564194304,2162009296114548736,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,2162010395626176512,144396663052566528,2162009296114548736,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,18302911464417001472,432627039204278272,18302910360610406400,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,4467853409151614976,432627039204278272,4467852305328242688,9079539427562225664,432628138715906048,9079538323755630592,432627039204278272,432628143027716352,2162010395626176512,432627039204278272,2162009296114548736,4467853404839870464,432628143010873344,4467852305328242688,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,2162010399921143808,144397762564194304,2162009296114548736,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,2162010395626176512,144396663052566528,2162009296114548736,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143027716096,18302911464417001472,432627039204278272,18302910360610406400,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,4467853409151614976,432627039204278272,4467852305328242688,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,2162010395626176512,432627039204278272,2162009296114548736,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,1009088895314296832,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628143027716352,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,4467853404839870464,432628138715906048,4467852305328242688,432627039204278272,432628143027716096,1009088895314296832,432627039204278272,1009087791507701760,2162010399921143808,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,4467853409134837760,144397762564194304,4467852305328242688,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,4467853404839870464,144396663052566528,4467852305328242688,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,2162010399921143808,432627039204278272,2162009296114548736,4467853404839870464,432628138715906048,4467852305328242688,432627039204278272,432628138715906048,2162010399937921024,432627039204278272,2162009296114548736,2162010399921143808,432628138715906048,2162009296114548736,432627039204278272,432628143027716352,4467853404839870464,432627039204278272,4467852305328242688,2162010395626176512,432628143010873344,2162009296114548736,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,4467853409134837760,144397762564194304,4467852305328242688,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,4467853404839870464,144396663052566528,4467852305328242688,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143027716096,2162010399921143808,432627039204278272,2162009296114548736,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,2162010399937921024,432627039204278272,2162009296114548736,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,4467853404839870464,432627039204278272,4467852305328242688,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766876004608,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,1009088895314296832,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,1009088895314296832,432628138715906048,1009087791507701760,432627039204278272,432628143027716352,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397766876004352,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,2162010395626176512,432628138715906048,2162009296114548736,432627039204278272,432628143027716096,1009088895314296832,432627039204278272,1009087791507701760,4467853409134837760,432628138715906048,4467852305328242688,432627039204278272,432628138715906048,1009088895331074048,432627039204278272,1009087791507701760,9079539423267258368,432628143010873344,9079538323755630592,432627039204278272,432628143027716096,1009088891019329536,432627039204278272,1009087791507701760,2162010399921143808,144397762564194304,2162009296114548736,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397762564194304,144396663052566528,144396663052566528,144397762564194304,2162010395626176512,144396663052566528,2162009296114548736,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,4467853409134837760,432627039204278272,4467852305328242688,2162010395626176512,432628138715906048,2162009296114548736,432627039204278272,432628138715906048,18302911460122034176,432627039204278272,18302910360610406400,4467853409134837760,432628138715906048,4467852305328242688,432627039204278272,432628143027716352,2162010395626176512,432627039204278272,2162009296114548736,9079539423267258368,432628143010873344,9079538323755630592,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,2162010399921143808,144397762564194304,2162009296114548736,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,2162010395626176512,144396663052566528,2162009296114548736,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628143027716096,4467853409134837760,432627039204278272,4467852305328242688,1009088895314296832,432628143027650560,1009087791507701760,432627039204278272,432628138715906048,18302911460122034176,432627039204278272,18302910360610406400,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628143027716096,2162010395626176512,432627039204278272,2162009296114548736,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,432628138715906048,144397766875938816,432627039204278272,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766876004352,144397762564194304,144396663052566528,144396663052566528,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,144397766859161600,432628143027650560,144396663052566528,432627039204278272,432628143027716353,1009088895314296832,432627039204278272,1009087791507701760,1009088891019329536,432628138715906048,1009087791507701760,432627039204278272,432628138715906048,1009088891019329536,432627039204278272,1009087791507701760,1009088895314296832,432628143027650560,1009087791507701760,432627039204278272,432628143027716352,1009088891019329536,432627039204278272,1009087791507701760,1009088891019329536,432628143010873344,1009087791507701760,432627039204278272,432628138715906048,144397766875938816,432627039204278272,144396663052566528,1009088895314296832,144397762564194304,1009087791507701760,144396663052566528,144397766876004609,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397762564194304,144397766875938816,144396663052566528,144396663052566528,144397766859161600,144397762564194304,144396663052566528,144396663052566528,144397766876004608,144397762564194304,144396663052566528,144396663052566528,144397762564194304,144397766859161600,144396663052566528,144396663052566528,144397766859161600,432628143027650560,144396663052566528,432627039204278272,144397762564194304,1009088891019329536,144396663052566528,1009087791507701760,0],[18231136449196065282,18231136449195933696,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136449196064768,18231136449195933696,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136449196065280,18231136449195933696,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136449196064768,18231136449195933696,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,2090235384700207618,2090235384700076032,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384700207616,2090235384700076032,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,4396078393913901570,4396078393913769984,360850920143060992,360850920143060992,18231136449162379264,18231136449162379264,360850920143060992,360850920143060992,4396078393913901056,4396078393913769984,360850920143060992,360850920143060992,18231136449162379264,18231136449162379264,360850920143060992,360850920143060992,4396078393913901568,4396078393913769984,360850920143060992,360850920143060992,18231136449162379264,18231136449162379264,360850920143060992,360850920143060992,4396078393913901056,4396078393913769984,360850920143060992,360850920143060992,18231136449162379264,18231136449162379264,360850920143060992,360850920143060992,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,18231134241549189120,18231134241549189120,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,2090235384700207618,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207616,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,9007764412341289474,9007764412341157888,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,9007764412341288960,9007764412341157888,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,9007764412341289472,9007764412341157888,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,9007764412341288960,9007764412341157888,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,2090235384700207618,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207616,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,4396078393913901570,4396078393913769984,360850920143060992,360850920143060992,9007764412307603456,9007764412307603456,360850920143060992,360850920143060992,4396078393913901056,4396078393913769984,360850920143060992,360850920143060992,9007764412307603456,9007764412307603456,360850920143060992,360850920143060992,4396078393913901568,4396078393913769984,360850920143060992,360850920143060992,9007764412307603456,9007764412307603456,360850920143060992,360850920143060992,4396078393913901056,4396078393913769984,360850920143060992,360850920143060992,9007764412307603456,9007764412307603456,360850920143060992,360850920143060992,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,9007762204694413312,9007762204694413312,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,2090235384700207618,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207616,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235384700207104,2090235384700076032,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,937313880093360642,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360640,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313880093360128,937313880093229056,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078393880215552,4396078393880215552,360850920143060992,360850920143060992,360853127789937154,360853127789805568,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853127789936640,360853127789805568,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853127789937152,360853127789805568,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,360853127789936640,360853127789805568,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,4396076186267025408,4396076186267025408,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235384666521600,2090235384666521600,360850920143060992,360850920143060992,360853127789937154,360853127789805568,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127789937152,360853127789805568,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313880059674624,937313880059674624,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853119166316544,360853119166316544,937311672446484480,937311672446484480,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,360850920143060992,360850920143060992,360853127789937154,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,18231134241549189120,18231134241549189120,360853127789936640,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,18231134241549189120,18231134241549189120,360853127789937152,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,18231134241549189120,18231134241549189120,360853127789936640,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,18231134241549189120,18231134241549189120,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,360853127789937154,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789937152,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,360853127789937154,360853127789805568,9007762204694413312,9007762204694413312,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,360853127789936640,360853127789805568,9007762204694413312,9007762204694413312,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,360853127789937152,360853127789805568,9007762204694413312,9007762204694413312,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,360853127789936640,360853127789805568,9007762204694413312,9007762204694413312,360853127756251136,360853127756251136,4396076186267025408,4396076186267025408,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,360853127789937154,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789937152,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,360850920143060992,360850920143060992,360853127789937154,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,9007762204694413312,9007762204694413312,360853127789936640,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,9007762204694413312,9007762204694413312,360853127789937152,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,9007762204694413312,9007762204694413312,360853127789936640,360853127789805568,4396076186267025408,4396076186267025408,360853127756251136,360853127756251136,9007762204694413312,9007762204694413312,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,360850920143060992,360850920143060992,360853127789937154,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789937152,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,360853127789936640,360853127789805568,2090233177053331456,2090233177053331456,360853127756251136,360853127756251136,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,937313871469740032,937313871469740032,360850920143060992,360850920143060992,360853127789937154,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789937152,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,360853127789936640,360853127789805568,937311672446484480,937311672446484480,360853127756251136,360853127756251136,937311672446484480,937311672446484480,0],[18087586418720506884,18087586418720506880,18087586418653134848,18087586418653134848,721706255579873280,721706255579873280,721706255512502272,721706255512502272,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,721706238332633088,721706238332633088,721706238332633088,721706238332633088,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,8792156787827803140,8792156787827803136,8792156787760431104,8792156787760431104,793763849617539072,793763849617539072,793763849550430208,793763849550430208,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,793763832370561024,793763832370561024,793763832370561024,793763832370561024,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8864214381865467904,8864214381865467904,8864214381798359040,8864214381798359040,721706255579611136,721706255579611136,721706255512502272,721706255512502272,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,721706238332633088,721706238332633088,721706238332633088,721706238332633088,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,18015528824682315776,18015528824682315776,18015528824615206912,18015528824615206912,1946685354224648192,1946685354224648192,1946685354157277184,1946685354157277184,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617802244,793763849617802240,793763849550430208,793763849550430208,1874627760186720256,1874627760186720256,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579874308,721706255579874304,721706255512502272,721706255512502272,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224649220,1946685354224649216,1946685354157277184,1946685354157277184,721706255579873280,721706255579873280,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186721284,1874627760186721280,1874627760119349248,1874627760119349248,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721706255579611136,721706255579611136,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,18087586418720505856,18087586418720505856,18087586418653134848,18087586418653134848,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,793763849617802244,793763849617802240,793763849550430208,793763849550430208,8792156787827802112,8792156787827802112,8792156787760431104,8792156787760431104,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,793763832370561024,793763832370561024,793763832370561024,793763832370561024,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,721706255579874308,721706255579874304,721706255512502272,721706255512502272,8864214381865467904,8864214381865467904,8864214381798359040,8864214381798359040,721701840286121984,721701840286121984,721701840286121984,721701840286121984,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,721706238332633088,721706238332633088,721706238332633088,721706238332633088,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,793763849617539072,793763849617539072,793763849550430208,793763849550430208,18015528824682315776,18015528824682315776,18015528824615206912,18015528824615206912,793759434324049920,793759434324049920,793759434324049920,793759434324049920,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,793763832370561024,793763832370561024,793763832370561024,793763832370561024,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4252528363438343172,4252528363438343168,4252528363370971136,4252528363370971136,721706255579873280,721706255579873280,721706255512502272,721706255512502272,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,18087586401473265664,18087586401473265664,18087586401473265664,18087586401473265664,721706238332633088,721706238332633088,721706238332633088,721706238332633088,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4180470769400415236,4180470769400415232,4180470769333043200,4180470769333043200,793763849617539072,793763849617539072,793763849550430208,793763849550430208,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8792156770580561920,8792156770580561920,8792156770580561920,8792156770580561920,793763832370561024,793763832370561024,793763832370561024,793763832370561024,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4252528363438080000,4252528363438080000,4252528363370971136,4252528363370971136,721706255579611136,721706255579611136,721706255512502272,721706255512502272,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,8864214364618489856,8864214364618489856,8864214364618489856,8864214364618489856,721706238332633088,721706238332633088,721706238332633088,721706238332633088,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4180470769400152064,4180470769400152064,4180470769333043200,4180470769333043200,1946685354224648192,1946685354224648192,1946685354157277184,1946685354157277184,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,18015528807435337728,18015528807435337728,18015528807435337728,18015528807435337728,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617802244,793763849617802240,793763849550430208,793763849550430208,1874627760186720256,1874627760186720256,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579874308,721706255579874304,721706255512502272,721706255512502272,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224649220,1946685354224649216,1946685354157277184,1946685354157277184,721706255579873280,721706255579873280,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186721284,1874627760186721280,1874627760119349248,1874627760119349248,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721706255579611136,721706255579611136,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,4252528363438342144,4252528363438342144,4252528363370971136,4252528363370971136,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,18087586401473265664,18087586401473265664,18087586401473265664,18087586401473265664,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,793763849617802244,793763849617802240,793763849550430208,793763849550430208,4180470769400414208,4180470769400414208,4180470769333043200,4180470769333043200,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793763832370561024,793763832370561024,793763832370561024,793763832370561024,8792156770580561920,8792156770580561920,8792156770580561920,8792156770580561920,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,721706255579874308,721706255579874304,721706255512502272,721706255512502272,4252528363438080000,4252528363438080000,4252528363370971136,4252528363370971136,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721706238332633088,721706238332633088,721706238332633088,721706238332633088,8864214364618489856,8864214364618489856,8864214364618489856,8864214364618489856,721701840286121984,721701840286121984,721701840286121984,721701840286121984,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,793763849617539072,793763849617539072,793763849550430208,793763849550430208,4180470769400152064,4180470769400152064,4180470769333043200,4180470769333043200,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793763832370561024,793763832370561024,793763832370561024,793763832370561024,18015528807435337728,18015528807435337728,18015528807435337728,18015528807435337728,793759434324049920,793759434324049920,793759434324049920,793759434324049920,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8864214381865731076,8864214381865731072,8864214381798359040,8864214381798359040,721706255579873280,721706255579873280,721706255512502272,721706255512502272,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,721706238332633088,721706238332633088,721706238332633088,721706238332633088,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,18015528824682578948,18015528824682578944,18015528824615206912,18015528824615206912,793763849617539072,793763849617539072,793763849550430208,793763849550430208,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,793763832370561024,793763832370561024,793763832370561024,793763832370561024,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793759434324049920,793759434324049920,793759434324049920,793759434324049920,18087586418720243712,18087586418720243712,18087586418653134848,18087586418653134848,721706255579611136,721706255579611136,721706255512502272,721706255512502272,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,721706238332633088,721706238332633088,721706238332633088,721706238332633088,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,8792156787827539968,8792156787827539968,8792156787760431104,8792156787760431104,1946685354224648192,1946685354224648192,1946685354157277184,1946685354157277184,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617802244,793763849617802240,793763849550430208,793763849550430208,1874627760186720256,1874627760186720256,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579874308,721706255579874304,721706255512502272,721706255512502272,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224649220,1946685354224649216,1946685354157277184,1946685354157277184,721706255579873280,721706255579873280,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186721284,1874627760186721280,1874627760119349248,1874627760119349248,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721706255579611136,721706255579611136,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,8864214381865730048,8864214381865730048,8864214381798359040,8864214381798359040,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,793763849617802244,793763849617802240,793763849550430208,793763849550430208,18015528824682577920,18015528824682577920,18015528824615206912,18015528824615206912,793759434324049920,793759434324049920,793759434324049920,793759434324049920,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,793763832370561024,793763832370561024,793763832370561024,793763832370561024,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,721706255579874308,721706255579874304,721706255512502272,721706255512502272,18087586418720243712,18087586418720243712,18087586418653134848,18087586418653134848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,721706238332633088,721706238332633088,721706238332633088,721706238332633088,4252528346191101952,4252528346191101952,4252528346191101952,4252528346191101952,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,793763849617539072,793763849617539072,793763849550430208,793763849550430208,8792156787827539968,8792156787827539968,8792156787760431104,8792156787760431104,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,793763832370561024,793763832370561024,793763832370561024,793763832370561024,4180470752153174016,4180470752153174016,4180470752153174016,4180470752153174016,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4252528363438343172,4252528363438343168,4252528363370971136,4252528363370971136,721706255579873280,721706255579873280,721706255512502272,721706255512502272,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,8864214364618489856,8864214364618489856,8864214364618489856,8864214364618489856,721706238332633088,721706238332633088,721706238332633088,721706238332633088,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4180470769400415236,4180470769400415232,4180470769333043200,4180470769333043200,793763849617539072,793763849617539072,793763849550430208,793763849550430208,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793759434324049920,793759434324049920,793759434324049920,793759434324049920,18015528807435337728,18015528807435337728,18015528807435337728,18015528807435337728,793763832370561024,793763832370561024,793763832370561024,793763832370561024,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4252528363438080000,4252528363438080000,4252528363370971136,4252528363370971136,721706255579611136,721706255579611136,721706255512502272,721706255512502272,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721701840286121984,721701840286121984,721701840286121984,721701840286121984,18087586401473265664,18087586401473265664,18087586401473265664,18087586401473265664,721706238332633088,721706238332633088,721706238332633088,721706238332633088,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4180470769400152064,4180470769400152064,4180470769333043200,4180470769333043200,1946685354224648192,1946685354224648192,1946685354157277184,1946685354157277184,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,8792156770580561920,8792156770580561920,8792156770580561920,8792156770580561920,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617802244,793763849617802240,793763849550430208,793763849550430208,1874627760186720256,1874627760186720256,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579874308,721706255579874304,721706255512502272,721706255512502272,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224649220,1946685354224649216,1946685354157277184,1946685354157277184,721706255579873280,721706255579873280,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186721284,1874627760186721280,1874627760119349248,1874627760119349248,793763849617539072,793763849617539072,793763849550430208,793763849550430208,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,793763832370561024,793763832370561024,793763832370561024,793763832370561024,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,793759434324049920,793759434324049920,793759434324049920,793759434324049920,1946685354224386048,1946685354224386048,1946685354157277184,1946685354157277184,721706255579611136,721706255579611136,721706255512502272,721706255512502272,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1946685336977408000,1946685336977408000,1946685336977408000,1946685336977408000,721706238332633088,721706238332633088,721706238332633088,721706238332633088,1946680938930896896,1946680938930896896,1946680938930896896,1946680938930896896,721701840286121984,721701840286121984,721701840286121984,721701840286121984,1874627760186458112,1874627760186458112,1874627760119349248,1874627760119349248,4252528363438342144,4252528363438342144,4252528363370971136,4252528363370971136,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,1874627742939480064,1874627742939480064,1874627742939480064,1874627742939480064,8864214364618489856,8864214364618489856,8864214364618489856,8864214364618489856,1874623344892968960,1874623344892968960,1874623344892968960,1874623344892968960,8864209966571978752,8864209966571978752,8864209966571978752,8864209966571978752,793763849617802244,793763849617802240,793763849550430208,793763849550430208,4180470769400414208,4180470769400414208,4180470769333043200,4180470769333043200,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793763832370561024,793763832370561024,793763832370561024,793763832370561024,18015528807435337728,18015528807435337728,18015528807435337728,18015528807435337728,793759434324049920,793759434324049920,793759434324049920,793759434324049920,18015524409388826624,18015524409388826624,18015524409388826624,18015524409388826624,721706255579874308,721706255579874304,721706255512502272,721706255512502272,4252528363438080000,4252528363438080000,4252528363370971136,4252528363370971136,721701840286121984,721701840286121984,721701840286121984,721701840286121984,4252523948144590848,4252523948144590848,4252523948144590848,4252523948144590848,721706238332633088,721706238332633088,721706238332633088,721706238332633088,18087586401473265664,18087586401473265664,18087586401473265664,18087586401473265664,721701840286121984,721701840286121984,721701840286121984,721701840286121984,18087582003426754560,18087582003426754560,18087582003426754560,18087582003426754560,793763849617539072,793763849617539072,793763849550430208,793763849550430208,4180470769400152064,4180470769400152064,4180470769333043200,4180470769333043200,793759434324049920,793759434324049920,793759434324049920,793759434324049920,4180466354106662912,4180466354106662912,4180466354106662912,4180466354106662912,793763832370561024,793763832370561024,793763832370561024,793763832370561024,8792156770580561920,8792156770580561920,8792156770580561920,8792156770580561920,793759434324049920,793759434324049920,793759434324049920,793759434324049920,8792152372534050816,8792152372534050816,8792152372534050816,8792152372534050816,721706255579611136,721706255579611136,721706255512502272,721706255512502272,793763849617801216,793763849617801216,793763849550430208,793763849550430208,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,721706238332633088,721706238332633088,721706238332633088,721706238332633088,793763832370561024,793763832370561024,793763832370561024,793763832370561024,721701840286121984,721701840286121984,721701840286121984,721701840286121984,793759434324049920,793759434324049920,793759434324049920,793759434324049920,0],[17800486357769390088,3749246689785937920,17800486323274907648,3749246689785937920,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,17800486357768863744,3749246689785937920,17800486323274907648,3749246689785937920,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1587527699235604480,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159748616,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,8360941538800830464,17584304745068101632,8360941504306348032,17584304745068101632,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,8360941538800304128,17584304745068101632,8360941504306348032,17584304745068101632,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,3965428302487226368,17584304745068101632,3965428267992743936,17584304745068101632,17728428763731460096,8577105490327109632,17728428729236979712,8577105490327109632,3965428302486700032,17584304745068101632,3965428267992743936,17584304745068101632,17728428763730935808,8577105490327109632,17728428729236979712,8577105490327109632,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3893370708449296384,3965419471899721728,3893370673954816000,3965419471899721728,17584313575655606280,8505047896289181696,17584313541161123840,8505047896289181696,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,17584313575655079936,8505047896289181696,17584313541161123840,8505047896289181696,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,1443412511159748608,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273532416,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235604488,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3749255520373442560,3893361877861793792,3749255485878960128,3893361877861793792,17584313575655604224,8360932708213325824,17584313541161123840,8360932708213325824,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,17584313575655079936,8360932708213325824,17584313541161123840,8360932708213325824,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302487224320,8360932708213325824,3965428267992743936,8360932708213325824,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302486700032,8360932708213325824,3965428267992743936,8360932708213325824,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,3749255520373440512,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,17800486357769390080,3749246689785937920,17800486323274907648,3749246689785937920,3893370708449298440,3965419471899721728,3893370673954816000,3965419471899721728,17800486357768863744,3749246689785937920,17800486323274907648,3749246689785937920,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511159748608,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159748616,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273532424,1443403680572243968,1659585258779049984,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17728428763731460096,8577105490327109632,17728428729236979712,8577105490327109632,3749255520373440512,3893361877861793792,3749255485878960128,3893361877861793792,17728428763730935808,8577105490327109632,17728428729236979712,8577105490327109632,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17584313575655606272,8505047896289181696,17584313541161123840,8505047896289181696,3749255520373442568,3749246689785937920,3749255485878960128,3749246689785937920,17584313575655079936,8505047896289181696,17584313541161123840,8505047896289181696,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,8577114320914614280,3749246689785937920,8577114286420131840,3749246689785937920,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,8577114320914087936,3749246689785937920,8577114286420131840,3749246689785937920,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1587527699235604480,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159748616,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,17584313575655604224,8360932708213325824,17584313541161123840,8360932708213325824,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,17584313575655079936,8360932708213325824,17584313541161123840,8360932708213325824,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,3965428302487224320,8360932708213325824,3965428267992743936,8360932708213325824,8505056726876684288,17800477527181885440,8505056692382203904,17800477527181885440,3965428302486700032,8360932708213325824,3965428267992743936,8360932708213325824,8505056726876160000,17800477527181885440,8505056692382203904,17800477527181885440,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,1659585293273532424,1443403680572243968,1659585258779049984,1443403680572243968,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3893370708449298432,3965419471899721728,3893370673954816000,3965419471899721728,8360941538800830472,17728419933143957504,8360941504306348032,17728419933143957504,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,8360941538800304128,17728419933143957504,8360941504306348032,17728419933143957504,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,1443412511159748608,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273532416,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3749255520373440512,3893361877861793792,3749255485878960128,3893361877861793792,8360941538800828416,17584304745068101632,8360941504306348032,17584304745068101632,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,8360941538800304128,17584304745068101632,8360941504306348032,17584304745068101632,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302487224320,17584304745068101632,3965428267992743936,17584304745068101632,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302486700032,17584304745068101632,3965428267992743936,17584304745068101632,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159748616,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,3749255520373442560,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,8577114320914614272,3749246689785937920,8577114286420131840,3749246689785937920,3893370708449298440,3965419471899721728,3893370673954816000,3965419471899721728,8577114320914087936,3749246689785937920,8577114286420131840,3749246689785937920,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511159748608,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8505056726876684288,17800477527181885440,8505056692382203904,17800477527181885440,3749255520373440512,3893361877861793792,3749255485878960128,3893361877861793792,8505056726876160000,17800477527181885440,8505056692382203904,17800477527181885440,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273532416,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235604488,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8360941538800830464,17728419933143957504,8360941504306348032,17728419933143957504,3749255520373442568,3749246689785937920,3749255485878960128,3749246689785937920,8360941538800304128,17728419933143957504,8360941504306348032,17728419933143957504,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,17800486357769388032,3749246689785937920,17800486323274907648,3749246689785937920,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,17800486357768863744,3749246689785937920,17800486323274907648,3749246689785937920,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,8360941538800828416,17584304745068101632,8360941504306348032,17584304745068101632,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,8360941538800304128,17584304745068101632,8360941504306348032,17584304745068101632,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,3965428302487224320,17584304745068101632,3965428267992743936,17584304745068101632,17728428763731462152,8577105490327109632,17728428729236979712,8577105490327109632,3965428302486700032,17584304745068101632,3965428267992743936,17584304745068101632,17728428763730935808,8577105490327109632,17728428729236979712,8577105490327109632,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1443412511159748608,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159748616,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,1659585293273532424,1443403680572243968,1659585258779049984,1443403680572243968,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3893370708449298432,3965419471899721728,3893370673954816000,3965419471899721728,17584313575655604224,8505047896289181696,17584313541161123840,8505047896289181696,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,17584313575655079936,8505047896289181696,17584313541161123840,8505047896289181696,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3749255520373440512,3893361877861793792,3749255485878960128,3893361877861793792,17584313575655606280,8360932708213325824,17584313541161123840,8360932708213325824,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,17584313575655079936,8360932708213325824,17584313541161123840,8360932708213325824,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302487226376,8360932708213325824,3965428267992743936,8360932708213325824,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302486700032,8360932708213325824,3965428267992743936,8360932708213325824,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1587527699235604480,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159748616,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,3749255520373442560,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,17800486357769388032,3749246689785937920,17800486323274907648,3749246689785937920,3893370708449296384,3965419471899721728,3893370673954816000,3965419471899721728,17800486357768863744,3749246689785937920,17800486323274907648,3749246689785937920,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1587527699100860416,8577105490327109632,1587527664741122048,8577105490327109632,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17800486357634646016,3749246689785937920,17800486323274907648,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,17728428763731462144,8577105490327109632,17728428729236979712,8577105490327109632,3749255520373442568,3893361877861793792,3749255485878960128,3893361877861793792,17728428763730935808,8577105490327109632,17728428729236979712,8577105490327109632,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511025004544,8505047896289181696,1443412476665266176,8505047896289181696,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511159748608,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273532416,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235604488,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17728428763596718080,1659576462686027776,17728428729236979712,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,17584313575655604224,8505047896289181696,17584313541161123840,8505047896289181696,3749255520373440512,3749246689785937920,3749255485878960128,3749246689785937920,17584313575655079936,8505047896289181696,17584313541161123840,8505047896289181696,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,8577114320914612224,3749246689785937920,8577114286420131840,3749246689785937920,1443412511025004544,8360932708213325824,1443412476665266176,8360932708213325824,8577114320914087936,3749246689785937920,8577114286420131840,3749246689785937920,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,17584313575520862208,1587518868648099840,17584313541161123840,1587518868648099840,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,17584313575655606272,8360932708213325824,17584313541161123840,8360932708213325824,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,17584313575655079936,8360932708213325824,17584313541161123840,8360932708213325824,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,3965428302487226368,8360932708213325824,3965428267992743936,8360932708213325824,8505056726876686344,17800477527181885440,8505056692382203904,17800477527181885440,3965428302486700032,8360932708213325824,3965428267992743936,8360932708213325824,8505056726876160000,17800477527181885440,8505056692382203904,17800477527181885440,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1443412511159748608,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159748616,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,17584313575520862208,1443403680572243968,17584313541161123840,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3965428302352482304,8360932708213325824,3965428267992743936,8360932708213325824,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3893370708449296384,3965419471899721728,3893370673954816000,3965419471899721728,8360941538800828416,17728419933143957504,8360941504306348032,17728419933143957504,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,8360941538800304128,17728419933143957504,8360941504306348032,17728419933143957504,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,1443412511159746560,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235604488,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8360941538666086400,1587518868648099840,8360941504306348032,1587518868648099840,3749255520373442560,3893361877861793792,3749255485878960128,3893361877861793792,8360941538800830472,17584304745068101632,8360941504306348032,17584304745068101632,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,8360941538800304128,17584304745068101632,8360941504306348032,17584304745068101632,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302487226376,17584304745068101632,3965428267992743936,17584304745068101632,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,3965428302486700032,17584304745068101632,3965428267992743936,17584304745068101632,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1587527699100860416,3965419471899721728,1587527664741122048,3965419471899721728,1587527699235604480,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8360941538666086400,1443403680572243968,8360941504306348032,1443403680572243968,3749255520373440512,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,3965428302352482304,17584304745068101632,3965428267992743936,17584304745068101632,8577114320914612224,3749246689785937920,8577114286420131840,3749246689785937920,3893370708449296384,3965419471899721728,3893370673954816000,3965419471899721728,8577114320914087936,3749246689785937920,8577114286420131840,3749246689785937920,3893370708448772096,3965419471899721728,3893370673954816000,3965419471899721728,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1587527699100860416,17800477527181885440,1587527664741122048,17800477527181885440,1443412511025004544,3893361877861793792,1443412476665266176,3893361877861793792,1443412511159746560,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159748616,1443403680572243968,1443412476665266176,1443403680572243968,1443412511159222272,1587518868648099840,1443412476665266176,1587518868648099840,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273532424,1443403680572243968,1659585258779049984,1443403680572243968,3749255520238698496,1443403680572243968,3749255485878960128,1443403680572243968,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8577114320779870208,3749246689785937920,8577114286420131840,3749246689785937920,3893370708314554368,1659576462686027776,3893370673954816000,1659576462686027776,8505056726876686336,17800477527181885440,8505056692382203904,17800477527181885440,3749255520373442568,3893361877861793792,3749255485878960128,3893361877861793792,8505056726876160000,17800477527181885440,8505056692382203904,17800477527181885440,3749255520372916224,3893361877861793792,3749255485878960128,3893361877861793792,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511025004544,17728419933143957504,1443412476665266176,17728419933143957504,1443412511025004544,3749246689785937920,1443412476665266176,3749246689785937920,1443412511159748608,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1443412511159222272,1443403680572243968,1443412476665266176,1443403680572243968,1659585293138788352,1443403680572243968,1659585258779049984,1443403680572243968,1659585293273530368,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235602432,1659576462686027776,1587527664741122048,1659576462686027776,1659585293273006080,1443403680572243968,1659585258779049984,1443403680572243968,1587527699235078144,1659576462686027776,1587527664741122048,1659576462686027776,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8505056726741942272,1659576462686027776,8505056692382203904,1659576462686027776,3749255520238698496,1587518868648099840,3749255485878960128,1587518868648099840,8360941538800828416,17728419933143957504,8360941504306348032,17728419933143957504,3749255520373440512,3749246689785937920,3749255485878960128,3749246689785937920,8360941538800304128,17728419933143957504,8360941504306348032,17728419933143957504,3749255520372916224,3749246689785937920,3749255485878960128,3749246689785937920,1443412511025004544,17584304745068101632,1443412476665266176,17584304745068101632,0],[17226286235867156496,7498493379571875840,16721883008612696064,7498493379571875840,17226286235866103808,7498493379571875840,16721883008612696064,7498493379571875840,17226286235867152384,2886807361144487936,16721883008612696064,16721865416426651648,17226286235866103808,2886807361144487936,16721883008612696064,16721865416426651648,8002914198742892544,2886807361144487936,7498510971757920256,16721865416426651648,8002914198742892544,2886807361144487936,7498510971757920256,16721865416426651648,8002914198742892544,2886807361144487936,7498510971757920256,7498493379571875840,8002914198742892544,2886807361144487936,7498510971757920256,7498493379571875840,3319170586547064832,2886807361144487936,17226286166878191616,7498493379571875840,3319170586546012160,2886807361144487936,17226286166878191616,7498493379571875840,3319170586547060736,2886807361144487936,17226286166878191616,2886807361144487936,3319170586546012160,2886807361144487936,17226286166878191616,2886807361144487936,3319170586277576704,2886807361144487936,8002914130023415808,2886807361144487936,3319170586277576704,2886807361144487936,8002914130023415808,2886807361144487936,3319170586277576704,2886807361144487936,8002914130023415808,2886807361144487936,3319170586277576704,2886807361144487936,8002914130023415808,2886807361144487936,3175055398471208976,2886807361144487936,3319170517558099968,2886807361144487936,3175055398470156288,2886807361144487936,3319170517558099968,2886807361144487936,3175055398471204864,3391210519409983488,3319170517558099968,2886807361144487936,3175055398470156288,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,7786741416898596864,3391210519409983488,3175055329482244096,2886807361144487936,7786741416897544192,3391210519409983488,3175055329482244096,2886807361144487936,7786741416898592768,7930838943799443456,3175055329482244096,3391210519409983488,7786741416897544192,7930838943799443456,3175055329482244096,3391210519409983488,17010113453483884544,7930838943799443456,3175055329482244096,3391210519409983488,17010113453483884544,7930838943799443456,3175055329482244096,3391210519409983488,17010113453483884544,17154210980654219264,3175055329482244096,3391210519409983488,17010113453483884544,17154210980654219264,3175055329482244096,3391210519409983488,7498511040746885136,17154210980654219264,7786741347909632000,3391210519409983488,7498511040745832448,17154210980654219264,7786741347909632000,3391210519409983488,7498511040746881024,7786723755723587584,7786741347909632000,7930838943799443456,7498511040745832448,7786723755723587584,7786741347909632000,7930838943799443456,16721883077332172800,7786723755723587584,17010113384764407808,7930838943799443456,16721883077332172800,7786723755723587584,17010113384764407808,7930838943799443456,16721883077332172800,17010095792578363392,17010113384764407808,17154210980654219264,16721883077332172800,17010095792578363392,17010113384764407808,17154210980654219264,2886825022319497216,17010095792578363392,7498510971757920256,17154210980654219264,2886825022318444544,17010095792578363392,7498510971757920256,17154210980654219264,2886825022319493120,3175037737296199680,7498510971757920256,7786723755723587584,2886825022318444544,3175037737296199680,7498510971757920256,7786723755723587584,2886825022050009088,3175037737296199680,16721883008612696064,7786723755723587584,2886825022050009088,3175037737296199680,16721883008612696064,7786723755723587584,2886825022050009088,3175037737296199680,16721883008612696064,17010095792578363392,2886825022050009088,3175037737296199680,16721883008612696064,17010095792578363392,2886825022319497232,3175037737296199680,2886824953330532352,17010095792578363392,2886825022318444544,3175037737296199680,2886824953330532352,17010095792578363392,2886825022319493120,2886807361144487936,2886824953330532352,3175037737296199680,2886825022318444544,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,16721883077601660928,2886807361144487936,2886824953330532352,3175037737296199680,16721883077600608256,2886807361144487936,2886824953330532352,3175037737296199680,16721883077601656832,16721865416426651648,2886824953330532352,2886807361144487936,16721883077600608256,16721865416426651648,2886824953330532352,2886807361144487936,7498511040477396992,16721865416426651648,2886824953330532352,2886807361144487936,7498511040477396992,16721865416426651648,2886824953330532352,2886807361144487936,7498511040477396992,7498493379571875840,2886824953330532352,2886807361144487936,7498511040477396992,7498493379571875840,2886824953330532352,2886807361144487936,17226286235867156480,7498493379571875840,16721883008612696064,2886807361144487936,17226286235866103808,7498493379571875840,16721883008612696064,2886807361144487936,17226286235867152384,16721865416426651648,16721883008612696064,16721865416426651648,17226286235866103808,16721865416426651648,16721883008612696064,16721865416426651648,8002914198742892544,16721865416426651648,7498510971757920256,16721865416426651648,8002914198742892544,16721865416426651648,7498510971757920256,16721865416426651648,8002914198742892544,7498493379571875840,7498510971757920256,7498493379571875840,8002914198742892544,7498493379571875840,7498510971757920256,7498493379571875840,17154228641829228560,7498493379571875840,17226286166878191616,7498493379571875840,17154228641828175872,7498493379571875840,17226286166878191616,7498493379571875840,17154228641829224448,2886807361144487936,17226286166878191616,16721865416426651648,17154228641828175872,2886807361144487936,17226286166878191616,16721865416426651648,7930856604704964608,2886807361144487936,8002914130023415808,16721865416426651648,7930856604704964608,2886807361144487936,8002914130023415808,16721865416426651648,7930856604704964608,2886807361144487936,8002914130023415808,7498493379571875840,7930856604704964608,2886807361144487936,8002914130023415808,7498493379571875840,3175055398471208960,2886807361144487936,17154228572840263680,7498493379571875840,3175055398470156288,2886807361144487936,17154228572840263680,7498493379571875840,3175055398471204864,3391210519409983488,17154228572840263680,2886807361144487936,3175055398470156288,3391210519409983488,17154228572840263680,2886807361144487936,3175055398201720832,3391210519409983488,7930856535985487872,2886807361144487936,3175055398201720832,3391210519409983488,7930856535985487872,2886807361144487936,3175055398201720832,3391210519409983488,7930856535985487872,2886807361144487936,3175055398201720832,3391210519409983488,7930856535985487872,2886807361144487936,3175055398471208976,3391210519409983488,3175055329482244096,2886807361144487936,3175055398470156288,3391210519409983488,3175055329482244096,2886807361144487936,3175055398471204864,3319152925372055552,3175055329482244096,3391210519409983488,3175055398470156288,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,7498511040746885120,3319152925372055552,3175055329482244096,3391210519409983488,7498511040745832448,3319152925372055552,3175055329482244096,3391210519409983488,7498511040746881024,7786723755723587584,3175055329482244096,3319152925372055552,7498511040745832448,7786723755723587584,3175055329482244096,3319152925372055552,16721883077332172800,7786723755723587584,3175055329482244096,3319152925372055552,16721883077332172800,7786723755723587584,3175055329482244096,3319152925372055552,16721883077332172800,17010095792578363392,3175055329482244096,3319152925372055552,16721883077332172800,17010095792578363392,3175055329482244096,3319152925372055552,7498511040746885136,17010095792578363392,7498510971757920256,3319152925372055552,7498511040745832448,17010095792578363392,7498510971757920256,3319152925372055552,7498511040746881024,7786723755723587584,7498510971757920256,7786723755723587584,7498511040745832448,7786723755723587584,7498510971757920256,7786723755723587584,16721883077332172800,7786723755723587584,16721883008612696064,7786723755723587584,16721883077332172800,7786723755723587584,16721883008612696064,7786723755723587584,16721883077332172800,17010095792578363392,16721883008612696064,17010095792578363392,16721883077332172800,17010095792578363392,16721883008612696064,17010095792578363392,2886825022319497216,17010095792578363392,7498510971757920256,17010095792578363392,2886825022318444544,17010095792578363392,7498510971757920256,17010095792578363392,2886825022319493120,2886807361144487936,7498510971757920256,7786723755723587584,2886825022318444544,2886807361144487936,7498510971757920256,7786723755723587584,2886825022050009088,2886807361144487936,16721883008612696064,7786723755723587584,2886825022050009088,2886807361144487936,16721883008612696064,7786723755723587584,2886825022050009088,2886807361144487936,16721883008612696064,17010095792578363392,2886825022050009088,2886807361144487936,16721883008612696064,17010095792578363392,2886825022319497232,2886807361144487936,2886824953330532352,17010095792578363392,2886825022318444544,2886807361144487936,2886824953330532352,17010095792578363392,2886825022319493120,2886807361144487936,2886824953330532352,2886807361144487936,2886825022318444544,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,3391228180584992784,2886807361144487936,2886824953330532352,2886807361144487936,3391228180583940096,2886807361144487936,2886824953330532352,2886807361144487936,3391228180584988672,16721865416426651648,2886824953330532352,2886807361144487936,3391228180583940096,16721865416426651648,2886824953330532352,2886807361144487936,3391228180315504640,16721865416426651648,2886824953330532352,2886807361144487936,3391228180315504640,16721865416426651648,2886824953330532352,2886807361144487936,3391228180315504640,7498493379571875840,2886824953330532352,2886807361144487936,3391228180315504640,7498493379571875840,2886824953330532352,2886807361144487936,17154228641829228544,7498493379571875840,3391228111596027904,2886807361144487936,17154228641828175872,7498493379571875840,3391228111596027904,2886807361144487936,17154228641829224448,16721865416426651648,3391228111596027904,16721865416426651648,17154228641828175872,16721865416426651648,3391228111596027904,16721865416426651648,7930856604704964608,16721865416426651648,3391228111596027904,16721865416426651648,7930856604704964608,16721865416426651648,3391228111596027904,16721865416426651648,7930856604704964608,7498493379571875840,3391228111596027904,7498493379571875840,7930856604704964608,7498493379571875840,3391228111596027904,7498493379571875840,17010113453753372688,7498493379571875840,17154228572840263680,7498493379571875840,17010113453752320000,7498493379571875840,17154228572840263680,7498493379571875840,17010113453753368576,17226268574692147200,17154228572840263680,16721865416426651648,17010113453752320000,17226268574692147200,17154228572840263680,16721865416426651648,7786741416629108736,17226268574692147200,7930856535985487872,16721865416426651648,7786741416629108736,17226268574692147200,7930856535985487872,16721865416426651648,7786741416629108736,8002896537837371392,7930856535985487872,7498493379571875840,7786741416629108736,8002896537837371392,7930856535985487872,7498493379571875840,3175055398471208960,8002896537837371392,17010113384764407808,7498493379571875840,3175055398470156288,8002896537837371392,17010113384764407808,7498493379571875840,3175055398471204864,3319152925372055552,17010113384764407808,17226268574692147200,3175055398470156288,3319152925372055552,17010113384764407808,17226268574692147200,3175055398201720832,3319152925372055552,7786741347909632000,17226268574692147200,3175055398201720832,3319152925372055552,7786741347909632000,17226268574692147200,3175055398201720832,3319152925372055552,7786741347909632000,8002896537837371392,3175055398201720832,3319152925372055552,7786741347909632000,8002896537837371392,2886825022319497232,3319152925372055552,3175055329482244096,8002896537837371392,2886825022318444544,3319152925372055552,3175055329482244096,8002896537837371392,2886825022319493120,3175037737296199680,3175055329482244096,3319152925372055552,2886825022318444544,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,7498511040746885120,3175037737296199680,2886824953330532352,3319152925372055552,7498511040745832448,3175037737296199680,2886824953330532352,3319152925372055552,7498511040746881024,7786723755723587584,2886824953330532352,3175037737296199680,7498511040745832448,7786723755723587584,2886824953330532352,3175037737296199680,16721883077332172800,7786723755723587584,2886824953330532352,3175037737296199680,16721883077332172800,7786723755723587584,2886824953330532352,3175037737296199680,16721883077332172800,17010095792578363392,2886824953330532352,3175037737296199680,16721883077332172800,17010095792578363392,2886824953330532352,3175037737296199680,7498511040746885136,17010095792578363392,7498510971757920256,3175037737296199680,7498511040745832448,17010095792578363392,7498510971757920256,3175037737296199680,7498511040746881024,7498493379571875840,7498510971757920256,7786723755723587584,7498511040745832448,7498493379571875840,7498510971757920256,7786723755723587584,16721883077332172800,7498493379571875840,16721883008612696064,7786723755723587584,16721883077332172800,7498493379571875840,16721883008612696064,7786723755723587584,16721883077332172800,16721865416426651648,16721883008612696064,17010095792578363392,16721883077332172800,16721865416426651648,16721883008612696064,17010095792578363392,2886825022319497216,16721865416426651648,7498510971757920256,17010095792578363392,2886825022318444544,16721865416426651648,7498510971757920256,17010095792578363392,2886825022319493120,2886807361144487936,7498510971757920256,7498493379571875840,2886825022318444544,2886807361144487936,7498510971757920256,7498493379571875840,2886825022050009088,2886807361144487936,16721883008612696064,7498493379571875840,2886825022050009088,2886807361144487936,16721883008612696064,7498493379571875840,2886825022050009088,2886807361144487936,16721883008612696064,16721865416426651648,2886825022050009088,2886807361144487936,16721883008612696064,16721865416426651648,3391228180584992768,2886807361144487936,2886824953330532352,16721865416426651648,3391228180583940096,2886807361144487936,2886824953330532352,16721865416426651648,3391228180584988672,2886807361144487936,2886824953330532352,2886807361144487936,3391228180583940096,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3319170586547064848,2886807361144487936,3391228111596027904,2886807361144487936,3319170586546012160,2886807361144487936,3391228111596027904,2886807361144487936,3319170586547060736,16721865416426651648,3391228111596027904,2886807361144487936,3319170586546012160,16721865416426651648,3391228111596027904,2886807361144487936,3319170586277576704,16721865416426651648,3391228111596027904,2886807361144487936,3319170586277576704,16721865416426651648,3391228111596027904,2886807361144487936,3319170586277576704,7498493379571875840,3391228111596027904,2886807361144487936,3319170586277576704,7498493379571875840,3391228111596027904,2886807361144487936,17010113453753372672,7498493379571875840,3319170517558099968,2886807361144487936,17010113453752320000,7498493379571875840,3319170517558099968,2886807361144487936,17010113453753368576,17226268574692147200,3319170517558099968,16721865416426651648,17010113453752320000,17226268574692147200,3319170517558099968,16721865416426651648,7786741416629108736,17226268574692147200,3319170517558099968,16721865416426651648,7786741416629108736,17226268574692147200,3319170517558099968,16721865416426651648,7786741416629108736,8002896537837371392,3319170517558099968,7498493379571875840,7786741416629108736,8002896537837371392,3319170517558099968,7498493379571875840,17010113453753372688,8002896537837371392,17010113384764407808,7498493379571875840,17010113453752320000,8002896537837371392,17010113384764407808,7498493379571875840,17010113453753368576,17154210980654219264,17010113384764407808,17226268574692147200,17010113453752320000,17154210980654219264,17010113384764407808,17226268574692147200,7786741416629108736,17154210980654219264,7786741347909632000,17226268574692147200,7786741416629108736,17154210980654219264,7786741347909632000,17226268574692147200,7786741416629108736,7930838943799443456,7786741347909632000,8002896537837371392,7786741416629108736,7930838943799443456,7786741347909632000,8002896537837371392,2886825022319497216,7930838943799443456,17010113384764407808,8002896537837371392,2886825022318444544,7930838943799443456,17010113384764407808,8002896537837371392,2886825022319493120,3175037737296199680,17010113384764407808,17154210980654219264,2886825022318444544,3175037737296199680,17010113384764407808,17154210980654219264,2886825022050009088,3175037737296199680,7786741347909632000,17154210980654219264,2886825022050009088,3175037737296199680,7786741347909632000,17154210980654219264,2886825022050009088,3175037737296199680,7786741347909632000,7930838943799443456,2886825022050009088,3175037737296199680,7786741347909632000,7930838943799443456,2886825022319497232,3175037737296199680,2886824953330532352,7930838943799443456,2886825022318444544,3175037737296199680,2886824953330532352,7930838943799443456,2886825022319493120,3175037737296199680,2886824953330532352,3175037737296199680,2886825022318444544,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,7498511040746885120,3175037737296199680,2886824953330532352,3175037737296199680,7498511040745832448,3175037737296199680,2886824953330532352,3175037737296199680,7498511040746881024,7498493379571875840,2886824953330532352,3175037737296199680,7498511040745832448,7498493379571875840,2886824953330532352,3175037737296199680,16721883077332172800,7498493379571875840,2886824953330532352,3175037737296199680,16721883077332172800,7498493379571875840,2886824953330532352,3175037737296199680,16721883077332172800,16721865416426651648,2886824953330532352,3175037737296199680,16721883077332172800,16721865416426651648,2886824953330532352,3175037737296199680,7498511040746885136,16721865416426651648,7498510971757920256,3175037737296199680,7498511040745832448,16721865416426651648,7498510971757920256,3175037737296199680,7498511040746881024,7498493379571875840,7498510971757920256,7498493379571875840,7498511040745832448,7498493379571875840,7498510971757920256,7498493379571875840,16721883077332172800,7498493379571875840,16721883008612696064,7498493379571875840,16721883077332172800,7498493379571875840,16721883008612696064,7498493379571875840,16721883077332172800,16721865416426651648,16721883008612696064,16721865416426651648,16721883077332172800,16721865416426651648,16721883008612696064,16721865416426651648,8002914199012380688,16721865416426651648,7498510971757920256,16721865416426651648,8002914199011328000,16721865416426651648,7498510971757920256,16721865416426651648,8002914199012376576,2886807361144487936,7498510971757920256,7498493379571875840,8002914199011328000,2886807361144487936,7498510971757920256,7498493379571875840,17226286235597668352,2886807361144487936,16721883008612696064,7498493379571875840,17226286235597668352,2886807361144487936,16721883008612696064,7498493379571875840,17226286235597668352,2886807361144487936,16721883008612696064,16721865416426651648,17226286235597668352,2886807361144487936,16721883008612696064,16721865416426651648,3319170586547064832,2886807361144487936,8002914130023415808,16721865416426651648,3319170586546012160,2886807361144487936,8002914130023415808,16721865416426651648,3319170586547060736,2886807361144487936,8002914130023415808,2886807361144487936,3319170586546012160,2886807361144487936,8002914130023415808,2886807361144487936,3319170586277576704,2886807361144487936,17226286166878191616,2886807361144487936,3319170586277576704,2886807361144487936,17226286166878191616,2886807361144487936,3319170586277576704,2886807361144487936,17226286166878191616,2886807361144487936,3319170586277576704,2886807361144487936,17226286166878191616,2886807361144487936,3175055398471208976,2886807361144487936,3319170517558099968,2886807361144487936,3175055398470156288,2886807361144487936,3319170517558099968,2886807361144487936,3175055398471204864,3391210519409983488,3319170517558099968,2886807361144487936,3175055398470156288,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,3175055398201720832,3391210519409983488,3319170517558099968,2886807361144487936,17010113453753372672,3391210519409983488,3175055329482244096,2886807361144487936,17010113453752320000,3391210519409983488,3175055329482244096,2886807361144487936,17010113453753368576,17154210980654219264,3175055329482244096,3391210519409983488,17010113453752320000,17154210980654219264,3175055329482244096,3391210519409983488,7786741416629108736,17154210980654219264,3175055329482244096,3391210519409983488,7786741416629108736,17154210980654219264,3175055329482244096,3391210519409983488,7786741416629108736,7930838943799443456,3175055329482244096,3391210519409983488,7786741416629108736,7930838943799443456,3175055329482244096,3391210519409983488,16721883077601660944,7930838943799443456,17010113384764407808,3391210519409983488,16721883077600608256,7930838943799443456,17010113384764407808,3391210519409983488,16721883077601656832,17010095792578363392,17010113384764407808,17154210980654219264,16721883077600608256,17010095792578363392,17010113384764407808,17154210980654219264,7498511040477396992,17010095792578363392,7786741347909632000,17154210980654219264,7498511040477396992,17010095792578363392,7786741347909632000,17154210980654219264,7498511040477396992,7786723755723587584,7786741347909632000,7930838943799443456,7498511040477396992,7786723755723587584,7786741347909632000,7930838943799443456,2886825022319497216,7786723755723587584,16721883008612696064,7930838943799443456,2886825022318444544,7786723755723587584,16721883008612696064,7930838943799443456,2886825022319493120,3175037737296199680,16721883008612696064,17010095792578363392,2886825022318444544,3175037737296199680,16721883008612696064,17010095792578363392,2886825022050009088,3175037737296199680,7498510971757920256,17010095792578363392,2886825022050009088,3175037737296199680,7498510971757920256,17010095792578363392,2886825022050009088,3175037737296199680,7498510971757920256,7786723755723587584,2886825022050009088,3175037737296199680,7498510971757920256,7786723755723587584,2886825022319497232,3175037737296199680,2886824953330532352,7786723755723587584,2886825022318444544,3175037737296199680,2886824953330532352,7786723755723587584,2886825022319493120,2886807361144487936,2886824953330532352,3175037737296199680,2886825022318444544,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,2886825022050009088,2886807361144487936,2886824953330532352,3175037737296199680,7498511040746885120,2886807361144487936,2886824953330532352,3175037737296199680,7498511040745832448,2886807361144487936,2886824953330532352,3175037737296199680,7498511040746881024,7498493379571875840,2886824953330532352,2886807361144487936,7498511040745832448,7498493379571875840,2886824953330532352,2886807361144487936,16721883077332172800,7498493379571875840,2886824953330532352,2886807361144487936,16721883077332172800,7498493379571875840,2886824953330532352,2886807361144487936,16721883077332172800,16721865416426651648,2886824953330532352,2886807361144487936,16721883077332172800,16721865416426651648,2886824953330532352,2886807361144487936,8002914199012380672,16721865416426651648,7498510971757920256,2886807361144487936,8002914199011328000,16721865416426651648,7498510971757920256,2886807361144487936,8002914199012376576,7498493379571875840,7498510971757920256,7498493379571875840,8002914199011328000,7498493379571875840,7498510971757920256,7498493379571875840,17226286235597668352,7498493379571875840,16721883008612696064,7498493379571875840,17226286235597668352,7498493379571875840,16721883008612696064,7498493379571875840,17226286235597668352,16721865416426651648,16721883008612696064,16721865416426651648,17226286235597668352,16721865416426651648,16721883008612696064,16721865416426651648,7930856604974452752,16721865416426651648,8002914130023415808,16721865416426651648,7930856604973400064,16721865416426651648,8002914130023415808,16721865416426651648,7930856604974448640,2886807361144487936,8002914130023415808,7498493379571875840,7930856604973400064,2886807361144487936,8002914130023415808,7498493379571875840,17154228641559740416,2886807361144487936,17226286166878191616,7498493379571875840,17154228641559740416,2886807361144487936,17226286166878191616,7498493379571875840,17154228641559740416,2886807361144487936,17226286166878191616,16721865416426651648,17154228641559740416,2886807361144487936,17226286166878191616,16721865416426651648,3175055398471208960,2886807361144487936,7930856535985487872,16721865416426651648,3175055398470156288,2886807361144487936,7930856535985487872,16721865416426651648,3175055398471204864,3391210519409983488,7930856535985487872,2886807361144487936,3175055398470156288,3391210519409983488,7930856535985487872,2886807361144487936,3175055398201720832,3391210519409983488,17154228572840263680,2886807361144487936,3175055398201720832,3391210519409983488,17154228572840263680,2886807361144487936,3175055398201720832,3391210519409983488,17154228572840263680,2886807361144487936,3175055398201720832,3391210519409983488,17154228572840263680,2886807361144487936,3175055398471208976,3391210519409983488,3175055329482244096,2886807361144487936,3175055398470156288,3391210519409983488,3175055329482244096,2886807361144487936,3175055398471204864,3319152925372055552,3175055329482244096,3391210519409983488,3175055398470156288,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,3175055398201720832,3319152925372055552,3175055329482244096,3391210519409983488,16721883077601660928,3319152925372055552,3175055329482244096,3391210519409983488,16721883077600608256,3319152925372055552,3175055329482244096,3391210519409983488,16721883077601656832,17010095792578363392,3175055329482244096,3319152925372055552,16721883077600608256,17010095792578363392,3175055329482244096,3319152925372055552,7498511040477396992,17010095792578363392,3175055329482244096,3319152925372055552,7498511040477396992,17010095792578363392,3175055329482244096,3319152925372055552,7498511040477396992,7786723755723587584,3175055329482244096,3319152925372055552,7498511040477396992,7786723755723587584,3175055329482244096,3319152925372055552,16721883077601660944,7786723755723587584,16721883008612696064,3319152925372055552,16721883077600608256,7786723755723587584,16721883008612696064,3319152925372055552,16721883077601656832,17010095792578363392,16721883008612696064,17010095792578363392,16721883077600608256,17010095792578363392,16721883008612696064,17010095792578363392,7498511040477396992,17010095792578363392,7498510971757920256,17010095792578363392,7498511040477396992,17010095792578363392,7498510971757920256,17010095792578363392,7498511040477396992,7786723755723587584,7498510971757920256,7786723755723587584,7498511040477396992,7786723755723587584,7498510971757920256,7786723755723587584,2886825022319497216,7786723755723587584,16721883008612696064,7786723755723587584,2886825022318444544,7786723755723587584,16721883008612696064,7786723755723587584,2886825022319493120,2886807361144487936,16721883008612696064,17010095792578363392,2886825022318444544,2886807361144487936,16721883008612696064,17010095792578363392,2886825022050009088,2886807361144487936,7498510971757920256,17010095792578363392,2886825022050009088,2886807361144487936,7498510971757920256,17010095792578363392,2886825022050009088,2886807361144487936,7498510971757920256,7786723755723587584,2886825022050009088,2886807361144487936,7498510971757920256,7786723755723587584,2886825022319497232,2886807361144487936,2886824953330532352,7786723755723587584,2886825022318444544,2886807361144487936,2886824953330532352,7786723755723587584,2886825022319493120,2886807361144487936,2886824953330532352,2886807361144487936,2886825022318444544,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,2886825022050009088,2886807361144487936,2886824953330532352,2886807361144487936,3391228180584992784,2886807361144487936,2886824953330532352,2886807361144487936,3391228180583940096,2886807361144487936,2886824953330532352,2886807361144487936,3391228180584988672,7498493379571875840,2886824953330532352,2886807361144487936,3391228180583940096,7498493379571875840,2886824953330532352,2886807361144487936,3391228180315504640,7498493379571875840,2886824953330532352,2886807361144487936,3391228180315504640,7498493379571875840,2886824953330532352,2886807361144487936,3391228180315504640,16721865416426651648,2886824953330532352,2886807361144487936,3391228180315504640,16721865416426651648,2886824953330532352,2886807361144487936,7930856604974452736,16721865416426651648,3391228111596027904,2886807361144487936,7930856604973400064,16721865416426651648,3391228111596027904,2886807361144487936,7930856604974448640,7498493379571875840,3391228111596027904,7498493379571875840,7930856604973400064,7498493379571875840,3391228111596027904,7498493379571875840,17154228641559740416,7498493379571875840,3391228111596027904,7498493379571875840,17154228641559740416,7498493379571875840,3391228111596027904,7498493379571875840,17154228641559740416,16721865416426651648,3391228111596027904,16721865416426651648,17154228641559740416,16721865416426651648,3391228111596027904,16721865416426651648,7786741416898596880,16721865416426651648,7930856535985487872,16721865416426651648,7786741416897544192,16721865416426651648,7930856535985487872,16721865416426651648,7786741416898592768,8002896537837371392,7930856535985487872,7498493379571875840,7786741416897544192,8002896537837371392,7930856535985487872,7498493379571875840,17010113453483884544,8002896537837371392,17154228572840263680,7498493379571875840,17010113453483884544,8002896537837371392,17154228572840263680,7498493379571875840,17010113453483884544,17226268574692147200,17154228572840263680,16721865416426651648,17010113453483884544,17226268574692147200,17154228572840263680,16721865416426651648,3175055398471208960,17226268574692147200,7786741347909632000,16721865416426651648,3175055398470156288,17226268574692147200,7786741347909632000,16721865416426651648,3175055398471204864,3319152925372055552,7786741347909632000,8002896537837371392,3175055398470156288,3319152925372055552,7786741347909632000,8002896537837371392,3175055398201720832,3319152925372055552,17010113384764407808,8002896537837371392,3175055398201720832,3319152925372055552,17010113384764407808,8002896537837371392,3175055398201720832,3319152925372055552,17010113384764407808,17226268574692147200,3175055398201720832,3319152925372055552,17010113384764407808,17226268574692147200,2886825022319497232,3319152925372055552,3175055329482244096,17226268574692147200,2886825022318444544,3319152925372055552,3175055329482244096,17226268574692147200,2886825022319493120,3175037737296199680,3175055329482244096,3319152925372055552,2886825022318444544,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,2886825022050009088,3175037737296199680,3175055329482244096,3319152925372055552,16721883077601660928,3175037737296199680,2886824953330532352,3319152925372055552,16721883077600608256,3175037737296199680,2886824953330532352,3319152925372055552,16721883077601656832,17010095792578363392,2886824953330532352,3175037737296199680,16721883077600608256,17010095792578363392,2886824953330532352,3175037737296199680,7498511040477396992,17010095792578363392,2886824953330532352,3175037737296199680,7498511040477396992,17010095792578363392,2886824953330532352,3175037737296199680,7498511040477396992,7786723755723587584,2886824953330532352,3175037737296199680,7498511040477396992,7786723755723587584,2886824953330532352,3175037737296199680,16721883077601660944,7786723755723587584,16721883008612696064,3175037737296199680,16721883077600608256,7786723755723587584,16721883008612696064,3175037737296199680,16721883077601656832,16721865416426651648,16721883008612696064,17010095792578363392,16721883077600608256,16721865416426651648,16721883008612696064,17010095792578363392,7498511040477396992,16721865416426651648,7498510971757920256,17010095792578363392,7498511040477396992,16721865416426651648,7498510971757920256,17010095792578363392,7498511040477396992,7498493379571875840,7498510971757920256,7786723755723587584,7498511040477396992,7498493379571875840,7498510971757920256,7786723755723587584,2886825022319497216,7498493379571875840,16721883008612696064,7786723755723587584,2886825022318444544,7498493379571875840,16721883008612696064,7786723755723587584,2886825022319493120,2886807361144487936,16721883008612696064,16721865416426651648,2886825022318444544,2886807361144487936,16721883008612696064,16721865416426651648,2886825022050009088,2886807361144487936,7498510971757920256,16721865416426651648,2886825022050009088,2886807361144487936,7498510971757920256,16721865416426651648,2886825022050009088,2886807361144487936,7498510971757920256,7498493379571875840,2886825022050009088,2886807361144487936,7498510971757920256,7498493379571875840,3391228180584992768,2886807361144487936,2886824953330532352,7498493379571875840,3391228180583940096,2886807361144487936,2886824953330532352,7498493379571875840,3391228180584988672,2886807361144487936,2886824953330532352,2886807361144487936,3391228180583940096,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3391228180315504640,2886807361144487936,2886824953330532352,2886807361144487936,3319170586547064848,2886807361144487936,3391228111596027904,2886807361144487936,3319170586546012160,2886807361144487936,3391228111596027904,2886807361144487936,3319170586547060736,7498493379571875840,3391228111596027904,2886807361144487936,3319170586546012160,7498493379571875840,3391228111596027904,2886807361144487936,3319170586277576704,7498493379571875840,3391228111596027904,2886807361144487936,3319170586277576704,7498493379571875840,3391228111596027904,2886807361144487936,3319170586277576704,16721865416426651648,3391228111596027904,2886807361144487936,3319170586277576704,16721865416426651648,3391228111596027904,2886807361144487936,7786741416898596864,16721865416426651648,3319170517558099968,2886807361144487936,7786741416897544192,16721865416426651648,3319170517558099968,2886807361144487936,7786741416898592768,8002896537837371392,3319170517558099968,7498493379571875840,7786741416897544192,8002896537837371392,3319170517558099968,7498493379571875840,17010113453483884544,8002896537837371392,3319170517558099968,7498493379571875840,17010113453483884544,8002896537837371392,3319170517558099968,7498493379571875840,17010113453483884544,17226268574692147200,3319170517558099968,16721865416426651648,17010113453483884544,17226268574692147200,3319170517558099968,16721865416426651648,7786741416898596880,17226268574692147200,7786741347909632000,16721865416426651648,7786741416897544192,17226268574692147200,7786741347909632000,16721865416426651648,7786741416898592768,7930838943799443456,7786741347909632000,8002896537837371392,7786741416897544192,7930838943799443456,7786741347909632000,8002896537837371392,17010113453483884544,7930838943799443456,17010113384764407808,8002896537837371392,17010113453483884544,7930838943799443456,17010113384764407808,8002896537837371392,17010113453483884544,17154210980654219264,17010113384764407808,17226268574692147200,17010113453483884544,17154210980654219264,17010113384764407808,17226268574692147200,2886825022319497216,17154210980654219264,7786741347909632000,17226268574692147200,2886825022318444544,17154210980654219264,7786741347909632000,17226268574692147200,2886825022319493120,3175037737296199680,7786741347909632000,7930838943799443456,2886825022318444544,3175037737296199680,7786741347909632000,7930838943799443456,2886825022050009088,3175037737296199680,17010113384764407808,7930838943799443456,2886825022050009088,3175037737296199680,17010113384764407808,7930838943799443456,2886825022050009088,3175037737296199680,17010113384764407808,17154210980654219264,2886825022050009088,3175037737296199680,17010113384764407808,17154210980654219264,2886825022319497232,3175037737296199680,2886824953330532352,17154210980654219264,2886825022318444544,3175037737296199680,2886824953330532352,17154210980654219264,2886825022319493120,3175037737296199680,2886824953330532352,3175037737296199680,2886825022318444544,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,2886825022050009088,3175037737296199680,2886824953330532352,3175037737296199680,16721883077601660928,3175037737296199680,2886824953330532352,3175037737296199680,16721883077600608256,3175037737296199680,2886824953330532352,3175037737296199680,16721883077601656832,16721865416426651648,2886824953330532352,3175037737296199680,16721883077600608256,16721865416426651648,2886824953330532352,3175037737296199680,7498511040477396992,16721865416426651648,2886824953330532352,3175037737296199680,7498511040477396992,16721865416426651648,2886824953330532352,3175037737296199680,7498511040477396992,7498493379571875840,2886824953330532352,3175037737296199680,7498511040477396992,7498493379571875840,2886824953330532352,3175037737296199680,16721883077601660944,7498493379571875840,16721883008612696064,3175037737296199680,16721883077600608256,7498493379571875840,16721883008612696064,3175037737296199680,16721883077601656832,16721865416426651648,16721883008612696064,16721865416426651648,16721883077600608256,16721865416426651648,16721883008612696064,16721865416426651648,7498511040477396992,16721865416426651648,7498510971757920256,16721865416426651648,7498511040477396992,16721865416426651648,7498510971757920256,16721865416426651648,7498511040477396992,7498493379571875840,7498510971757920256,7498493379571875840,7498511040477396992,7498493379571875840,7498510971757920256,7498493379571875840,0],[16077885992062689312,15573447511447175168,16077885992062681088,15573447511447175168,16077885991523713024,16077850669712670720,16077885991523713024,16077850669712670720,15861713071970975744,16077850669712670720,15861713071970975744,16077850669712670720,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,14997021943515840512,15861677887598886912,14997021943515840512,15861677887598886912,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,6854513817229983744,14996986759143751680,6854513817229983744,14996986759143751680,6854513817229983744,6854478632857894912,6854513817229983744,6854478632857894912,14997021943515840512,6854478632857894912,14997021943515840512,6854478632857894912,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,5773650044636889088,14996986759143751680,5773650044636889088,14996986759143751680,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,5773650044636889088,6350075474592399360,5773650044636889088,6350075474592399360,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,15573482695819264000,6350075474592399360,15573482695819264000,6350075474592399360,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,16005828398024761376,15573447511447175168,16005828398024753152,15573447511447175168,16005828397485785088,16005793075674742784,16005828397485785088,16005793075674742784,15573482695819264000,16005793075674742784,15573482695819264000,16005793075674742784,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,6782456223192055808,14996986759143751680,6782456223192055808,14996986759143751680,6782456223192055808,6782421038819966976,6782456223192055808,6782421038819966976,14997021943515840512,6782421038819966976,14997021943515840512,6782421038819966976,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,5773650044636889088,14996986759143751680,5773650044636889088,14996986759143751680,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044636889088,5773614722288975872,5773650044636889088,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15861713209948905504,14996986759143751680,15861713209948897280,14996986759143751680,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,15573482695819264000,15861677887598886912,15573482695819264000,15861677887598886912,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,6638341035116199936,14996986759143751680,6638341035116199936,14996986759143751680,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,14997021943515840512,6638305850744111104,14997021943515840512,6638305850744111104,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,5773650044636889088,14996986759143751680,5773650044636889088,14996986759143751680,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044636889088,5773614722288975872,5773650044636889088,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15861713209948905504,14996986759143751680,15861713209948897280,14996986759143751680,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,15573482695819264000,15861677887598886912,15573482695819264000,15861677887598886912,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,16077885992062689280,15573447511447175168,16077885992062681088,15573447511447175168,16077885991523713024,16077850669712670720,16077885991523713024,16077850669712670720,6638341035116199936,16077850669712670720,6638341035116199936,16077850669712670720,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,14997021943515840512,6638305850744111104,14997021943515840512,6638305850744111104,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,6854513817229983744,14996986759143751680,6854513817229983744,14996986759143751680,6854513817229983744,6854478632857894912,6854513817229983744,6854478632857894912,5773649906661064704,6854478632857894912,5773649906661064704,6854478632857894912,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044636889088,5773614722288975872,5773650044636889088,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193760,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,16005828398024761344,15573447511447175168,16005828398024753152,15573447511447175168,16005828397485785088,16005793075674742784,16005828397485785088,16005793075674742784,6350110658964488192,16005793075674742784,6350110658964488192,16005793075674742784,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,6782456223192055808,14996986759143751680,6782456223192055808,14996986759143751680,6782456223192055808,6782421038819966976,6782456223192055808,6782421038819966976,5773649906661064704,6782421038819966976,5773649906661064704,6782421038819966976,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044636889088,5773614722288975872,5773650044636889088,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193760,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15861713209948905472,14996986759143751680,15861713209948897280,14996986759143751680,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,6350110658964488192,15861677887598886912,6350110658964488192,15861677887598886912,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,6350075474592399360,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,6638341035116199936,14996986759143751680,6638341035116199936,14996986759143751680,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,5773649906661064704,6638305850744111104,5773649906661064704,6638305850744111104,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044636889088,5773614722288975872,5773650044636889088,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193760,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15861713209948905472,14996986759143751680,15861713209948897280,14996986759143751680,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,6350110658964488192,15861677887598886912,6350110658964488192,15861677887598886912,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6854513955207913504,6350075474592399360,6854513955207905280,6350075474592399360,6854513954668937216,6854478632857894912,6854513954668937216,6854478632857894912,6638341035116199936,6854478632857894912,6638341035116199936,6854478632857894912,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,5773649906661064704,6638305850744111104,5773649906661064704,6638305850744111104,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,16077885992060583936,5773614722288975872,16077885992060583936,5773614722288975872,16077885991523713024,16077850669712670720,16077885991523713024,16077850669712670720,5773649906661064704,16077850669712670720,5773649906661064704,16077850669712670720,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193760,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,15573447511447175168,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193728,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,6350110658964488192,15573447511447175168,6350110658964488192,15573447511447175168,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6782456361169985568,6350075474592399360,6782456361169977344,6350075474592399360,6782456360631009280,6782421038819966976,6782456360631009280,6782421038819966976,6350110658964488192,6782421038819966976,6350110658964488192,6782421038819966976,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,16005828398022656000,5773614722288975872,16005828398022656000,5773614722288975872,16005828397485785088,16005793075674742784,16005828397485785088,16005793075674742784,5773649906661064704,16005793075674742784,5773649906661064704,16005793075674742784,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081493770272,14996986759143751680,14997022081493762048,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193728,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6638341173094129696,5773614722288975872,6638341173094121472,5773614722288975872,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,6350110658964488192,6638305850744111104,6350110658964488192,6638305850744111104,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,15861713209946800128,5773614722288975872,15861713209946800128,5773614722288975872,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,5773649906661064704,15861677887598886912,5773649906661064704,15861677887598886912,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,5773614722288975872,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081493770272,14996986759143751680,14997022081493762048,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193728,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6638341173094129696,5773614722288975872,6638341173094121472,5773614722288975872,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,6350110658964488192,6638305850744111104,6350110658964488192,6638305850744111104,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6854513955207913472,6350075474592399360,6854513955207905280,6350075474592399360,6854513954668937216,6854478632857894912,6854513954668937216,6854478632857894912,15861713209946800128,6854478632857894912,15861713209946800128,6854478632857894912,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,5773649906661064704,15861677887598886912,5773649906661064704,15861677887598886912,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,16077885992060583936,5773614722288975872,16077885992060583936,5773614722288975872,16077885991523713024,16077850669712670720,16077885991523713024,16077850669712670720,14997022081493770272,16077850669712670720,14997022081493762048,16077850669712670720,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,15573482833797193728,14996986759143751680,15573482833797185536,14996986759143751680,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417952,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6782456361169985536,6350075474592399360,6782456361169977344,6350075474592399360,6782456360631009280,6782421038819966976,6782456360631009280,6782421038819966976,15573482833795088384,6782421038819966976,15573482833795088384,6782421038819966976,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,16005828398022656000,5773614722288975872,16005828398022656000,5773614722288975872,16005828397485785088,16005793075674742784,16005828397485785088,16005793075674742784,14997022081493770272,16005793075674742784,14997022081493762048,16005793075674742784,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081493770240,14996986759143751680,14997022081493762048,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417952,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6638341173094129664,5773614722288975872,6638341173094121472,5773614722288975872,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,15573482833795088384,6638305850744111104,15573482833795088384,6638305850744111104,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,15573447511447175168,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,15861713209946800128,5773614722288975872,15861713209946800128,5773614722288975872,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,14997022081493770272,15861677887598886912,14997022081493762048,15861677887598886912,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081493770240,14996986759143751680,14997022081493762048,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417952,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6638341173094129664,5773614722288975872,6638341173094121472,5773614722288975872,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,15573482833795088384,6638305850744111104,15573482833795088384,6638305850744111104,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,16077885854084759552,15573447511447175168,16077885854084759552,15573447511447175168,16077885854084759552,16077850669712670720,16077885854084759552,16077850669712670720,15861713209946800128,16077850669712670720,15861713209946800128,16077850669712670720,15861713209409929216,15861677887598886912,15861713209409929216,15861677887598886912,14997022081493770272,15861677887598886912,14997022081493762048,15861677887598886912,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,6854513955205808128,14996986759143751680,6854513955205808128,14996986759143751680,6854513954668937216,6854478632857894912,6854513954668937216,6854478632857894912,14997022081493770240,6854478632857894912,14997022081493762048,6854478632857894912,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417952,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,6350075474592399360,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417920,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,15573482833795088384,6350075474592399360,15573482833795088384,6350075474592399360,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,16005828260046831616,15573447511447175168,16005828260046831616,15573447511447175168,16005828260046831616,16005793075674742784,16005828260046831616,16005793075674742784,15573482833795088384,16005793075674742784,15573482833795088384,16005793075674742784,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,14997022081493770272,15573447511447175168,14997022081493762048,15573447511447175168,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,6782456361167880192,14996986759143751680,6782456361167880192,14996986759143751680,6782456360631009280,6782421038819966976,6782456360631009280,6782421038819966976,14997022081493770240,6782421038819966976,14997022081493762048,6782421038819966976,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044638994464,5773614722288975872,5773650044638986240,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417920,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,14997022081491664896,6350075474592399360,14997022081491664896,6350075474592399360,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,15573482833795088384,15861677887598886912,15573482833795088384,15861677887598886912,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,14997022081493770272,15573447511447175168,14997022081493762048,15573447511447175168,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,6638341173092024320,14996986759143751680,6638341173092024320,14996986759143751680,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,14997022081493770240,6638305850744111104,14997022081493762048,6638305850744111104,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,14996986759143751680,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044638994464,5773614722288975872,5773650044638986240,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417920,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,14997022081491664896,6350075474592399360,14997022081491664896,6350075474592399360,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,15573482833795088384,15861677887598886912,15573482833795088384,15861677887598886912,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,16077885854084759552,15573447511447175168,16077885854084759552,15573447511447175168,16077885854084759552,16077850669712670720,16077885854084759552,16077850669712670720,6638341173092024320,16077850669712670720,6638341173092024320,16077850669712670720,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,14997022081493770240,6638305850744111104,14997022081493762048,6638305850744111104,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,6854513955205808128,14996986759143751680,6854513955205808128,14996986759143751680,6854513954668937216,6854478632857894912,6854513954668937216,6854478632857894912,5773650044638994464,6854478632857894912,5773650044638986240,6854478632857894912,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,6350110796942417920,5773614722288975872,6350110796942409728,5773614722288975872,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,14997022081491664896,6350075474592399360,14997022081491664896,6350075474592399360,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,15573482833795088384,15573447511447175168,15573482833795088384,15573447511447175168,15573482833258217472,15573447511447175168,15573482833258217472,15573447511447175168,16005828260046831616,15573447511447175168,16005828260046831616,15573447511447175168,16005828260046831616,16005793075674742784,16005828260046831616,16005793075674742784,6350110796940312576,16005793075674742784,6350110796940312576,16005793075674742784,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,14997022081493770240,6350075474592399360,14997022081493762048,6350075474592399360,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,6782456361167880192,14996986759143751680,6782456361167880192,14996986759143751680,6782456360631009280,6782421038819966976,6782456360631009280,6782421038819966976,5773650044638994464,6782421038819966976,5773650044638986240,6782421038819966976,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044638994432,5773614722288975872,5773650044638986240,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,14997022081491664896,5773614722288975872,14997022081491664896,5773614722288975872,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,14997022081491664896,15573447511447175168,14997022081491664896,15573447511447175168,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,6350110796940312576,15861677887598886912,6350110796940312576,15861677887598886912,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,14997022081493770240,6350075474592399360,14997022081493762048,6350075474592399360,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,6638341173092024320,14996986759143751680,6638341173092024320,14996986759143751680,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,5773650044638994464,6638305850744111104,5773650044638986240,6638305850744111104,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773649906661064704,5773614722288975872,5773650044638994432,5773614722288975872,5773650044638986240,5773614722288975872,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,14997022081491664896,5773614722288975872,14997022081491664896,5773614722288975872,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,14997022081491664896,15573447511447175168,14997022081491664896,15573447511447175168,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,14996986759143751680,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,6350110796940312576,15861677887598886912,6350110796940312576,15861677887598886912,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,6854513817229983744,6350075474592399360,6854513817229983744,6350075474592399360,6854513817229983744,6854478632857894912,6854513817229983744,6854478632857894912,6638341173092024320,6854478632857894912,6638341173092024320,6854478632857894912,6638341172555153408,6638305850744111104,6638341172555153408,6638305850744111104,5773650044638994464,6638305850744111104,5773650044638986240,6638305850744111104,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,16077885854084759552,5773614722288975872,16077885854084759552,5773614722288975872,16077885854084759552,16077850669712670720,16077885854084759552,16077850669712670720,5773650044638994432,16077850669712670720,5773650044638986240,16077850669712670720,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,14997022081491664896,5773614722288975872,14997022081491664896,5773614722288975872,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,14997022081491664896,15573447511447175168,14997022081491664896,15573447511447175168,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,6350110796940312576,15573447511447175168,6350110796940312576,15573447511447175168,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,6782456223192055808,6350075474592399360,6782456223192055808,6350075474592399360,6782456223192055808,6782421038819966976,6782456223192055808,6782421038819966976,6350110796940312576,6782421038819966976,6350110796940312576,6782421038819966976,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,5773650044638994464,6350075474592399360,5773650044638986240,6350075474592399360,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,16005828260046831616,5773614722288975872,16005828260046831616,5773614722288975872,16005828260046831616,16005793075674742784,16005828260046831616,16005793075674742784,5773650044638994432,16005793075674742784,5773650044638986240,16005793075674742784,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,14997022081491664896,5773614722288975872,14997022081491664896,5773614722288975872,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081491664896,14996986759143751680,14997022081491664896,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,5773650044636889088,15573447511447175168,5773650044636889088,15573447511447175168,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,6350110796940312576,6638305850744111104,6350110796940312576,6638305850744111104,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,5773650044638994464,6350075474592399360,5773650044638986240,6350075474592399360,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,15861713071970975744,5773614722288975872,15861713071970975744,5773614722288975872,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,5773650044638994432,15861677887598886912,5773650044638986240,15861677887598886912,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,14997022081491664896,5773614722288975872,14997022081491664896,5773614722288975872,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081491664896,14996986759143751680,14997022081491664896,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,5773650044636889088,15573447511447175168,5773650044636889088,15573447511447175168,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,6350110796940312576,6638305850744111104,6350110796940312576,6638305850744111104,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,6854513817229983744,6350075474592399360,6854513817229983744,6350075474592399360,6854513817229983744,6854478632857894912,6854513817229983744,6854478632857894912,15861713071970975744,6854478632857894912,15861713071970975744,6854478632857894912,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,5773650044638994432,15861677887598886912,5773650044638986240,15861677887598886912,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,16077885854084759552,5773614722288975872,16077885854084759552,5773614722288975872,16077885854084759552,16077850669712670720,16077885854084759552,16077850669712670720,14997021943515840512,16077850669712670720,14997021943515840512,16077850669712670720,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081491664896,14996986759143751680,14997022081491664896,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,14996986759143751680,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,5773650044636889088,15573447511447175168,5773650044636889088,15573447511447175168,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,6350110796940312576,6350075474592399360,6350110796940312576,6350075474592399360,6350110796403441664,6350075474592399360,6350110796403441664,6350075474592399360,6782456223192055808,6350075474592399360,6782456223192055808,6350075474592399360,6782456223192055808,6782421038819966976,6782456223192055808,6782421038819966976,15573482695819264000,6782421038819966976,15573482695819264000,6782421038819966976,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,5773650044638994432,15573447511447175168,5773650044638986240,15573447511447175168,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,16005828260046831616,5773614722288975872,16005828260046831616,5773614722288975872,16005828260046831616,16005793075674742784,16005828260046831616,16005793075674742784,14997021943515840512,16005793075674742784,14997021943515840512,16005793075674742784,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081491664896,14996986759143751680,14997022081491664896,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,5773650044636889088,14996986759143751680,5773650044636889088,14996986759143751680,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,5773650044636889088,6350075474592399360,5773650044636889088,6350075474592399360,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,15573482695819264000,6638305850744111104,15573482695819264000,6638305850744111104,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,5773650044638994432,15573447511447175168,5773650044638986240,15573447511447175168,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,15861713071970975744,5773614722288975872,15861713071970975744,5773614722288975872,15861713071970975744,15861677887598886912,15861713071970975744,15861677887598886912,14997021943515840512,15861677887598886912,14997021943515840512,15861677887598886912,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997022081491664896,14996986759143751680,14997022081491664896,14996986759143751680,14997022080954793984,14996986759143751680,14997022080954793984,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,14997021943515840512,14996986759143751680,5773650044636889088,14996986759143751680,5773650044636889088,14996986759143751680,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,5773614722288975872,6350110658964488192,6350075474592399360,6350110658964488192,6350075474592399360,5773650044636889088,6350075474592399360,5773650044636889088,6350075474592399360,5773650044100018176,5773614722288975872,5773650044100018176,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,5773614722288975872,6638341035116199936,6638305850744111104,6638341035116199936,6638305850744111104,15573482695819264000,6638305850744111104,15573482695819264000,6638305850744111104,15573482695819264000,15573447511447175168,15573482695819264000,15573447511447175168,0],[13781085504453754944,11547300089277972480,11547300089277988864,11547300089277972480,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,13781085503375802368,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13781085228497895424,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547299813322129408,12700221317928976384,12700221317928976384,13781085228497895424,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,13709027910415827008,11547300089277972480,11547300089277988864,11547300089277972480,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,13709027909337874432,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13709027634459967488,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547299813322129408,12700221317928976384,12700221317928976384,13709027634459967488,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,13564912722339971136,11547300089277972480,11547300089277988864,11547300089277972480,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,13564912721262018560,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564912722339971136,11547300089277972480,11547300089277988864,11547300089277972480,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,13564912721262018560,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13276682346188259392,11547300089277972480,11547300089277988864,11547300089277972480,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,13781085504449544192,11547300089273778176,11547300089273778176,11547300089273778176,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,13781085503375802368,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13781085228497895424,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682346188259392,11547300089277972480,11547300089277988864,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13781085228497895424,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,13709027910411616256,11547300089273778176,11547300089273778176,11547300089273778176,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,13709027909337874432,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13709027634459967488,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682346188259392,11547300089277972480,11547300089277988864,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13709027634459967488,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,13564912722335760384,11547300089273778176,11547300089273778176,11547300089273778176,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,13564912721262018560,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682346188259392,11547300089277972480,11547300089277988864,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564912722335760384,11547300089273778176,11547300089273778176,11547300089273778176,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,13564912721262018560,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,12700221593884835904,13781085504453738496,13781085504453754880,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13564912446384111616,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13276682346184048640,11547300089273778176,11547300089273778176,11547300089273778176,12700221592806883328,13781085503375802368,13781085503375802368,11547300088200036352,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13709027910415810560,13709027910415826944,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682346184048640,11547300089273778176,11547300089273778176,11547300089273778176,12700221592806883328,13709027909337874432,13709027909337874432,11547300088200036352,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13564912722339954688,13564912722339971072,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682346184048640,11547300089273778176,11547300089273778176,11547300089273778176,12700221592806883328,13564912721262018560,13564912721262018560,11547300088200036352,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13564912722339954688,13564912722339971072,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682346184048640,11547300089273778176,11547300089273778176,11547300089273778176,12700221592806883328,13564912721262018560,13564912721262018560,11547300088200036352,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13276682345110306816,11547300088200036352,11547300088200036352,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13276682346188242944,13276682346188259328,11547300089277972480,11547299813322129408,12700221317928976384,12700221317928976384,13276682070232399872,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,12700221593880625152,13781085504449544192,13781085504449544192,11547300089273778176,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700221592806883328,13781085503375802368,13781085503375802368,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13276682346188242944,13276682346188259328,11547300089277972480,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13709027910411616256,13709027910411616256,11547300089273778176,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700221592806883328,13709027909337874432,13709027909337874432,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13276682346188242944,13276682346188259328,11547300089277972480,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13564912722335760384,13564912722335760384,11547300089273778176,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700221592806883328,13564912721262018560,13564912721262018560,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593884835904,13276682346188242944,13276682346188259328,11547300089277972480,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13564912722335760384,13564912722335760384,11547300089273778176,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,12700221592806883328,13564912721262018560,13564912721262018560,11547300088200036352,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547300089277988928,12700221593884819456,12700221593884835840,13781085504453738496,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13276682346184048640,13276682346184048640,11547300089273778176,11547300088200036352,12700221592806883328,12700221592806883328,13781085503375802368,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,13781085228497895424,11547299813322129408,11547299813322129408,11547299813322129408,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13781085228497895424,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13709027910415810560,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13276682346184048640,13276682346184048640,11547300089273778176,11547300088200036352,12700221592806883328,12700221592806883328,13709027909337874432,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,13709027634459967488,11547299813322129408,11547299813322129408,11547299813322129408,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13709027634459967488,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13564912722339954688,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13276682346184048640,13276682346184048640,11547300089273778176,11547300088200036352,12700221592806883328,12700221592806883328,13564912721262018560,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13564912722339954688,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221593880625152,13276682346184048640,13276682346184048640,11547300089273778176,11547300088200036352,12700221592806883328,12700221592806883328,13564912721262018560,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,12700221592806883328,13276682345110306816,13276682345110306816,11547300088200036352,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13276682346188242944,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547300089273778176,12700221593880625152,12700221593880625152,13781085504449544192,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13781085503375802368,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,13781085228497895424,11547299813322129408,11547299813322129408,11547299813322129408,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13276682346188242944,13781085228497895424,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13781014859753717760,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13709027910411616256,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13709027909337874432,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,13709027634459967488,11547299813322129408,11547299813322129408,11547299813322129408,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13276682346188242944,13709027634459967488,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13708957265715789824,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13564912722335760384,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13564912721262018560,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,12700221593884819456,12700221593884835840,13276682346188242944,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13564912722335760384,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13564912721262018560,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,13564912446384111616,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13276682346184048640,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13781085228497895424,13781085228497895424,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13781085228497895424,13781085228497895424,11547299813322129408,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13276682346184048640,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13709027634459967488,13709027634459967488,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13709027634459967488,13709027634459967488,11547299813322129408,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13276682346184048640,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,12700221593880625152,12700221593880625152,13276682346184048640,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,11547300088200036352,12700221592806883328,12700221592806883328,13276682345110306816,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13276611701488222208,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,13276682070232399872,11547299813322129408,11547299813322129408,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13781085228497895424,13781085228497895424,11547299813322129408,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,12700221317928976384,13781085228497895424,13781085228497895424,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13781014859753717760,13781014859753717760,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13709027634459967488,13709027634459967488,11547299813322129408,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,12700221317928976384,13709027634459967488,13709027634459967488,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13708957265715789824,13708957265715789824,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547300089277988928,11547300089277972480,11547300089277988864,12700221593884819456,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,11547300089273778176,11547300089273778176,11547300089273778176,12700221593880625152,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,11547300088200036352,11547300088200036352,11547300088200036352,12700221592806883328,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,11547229444577951744,11547229444577951744,11547229444577951744,12700150949184798720,12700221317928976384,13564912446384111616,13564912446384111616,11547299813322129408,12700221317928976384,13276682070232399872,13276682070232399872,11547299813322129408,12700150949184798720,13564842077639933952,13564842077639933952,11547229444577951744,12700150949184798720,13276611701488222208,13276611701488222208,11547229444577951744,0],[9187484529235886208,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8971170457722028032,4647714815446351872,6953699114051698688,8106620066755248128,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8683081368814485504,4647855552934707200,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,8971170457722028032,4647714815446351872,6953699114051698688,8683080819058671616,9187484529235853312,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,9115426383286239232,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,8683080819058671616,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,4647855552934707200,6953557824660045824,8971170457722028032,6953699111904215040,9187483977324167168,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,9115426383286239232,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,4647856104846426240,6953698562148401152,8682940081570316288,4647714815446351872,8971311744966197248,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,4647855552934707200,6953699111904215040,8106620066755248128,6953699111904215040,9187483977324167168,6953557824660045824,8106479329266892800,8106620618658545664,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647856104846426112,6953698562148401152,8682940081570316288,4647714815446351872,9115426933042053120,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8971311744966197248,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,6953699114060120192,8971311195210383360,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,4647856104846393344,6953698562148401152,8106620616511062016,4647855552934707200,9115426933042053120,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,6953699114060120064,8971311195210383360,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,6953699114060087296,8971311195210383360,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,8683081370970390656,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,6953699114060087296,8971311195210383360,4647856102690521088,4647855552934707200,4647856102690521088,4647855552934707200,9187343239835811840,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8971311747122102272,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,8683081370970357760,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,8971311747122069504,4647855552934707200,4647856102690521088,6953698562148401152,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,9115285645797883904,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,6953557824660045824,9187343239835811840,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,9115285645797883904,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,4647855552934707200,6953699111904215040,8106620066755248128,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8971170457722028032,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,9187343239835811840,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,9115285645797883904,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8971170457722028032,4647714815446351872,6953699114060120192,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,6953698562148401152,4647856104846393344,6953698562148401152,8106620616511062016,4647855552934707200,8683081368814485504,4647855552934707200,6953557824660045824,8971170457722028032,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,9115285645797883904,4647714815446351872,6953699114060120064,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,6953698562148401152,6953699114060087296,8683080819058671616,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,6953557824660045824,8971170457722028032,4647856104838004736,6953698562148401152,4647714815446351872,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,6953557824660045824,8971170457722028032,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,6953699114060087296,8683080819058671616,9187484527079981056,4647855552934707200,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,6953557824660045824,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,8683081370970390528,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,6953699114051698688,8106620066755248128,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,8971170457722028032,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,9187484527079981056,4647855552934707200,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,9115426383286239232,8683081370970357760,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8682940081570316288,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,8971170457722028032,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,9187483977324167168,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,9115426383286239232,6953557824660045824,8682940081570316288,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8971311747113680896,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,9187483977324167168,8682940081570316288,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,9115426935189536768,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8971311747113680896,4647855552934707200,8682940081570316288,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,6953699114060120192,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8971311195210383360,8106620616511062016,4647855552934707200,6953557824660045824,8682940081570316288,9115426935189536768,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,6953699114060120064,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,8971311195210383360,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8683081368814485504,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,8971311744966197248,4647855552934707200,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8683081368814485504,4647855552934707200,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,9187343239835811840,4647714815446351872,6953699114051698688,8683080819058671616,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8971311744966197248,4647855552934707200,6953557824660045824,9115285645797883904,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8683080819058671616,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8683080819058671616,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,6953698562148401152,6953557824660045824,9115285645797883904,8106620616511062016,4647855552934707200,4647714815446351872,4647714815446351872,8683081370961969152,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,8683080819058671616,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,6953698562148401152,6953557824660045824,9187343239835811840,8106620616511062016,4647855552934707200,4647714815446351872,4647714815446351872,8683081370961969152,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8683081370961969152,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,9115285645797883904,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,6953699114060120192,8106620066755248128,8971170457722028032,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8683080819058671616,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8683081370961969152,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8971170457722028032,8106479329266892800,4647714815446351872,6953699114060120064,8106620066755248128,9115285645797883904,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,8683080819058671616,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8971170457722028032,4647714815446351872,4647714815446351872,6953699114060120192,9187483977324167168,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8971170457722028032,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,6953557824660045824,8971170457722028032,4647856104838004736,6953698562148401152,6953699114060087296,9187483977324167168,8683081368814485504,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8971170457722028032,4647714815446351872,4647714815446351872,6953557824660045824,9115426935197958272,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8683081368814485504,4647855552934707200,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,9187484529235886080,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8971170457722028032,4647714815446351872,6953699114051698688,8106620066755248128,9115426935197925376,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,8971311195210383360,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,9187484529235853312,4647855552934707200,4647856102690521088,6953698562148401152,4647856102690521088,6953698562148401152,4647714815446351872,6953557824660045824,6953699114051698688,8106620066755248128,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,9115426383286239232,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,4647856104846426240,6953698562148401152,8682940081570316288,4647714815446351872,8971311744966197248,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,4647855552934707200,6953699111904215040,8106620066755248128,6953699111904215040,9115426383286239232,6953557824660045824,8106479329266892800,8106620618658545664,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647856104846426112,6953698562148401152,8682940081570316288,4647714815446351872,8971311744966197248,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8971311744966197248,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,6953699114060120192,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,4647856104846393344,6953698562148401152,8106620616511062016,4647855552934707200,8971311744966197248,4647855552934707200,6953557824660045824,9187343239835811840,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,6953699114060120064,8971311195210383360,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,6953699114060087296,8683080819058671616,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,6953557824660045824,9187343239835811840,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,8683081370970390656,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,6953699114051698688,8106620066755248128,6953699114060087296,8971311195210383360,4647856102690521088,4647855552934707200,4647856102690521088,4647855552934707200,9115285645797883904,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8683081370970390528,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,8683081370970357760,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,9187343239835811840,4647714815446351872,6953699114051698688,8106620066755248128,4647714815446351872,6953557824660045824,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,8683081370970357760,4647855552934707200,4647856102690521088,6953698562148401152,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8971170457722028032,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,9187343239835811840,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,6953557824660045824,9115285645797883904,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8971170457722028032,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,4647855552934707200,6953699111904215040,8106620066755248128,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8971170457722028032,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,9115285645797883904,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,8971170457722028032,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8971170457722028032,4647714815446351872,6953699114060120192,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,9187483977324167168,8683081368814485504,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8971170457722028032,4647714815446351872,6953699114060120064,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,6953557824660045824,8971170457722028032,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,9187483977324167168,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,6953699114060087296,8683080819058671616,9115426933042053120,4647855552934707200,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,6953557824660045824,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,9187484527079981056,4647855552934707200,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,9115426933042053120,4647855552934707200,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8971311195210383360,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8682940081570316288,9187484527079981056,4647855552934707200,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,9115426383286239232,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8971311195210383360,6953557824660045824,8682940081570316288,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8971311747113680896,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,9115426383286239232,8682940081570316288,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8971311747113680896,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8971311747113680896,4647855552934707200,8682940081570316288,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,6953699114060120192,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8683080819058671616,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8971311747113680896,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,9187343239835811840,8682940081570316288,4647714815446351872,6953699114060120064,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,8971311195210383360,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,6953557824660045824,9187343239835811840,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8683081368814485504,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,8683081368814485504,4647855552934707200,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,9187343239835811840,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,9115285645797883904,4647714815446351872,6953699114051698688,8683080819058671616,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8683081368814485504,4647855552934707200,6953557824660045824,8971170457722028032,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,9187343239835811840,4647714815446351872,6953699114051698688,8683080819058671616,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8683080819058671616,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,6953698562148401152,6953557824660045824,8971170457722028032,8106620616511062016,4647855552934707200,4647714815446351872,4647714815446351872,8683081370961969152,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,8683080819058671616,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,6953698562148401152,6953557824660045824,9115285645797883904,8106620616511062016,4647855552934707200,4647714815446351872,4647714815446351872,8683081370961969152,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8683081370961969152,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,8971170457722028032,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,4647856104846426240,6953698562148401152,8971170457722028032,4647714815446351872,9187484527079981056,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8683081370961969152,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,6953699114060120064,8106620066755248128,8971170457722028032,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8683080819058671616,9187484527079981056,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8971170457722028032,4647714815446351872,4647714815446351872,6953699114060120192,9115426383286239232,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,6953699114060120064,9187483977324167168,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8971170457722028032,4647856104838004736,6953698562148401152,6953699114060087296,9115426383286239232,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,8971311747122102400,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,6953699114060087296,9187483977324167168,4647856102690521088,4647855552934707200,4647856102690521088,4647855552934707200,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8106620616511062016,4647855552934707200,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,9115426935197958144,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,8971311747122069504,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,8971311195210383360,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,9115426935197925376,4647855552934707200,4647856102690521088,6953698562148401152,4647856102690521088,6953698562148401152,4647714815446351872,6953557824660045824,6953699114051698688,8106620066755248128,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,8971311195210383360,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,4647856104846426240,6953698562148401152,8682940081570316288,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,4647855552934707200,6953699111904215040,8106620066755248128,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,9187343239835811840,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647856104846426112,6953698562148401152,8682940081570316288,4647714815446351872,8971311744966197248,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8683081368814485504,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,9187343239835811840,4647714815446351872,6953699114060120192,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,6953698562148401152,4647856104846393344,6953698562148401152,8106620616511062016,4647855552934707200,8971311744966197248,4647855552934707200,6953557824660045824,9115285645797883904,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,6953699114060120064,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,6953699114060087296,8683080819058671616,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,6953557824660045824,9187343239835811840,4647856104838004736,6953698562148401152,4647714815446351872,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,6953557824660045824,9115285645797883904,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8683081370970390656,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,6953699114051698688,8106620066755248128,6953699114060087296,8683080819058671616,4647856102690521088,4647855552934707200,4647856102690521088,4647855552934707200,8971170457722028032,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,6953557824660045824,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,8683081370970390528,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,6953699114051698688,8106620066755248128,8683081370970357760,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,9115285645797883904,4647714815446351872,6953699114051698688,8106620066755248128,4647714815446351872,6953557824660045824,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,8683081370970357760,4647855552934707200,4647856102690521088,6953698562148401152,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8971170457722028032,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,9115285645797883904,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,6953557824660045824,8971170457722028032,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8971170457722028032,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,9187484529227464704,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8682940081570316288,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8971170457722028032,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,9187484529227464704,4647855552934707200,8971170457722028032,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,6953699114060120192,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,9115426383286239232,8683081368814485504,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8971170457722028032,4647714815446351872,6953699114060120064,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,9187483977324167168,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,9115426383286239232,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8971311744966197248,4647855552934707200,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,9187483977324167168,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,9115426933042053120,4647855552934707200,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8971311744966197248,4647855552934707200,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8971311195210383360,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8682940081570316288,9115426933042053120,4647855552934707200,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8971311195210383360,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8971311195210383360,6953557824660045824,8682940081570316288,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8683081370961969152,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,8971311195210383360,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8971311747113680896,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8683081370961969152,4647855552934707200,8682940081570316288,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,6953699114060120192,8106620066755248128,9187343239835811840,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8683080819058671616,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8971311747113680896,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,9115285645797883904,8682940081570316288,4647714815446351872,6953699114060120064,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,8683080819058671616,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,9187343239835811840,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,6953557824660045824,9115285645797883904,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8683081368814485504,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,6953557824660045824,9187343239835811840,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,8683081368814485504,4647855552934707200,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,9115285645797883904,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,8971170457722028032,4647714815446351872,6953699114051698688,8683080819058671616,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8683081368814485504,4647855552934707200,6953557824660045824,8971170457722028032,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,9115285645797883904,4647714815446351872,6953699114051698688,8683080819058671616,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8683080819058671616,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,4647855552934707200,6953557824660045824,8971170457722028032,6953699111904215040,9187483977324167168,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,8683080819058671616,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,6953698562148401152,6953557824660045824,8971170457722028032,8106620616511062016,4647855552934707200,4647714815446351872,4647714815446351872,8683081370961969152,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,9187483977324167168,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,8971170457722028032,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,4647856104846426240,6953698562148401152,8682940081570316288,4647714815446351872,9115426933042053120,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8683081370961969152,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647856104846426112,6953698562148401152,8971170457722028032,4647714815446351872,9187484527079981056,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,9115426933042053120,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,6953699114060120192,8971311195210383360,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,4647856104846393344,6953698562148401152,8106620616511062016,4647855552934707200,9187484527079981056,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,6953699114060120064,9115426383286239232,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,6953698562148401152,6953699114060087296,8971311195210383360,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,4647714815446351872,6953557824660045824,8971311747122102400,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,6953699114060087296,9115426383286239232,4647856102690521088,4647855552934707200,4647856102690521088,4647855552934707200,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8106620616511062016,4647855552934707200,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8971311747122102272,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,6953699114051698688,8106620066755248128,8971311747122069504,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8106479329266892800,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,4647856104846426240,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,8971311747122069504,4647855552934707200,4647856102690521088,6953698562148401152,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,9187343239835811840,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426112,4647855552934707200,6953557824660045824,8682940081570316288,6953699111904215040,8971311195210383360,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,9187343239835811840,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,4647855552934707200,6953699111904215040,8106620066755248128,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,9115285645797883904,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,4647714815446351872,4647856104846426112,6953698562148401152,8682940081570316288,4647714815446351872,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8106620066755248128,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,9187343239835811840,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,9115285645797883904,4647714815446351872,6953699114060120192,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,6953698562148401152,4647856104846393344,6953698562148401152,8106620616511062016,4647855552934707200,8683081368814485504,4647855552934707200,6953557824660045824,8971170457722028032,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,9187343239835811840,4647714815446351872,6953699114060120064,8683080819058671616,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,6953698562148401152,6953699114060087296,8683080819058671616,8106620616511062016,4647855552934707200,4647856102690521088,4647855552934707200,6953557824660045824,9115285645797883904,4647856104838004736,6953698562148401152,4647714815446351872,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,6953557824660045824,8971170457722028032,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8683081370970390656,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,6953699114051698688,8106620066755248128,6953699114060087296,8683080819058671616,4647856102690521088,4647855552934707200,4647856102690521088,4647855552934707200,8971170457722028032,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,6953557824660045824,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,8683081370970390528,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,6953699114051698688,8106620066755248128,8683081370970357760,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,8971170457722028032,4647714815446351872,6953699114051698688,8106620066755248128,4647714815446351872,6953557824660045824,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,9187483977324167168,8683081370970357760,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,6953699114051698688,8106620066755248128,6953557824660045824,8682940081570316288,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,8971170457722028032,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,8106620618658545664,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,9187483977324167168,6953557824660045824,8971170457722028032,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,4647856104846426240,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,9115426935189536768,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,8106620618658545664,4647855552934707200,8682940081570316288,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,8971170457722028032,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,9187484529227464704,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,9115426935189536768,4647855552934707200,8682940081570316288,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,6953699114060120192,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8971311195210383360,8106620616511062016,4647855552934707200,6953557824660045824,8682940081570316288,9187484529227464704,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8682940081570316288,4647714815446351872,6953699114060120064,8106620066755248128,4647714815446351872,4647714815446351872,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,9115426383286239232,4647856102690521088,4647855552934707200,6953557824660045824,8682940081570316288,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8971311195210383360,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8971311744966197248,4647855552934707200,4647856102690521088,4647855552934707200,8682940081570316288,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,9115426383286239232,6953557824660045824,8106479329266892800,6953557824660045824,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,6953557824660045824,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,8971311744966197248,4647855552934707200,4647856102690521088,6953698562148401152,8682940081570316288,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8971311744966197248,4647855552934707200,6953557824660045824,8106479329266892800,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426240,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8683080819058671616,8106620618666934272,4647855552934707200,4647856102690521088,4647855552934707200,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647856104838004736,6953698562148401152,6953557824660045824,8106479329266892800,8971311744966197248,4647855552934707200,6953557824660045824,9187343239835811840,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,4647856104846426112,4647855552934707200,6953557824660045824,8106479329266892800,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8971311195210383360,4647856104846393344,4647855552934707200,4647856102690521088,4647855552934707200,6953699111904215040,8106620066755248128,4647714815446351872,4647714815446351872,6953699114051698688,8683080819058671616,6953557824660045824,8682940081570316288,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,4647856104846426240,6953698562148401152,6953557824660045824,9187343239835811840,8106620616511062016,4647855552934707200,4647714815446351872,4647714815446351872,8683081370961969152,4647855552934707200,4647856104846393344,4647855552934707200,4647856102690521088,6953698562148401152,6953699111904215040,8106620066755248128,4647714815446351872,6953557824660045824,6953699114051698688,8971311195210383360,8106479329266892800,4647714815446351872,4647856102690521088,4647855552934707200,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8682940081570316288,4647856104846426112,6953698562148401152,8106479329266892800,4647714815446351872,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8683081370961969152,4647855552934707200,4647856104846393344,6953698562148401152,4647856102690521088,6953698562148401152,8106620616511062016,4647855552934707200,4647714815446351872,6953557824660045824,8683081370961969152,4647855552934707200,8106479329266892800,4647714815446351872,4647856102690521088,6953698562148401152,9187343239835811840,4647714815446351872,4647714815446351872,6953557824660045824,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,6953699114060120192,8106620066755248128,9115285645797883904,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,4647856104846393344,6953698562148401152,6953699111904215040,8683080819058671616,8106620616511062016,4647855552934707200,6953557824660045824,8106479329266892800,8683081370961969152,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,8971170457722028032,8106479329266892800,4647714815446351872,6953699114060120064,8106620066755248128,9187343239835811840,4647714815446351872,4647856102690521088,4647855552934707200,4647714815446351872,6953557824660045824,4647856104838004736,4647855552934707200,6953699114060087296,8106620066755248128,6953699111904215040,8683080819058671616,4647856102690521088,4647855552934707200,6953557824660045824,8106479329266892800,4647856104838004736,4647855552934707200,4647714815446351872,4647714815446351872,6953699111904215040,8683080819058671616,4647714815446351872,4647714815446351872,6953557824660045824,8106479329266892800,6953557824660045824,9115285645797883904,4647714815446351872,4647714815446351872,8106620618666967168,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,6953557824660045824,8971170457722028032,4647856104838004736,6953698562148401152,6953699114060087296,8106620066755248128,8683081368814485504,4647855552934707200,4647856102690521088,4647855552934707200,8106479329266892800,4647714815446351872,4647856104838004736,4647855552934707200,4647714815446351872,6953557824660045824,6953699111904215040,8683080819058671616,4647714815446351872,6953557824660045824,6953557824660045824,8106479329266892800,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,8106620618666967040,4647855552934707200,4647714815446351872,4647714815446351872,4647856102690521088,6953698562148401152,6953557824660045824,9115285645797883904,4647856104838004736,6953698562148401152,8106620618666934272,4647855552934707200,8683081368814485504,4647855552934707200,4647856102690521088,6953698562148401152,8106479329266892800,4647714815446351872,4647856104838004736,6953698562148401152,4647714815446351872,6953557824660045824,8683081368814485504,4647855552934707200,4647714815446351872,6953557824660045824,8106479329266892800,4647714815446351872,8971170457722028032,4647714815446351872,4647714815446351872,6953557824660045824,0]]} \ No newline at end of file +{"bishops":[[9241421688590303744,262656,262656,35253226045952,512,262656,512,512,18049651735527936,512,262656,35253226045952,512,262656,512,512,512,512,512,512,134480384,512,262656,134480384,512,262656,512,512,134480384,512,262656,134480384,68853957120,262656,262656,68853957120,512,262656,512,512,68853957120,512,262656,68853957120,512,262656,512,512,512,512,512,512,134480384,512,262656,134480384,512,262656,512,512,134480384,512,262656,134480384,0],[36099303471056128,70506452092160,1280,1280,137707914496,137707914496,1280,1280,525568,525568,1280,1280,525568,525568,1280,1280,268961024,268961024,1280,1280,268961024,268961024,1280,1280,525568,525568,1280,1280,525568,525568,1280,1280,0],[141012904249856,1116672,2560,2560,275415894528,1116672,537922048,1051136,68096,68096,537922048,1051136,68096,68096,2560,2560,537987584,1116672,2560,2560,537987584,1116672,141012904184320,1051136,68096,68096,275415828992,1051136,68096,68096,2560,2560,0],[550848566272,550831789056,1092752384,1075975168,550831657984,550831657984,1075844096,1075844096,16913408,136192,16913408,136192,5120,5120,5120,5120,16913408,136192,16913408,136192,5120,5120,5120,5120,19010560,2233344,19010560,2233344,2102272,2102272,2102272,2102272,0],[6480472064,2151950336,2151688192,2151688192,2185504768,2151950336,2151688192,2151688192,4328794112,272384,10240,10240,33826816,272384,10240,10240,4332988416,4466688,4204544,4204544,38021120,4466688,4204544,4204544,4328794112,272384,10240,10240,33826816,272384,10240,10240,0],[1108177604608,20480,8933376,8409088,67653632,8409088,544768,20480,76042240,20480,8933376,8409088,1108169216000,8409088,544768,20480,8665976832,20480,8933376,8409088,67653632,8409088,544768,20480,76042240,20480,8933376,8409088,8657588224,8409088,544768,20480,0],[283691315142656,135307264,40960,40960,40960,40960,17315176448,135307264,1089536,1089536,40960,40960,40960,40960,1089536,1089536,2216338432000,135307264,40960,40960,40960,40960,17315176448,135307264,1089536,1089536,40960,40960,40960,40960,1089536,1089536,0],[72624976668147712,2113536,16384,16384,34630287360,2113536,16384,16384,270548992,2113536,16384,16384,270548992,567382630219776,16384,16384,4432676798464,34630287360,16384,16384,34630287360,270548992,16384,16384,270548992,270548992,16384,16384,270548992,4432676798464,16384,16384,2113536,34630287360,16384,16384,2113536,270548992,16384,16384,2113536,270548992,16384,16384,2113536,2113536,16384,16384,2113536,2113536,16384,16384,2113536,2113536,16384,16384,2113536,2113536,16384,16384,2113536,2113536,16384,16384,0],[4620710844295151618,17626613022722,67239938,67239938,9024825867763714,17626613022722,67239938,67239938,131074,131074,131074,131074,131074,131074,131074,131074,34426978306,34426978306,67239938,67239938,34426978306,34426978306,67239938,67239938,131074,131074,131074,131074,131074,131074,131074,131074,0],[9241421688590368773,327685,18049651735592965,327685,327685,134545413,327685,134545413,327685,68854022149,327685,68854022149,134545413,327685,134545413,327685,68854022149,327685,68854022149,327685,327685,134545413,327685,134545413,327685,35253226110981,327685,35253226110981,134545413,327685,134545413,327685,0],[36099303487963146,137724821514,36099303471185930,137708044298,17432586,17432586,655370,655370,17432586,17432586,655370,655370,70506468999178,137724821514,70506452221962,137708044298,285868042,285868042,269090826,269090826,17432586,17432586,655370,655370,17432586,17432586,655370,655370,285868042,285868042,269090826,269090826,0],[141017232965652,279744610324,141012904443924,275416088596,4866703380,4866703380,538181652,538181652,4329832468,4329832468,1310740,1310740,4329832468,4329832468,1310740,1310740,141012937998356,275449643028,141012904443924,275416088596,571736084,571736084,538181652,538181652,34865172,34865172,1310740,1310740,34865172,34865172,1310740,1310740,0],[1659000848424,550832177192,1109245034536,1076363304,1108171292712,2621480,1108171292712,2621480,550899286056,550832177192,1143472168,1076363304,69730344,2621480,69730344,2621480,559489220648,550832177192,9733406760,1076363304,8659664936,2621480,8659664936,2621480,550899286056,550832177192,1143472168,1076363304,69730344,2621480,69730344,2621480,0],[283693466779728,5242960,2152726608,19466813520,2216342585424,2152726608,2152726608,17319329872,139460688,2152726608,5242960,139460688,2218490069072,5242960,5242960,19466813520,2286944336,5242960,2152726608,2286944336,139460688,2152726608,2152726608,139460688,283691319296080,2152726608,5242960,17319329872,2286944336,5242960,5242960,2286944336,0],[72624976676520096,567382638592160,278921376,278921376,10485920,10485920,10485920,10485920,4432685170848,4432685170848,278921376,278921376,10485920,10485920,10485920,10485920,34638659744,34638659744,278921376,278921376,10485920,10485920,10485920,10485920,34638659744,34638659744,278921376,278921376,10485920,10485920,10485920,10485920,0],[145249953336262720,8865353564224,1134765260406848,8865353564224,4194368,4194368,4194368,4194368,541065280,541065280,541065280,541065280,4194368,4194368,4194368,4194368,4194368,4194368,4194368,4194368,69260542016,69260542016,69260542016,69260542016,4194368,4194368,4194368,4194368,541065280,541065280,541065280,541065280,0],[2310355422147510788,33554948,8813306446340,33554948,2310355422147510784,33554944,8813306446336,33554944,17213424132,33554948,17213424132,33554948,17213424128,33554944,17213424128,33554944,4512412933816836,33554948,8813306446340,33554948,4512412933816832,33554944,8813306446336,33554944,17213424132,33554948,17213424132,33554948,17213424128,33554944,17213424128,33554944,0],[4620710844311799048,9024825884411144,17626629670152,17626629670152,34443625728,34443625728,34443625728,34443625728,83887368,83887368,83887368,83887368,83887360,83887360,83887360,83887360,34443625736,34443625736,34443625736,34443625736,4620710844311799040,9024825884411136,17626629670144,17626629670144,83887368,83887368,83887368,83887368,83887360,83887360,83887360,83887360,0],[9241421692918565393,4462742033,167774736,35253259340304,73182218769,4462742033,167774736,68887251472,4462742017,35257554307585,18049651768822272,167774720,4462742017,73182218753,68887251456,167774720,9241421688623598097,167774737,9241421692918565392,4462742032,68887251473,167774737,73182218768,4462742032,167774721,35253259340289,4462742016,35257554307584,167774721,68887251457,4462742016,73182218752,18049656063789585,4462742033,9241421688623598096,167774736,73182218769,4462742033,68887251472,167774736,4462742017,35257554307585,167774720,35253259340288,4462742017,73182218753,167774720,68887251456,18049651768822289,167774737,18049656063789584,4462742032,68887251473,167774737,73182218768,4462742032,167774721,35253259340289,4462742016,35257554307584,167774721,68887251457,4462742016,73182218752,4462742033,35257554307601,18049651768822288,167774736,4462742033,73182218769,68887251472,167774736,9241421692918565377,4462742017,167774720,35253259340288,73182218753,4462742017,167774720,68887251456,167774737,35253259340305,4462742032,35257554307600,167774737,68887251473,4462742032,73182218768,9241421688623598081,167774721,9241421692918565376,4462742016,68887251457,167774721,73182218752,4462742016,4462742033,35257554307601,167774736,35253259340304,4462742033,73182218769,167774736,68887251472,18049656063789569,4462742017,9241421688623598080,167774720,73182218753,4462742017,68887251456,167774720,167774737,35253259340305,4462742032,35257554307600,167774737,68887251473,4462742032,73182218768,18049651768822273,167774721,18049656063789568,4462742016,68887251457,167774721,73182218752,4462742016,0],[36100411639206946,137774502912,36099312127579170,137774502912,1108437111810,335549472,8925484034,335549472,71614620242978,137774502912,70515108615202,137774502912,1108437111810,335549472,8925484034,335549472,36100411639206944,36099303537644578,36099312127579168,36099303537644578,1108437111808,335549442,8925484032,335549442,71614620242976,70506518680610,70515108615200,70506518680610,1108437111808,335549442,8925484032,335549442,1245876065314,36099303537644576,146364437538,36099303537644576,1108437111810,335549440,8925484034,335549440,1245876065314,70506518680608,146364437538,70506518680608,1108437111810,335549440,8925484034,335549440,1245876065312,137774502946,146364437536,137774502946,1108437111808,335549442,8925484032,335549442,1245876065312,137774502946,146364437536,137774502946,1108437111808,335549442,8925484032,335549442,36100411639206914,137774502944,36099312127579138,137774502944,1108437111842,335549440,8925484066,335549440,71614620242946,137774502944,70515108615170,137774502944,1108437111842,335549440,8925484066,335549440,36100411639206912,36099303537644546,36099312127579136,36099303537644546,1108437111840,335549474,8925484064,335549474,71614620242944,70506518680578,70515108615168,70506518680578,1108437111840,335549474,8925484064,335549474,1245876065282,36099303537644544,146364437506,36099303537644544,1108437111842,335549472,8925484066,335549472,1245876065282,70506518680576,146364437506,70506518680576,1108437111842,335549472,8925484066,335549472,1245876065280,137774502914,146364437504,137774502914,1108437111840,335549474,8925484064,335549474,1245876065280,137774502914,146364437504,137774502914,1108437111840,335549474,8925484064,335549474,0],[424704217196612,141030217230404,283691850934336,17850968128,671098948,671098948,275549005888,275549005888,424704217196548,141030217230340,283691850934272,17850968064,671098884,671098884,275549005824,275549005824,141013037361220,141013037361220,671098944,671098944,283966728841284,292728875076,283691850934336,17850968128,141013037361156,141013037361156,671098880,671098880,283966728841220,292728875012,283691850934272,17850968064,143229240485956,141030217230404,2216874223680,17850968128,275549005892,275549005892,671098944,671098944,143229240485892,141030217230340,2216874223616,17850968064,275549005828,275549005828,671098880,671098880,141013037361220,141013037361220,671098944,671098944,2491752130628,292728875076,2216874223680,17850968128,141013037361156,141013037361156,671098880,671098880,2491752130564,292728875012,2216874223616,17850968064,283691850934340,17850968132,424704217196608,141030217230400,275549005892,275549005892,671098944,671098944,283691850934276,17850968068,424704217196544,141030217230336,275549005828,275549005828,671098880,671098880,671098948,671098948,141013037361216,141013037361216,283691850934340,17850968132,283966728841280,292728875072,671098884,671098884,141013037361152,141013037361152,283691850934276,17850968068,283966728841216,292728875008,2216874223684,17850968132,143229240485952,141030217230400,671098948,671098948,275549005888,275549005888,2216874223620,17850968068,143229240485888,141030217230336,671098884,671098884,275549005824,275549005824,671098948,671098948,141013037361216,141013037361216,2216874223684,17850968132,2491752130624,292728875072,671098884,671098884,141013037361152,141013037361152,2216874223620,17850968068,2491752130560,292728875008,0],[72625527495610504,35701936136,551098011656,1342197896,567933457682432,585457750152,551098011776,551098011656,72624977739796616,585457750016,1342197768,551098011776,567383701868544,35701936264,1342197888,1342197768,4983504261120,35701936128,551098011776,1342197888,567933457682568,585457750016,551098011656,551098011776,4433748447232,585457750152,1342197888,551098011656,567383701868680,35701936128,1342197768,1342197888,4983504261256,35701936264,551098011656,1342197768,4983504261120,585457750152,551098011776,551098011656,4433748447368,585457750016,1342197768,551098011776,4433748447232,35701936264,1342197888,1342197768,72625527495610496,35701936128,551098011648,1342197888,4983504261256,585457750144,551098011656,551098011648,72624977739796608,585457750152,1342197760,551098011656,4433748447368,35701936256,1342197768,1342197760,72625527495610376,35701936264,551098011784,1342197768,567933457682560,585457750024,551098011648,551098011784,72624977739796488,585457750144,1342197896,551098011648,567383701868672,35701936136,1342197760,1342197896,4983504261248,35701936256,551098011648,1342197760,567933457682440,585457750144,551098011784,551098011648,4433748447360,585457750024,1342197760,551098011784,567383701868552,35701936256,1342197896,1342197760,4983504261128,35701936136,551098011784,1342197896,4983504261248,585457750024,551098011648,551098011784,4433748447240,585457750144,1342197896,551098011648,4433748447360,35701936136,1342197760,1342197896,72625527495610368,35701936256,551098011776,1342197760,4983504261128,585457750016,551098011784,551098011776,72624977739796480,585457750024,1342197888,551098011784,4433748447240,35701936128,1342197896,1342197888,0],[145249955479592976,2684395536,71403872272,2684395536,71403872256,2684395520,8867496894464,2684395520,145249955479592960,2684395520,71403872256,2684395520,1134767403737104,2684395536,71403872272,2684395536,71403872272,2684395536,8867496894480,2684395536,1134767403737088,2684395520,71403872256,2684395520,71403872256,2684395520,8867496894464,2684395520,71403872272,2684395536,8867496894480,2684395536,0],[290499906664153120,138512711712,17730698756128,138512711712,1073758240,1073758240,1073758240,1073758240,2269530512441376,138512711712,17730698756128,138512711712,1073758240,1073758240,1073758240,1073758240,290499906664153088,138512711680,17730698756096,138512711680,1073758208,1073758208,1073758208,1073758208,2269530512441344,138512711680,17730698756096,138512711680,1073758208,1073758208,1073758208,1073758208,0],[1155177711057110024,8590065664,8590065664,8590066688,1155177711057110016,8590065664,8590065664,4406636577800,2256206450263048,8590065664,1155177711057108992,4406636577792,2256206450263040,8590065664,1155177711057108992,4406636577800,8590066696,4406636576768,2256206450262016,4406636577792,8590066688,4406636576768,2256206450262016,8590066696,8590066696,4406636576768,8590065664,8590066688,8590066688,4406636576768,8590065664,8590066696,0],[2310355426409252880,4512417195558928,21475166224,21475166224,2310355426409252864,4512417195558912,21475166208,21475166208,2310355426409250816,4512417195556864,21475164160,21475164160,2310355426409250816,4512417195556864,21475164160,21475164160,8817568188432,8817568188432,21475166224,21475166224,8817568188416,8817568188416,21475166208,21475166208,8817568186368,8817568186368,21475164160,21475164160,8817568186368,8817568186368,21475164160,21475164160,0],[4620711952330133792,1142461960224,42950328576,17635136372736,4620711952330129664,1142461956096,4620711952330133760,1142461960192,9025933902745888,1142461960224,4620711952330129664,1142461956096,9025933902741760,1142461956096,9025933902745856,1142461960192,4620710852818506016,42950332448,9025933902741760,1142461956096,4620710852818501888,42950328320,4620710852818505984,42950332416,9024834391118112,42950332448,4620710852818501888,42950328320,9024834391113984,42950328320,9024834391118080,42950332416,18734648004896,1142461960224,9024834391113984,42950328320,18734648000768,1142461956096,18734648004864,1142461960192,18734648004896,1142461960224,18734648000768,1142461956096,18734648000768,1142461956096,18734648004864,1142461960192,17635136377120,42950332448,18734648000768,1142461956096,17635136372992,42950328320,17635136377088,42950332416,17635136377120,42950332448,17635136372992,42950328320,17635136372992,42950328320,17635136377088,42950332416,1142461960480,4620711952330133536,17635136372992,42950328320,1142461956352,4620711952330129408,1142461960448,4620711952330133504,1142461960480,9025933902745632,1142461956352,4620711952330129408,1142461956352,9025933902741504,1142461960448,9025933902745600,42950332704,4620710852818505760,1142461956352,9025933902741504,42950328576,4620710852818501632,42950332672,4620710852818505728,42950332704,9024834391117856,42950328576,4620710852818501632,42950328576,9024834391113728,42950332672,9024834391117824,1142461960480,18734648004640,42950328576,9024834391113728,1142461956352,18734648000512,1142461960448,18734648004608,1142461960480,18734648004640,1142461956352,18734648000512,1142461956352,18734648000512,1142461960448,18734648004608,42950332704,17635136376864,1142461956352,18734648000512,42950328576,17635136372736,42950332672,17635136376832,42950332704,17635136376864,42950328576,17635136372736,42950328576,17635136372736,42950332672,17635136376832,0],[9241705379636978241,9241705379636978177,283759900623360,283759900623360,9241423904660267585,9241423904660267521,2284923912704,2284923912704,283759900622848,283759900622848,318944272711680,318944272711680,2284923912192,2284923912192,37469296001024,37469296001024,9241421705637012033,9241421705637011969,85900657152,85900657152,9241421705637012033,9241421705637011969,85900657152,85900657152,85900656640,85900656640,35270272745472,35270272745472,85900656640,85900656640,35270272745472,35270272745472,9241705379636977728,9241705379636977664,283759900622848,283759900622848,9241423904660267072,9241423904660267008,2284923912192,2284923912192,18333342782202433,18333342782202369,283759900623360,283759900623360,18051867805491777,18051867805491713,2284923912704,2284923912704,9241421705637011520,9241421705637011456,85900656640,85900656640,9241421705637011520,9241421705637011456,85900656640,85900656640,18049668782236225,18049668782236161,85900657152,85900657152,18049668782236225,18049668782236161,85900657152,85900657152,283759900631617,283759900631553,318944272720449,318944272720385,2284923920961,2284923920897,37469296009793,37469296009729,18333342782201920,18333342782201856,283759900622848,283759900622848,18051867805491264,18051867805491200,2284923912192,2284923912192,85900665409,85900665345,35270272754241,35270272754177,85900665409,85900665345,35270272754241,35270272754177,18049668782235712,18049668782235648,85900656640,85900656640,18049668782235712,18049668782235648,85900656640,85900656640,283759900631104,283759900631040,318944272719936,318944272719872,2284923920448,2284923920384,37469296009280,37469296009216,283759900631617,283759900631553,318944272720449,318944272720385,2284923920961,2284923920897,37469296009793,37469296009729,85900664896,85900664832,35270272753728,35270272753664,85900664896,85900664832,35270272753728,35270272753664,85900665409,85900665345,35270272754241,35270272754177,85900665409,85900665345,35270272754241,35270272754177,9241705379636969985,9241705379636969985,283759900631617,283759900631553,9241423904660259329,9241423904660259329,2284923920961,2284923920897,283759900631104,283759900631040,318944272719936,318944272719872,2284923920448,2284923920384,37469296009280,37469296009216,9241421705637003777,9241421705637003777,85900665409,85900665345,9241421705637003777,9241421705637003777,85900665409,85900665345,85900664896,85900664832,35270272753728,35270272753664,85900664896,85900664832,35270272753728,35270272753664,9241705379636969472,9241705379636969472,283759900631104,283759900631040,9241423904660258816,9241423904660258816,2284923920448,2284923920384,18333342782194177,18333342782194177,283759900631617,283759900631553,18051867805483521,18051867805483521,2284923920961,2284923920897,9241421705637003264,9241421705637003264,85900664896,85900664832,9241421705637003264,9241421705637003264,85900664896,85900664832,18049668782227969,18049668782227969,85900665409,85900665345,18049668782227969,18049668782227969,85900665409,85900665345,283759900623361,283759900623361,318944272712193,318944272712193,2284923912705,2284923912705,37469296001537,37469296001537,18333342782193664,18333342782193664,283759900631104,283759900631040,18051867805483008,18051867805483008,2284923920448,2284923920384,85900657153,85900657153,35270272745985,35270272745985,85900657153,85900657153,35270272745985,35270272745985,18049668782227456,18049668782227456,85900664896,85900664832,18049668782227456,18049668782227456,85900664896,85900664832,283759900622848,283759900622848,318944272711680,318944272711680,2284923912192,2284923912192,37469296001024,37469296001024,283759900623361,283759900623361,318944272712193,318944272712193,2284923912705,2284923912705,37469296001537,37469296001537,85900656640,85900656640,35270272745472,35270272745472,85900656640,85900656640,35270272745472,35270272745472,85900657153,85900657153,35270272745985,35270272745985,85900657153,85900657153,35270272745985,35270272745985,9241705379636978240,9241705379636978176,283759900623361,283759900623361,9241423904660267584,9241423904660267520,2284923912705,2284923912705,283759900622848,283759900622848,318944272711680,318944272711680,2284923912192,2284923912192,37469296001024,37469296001024,9241421705637012032,9241421705637011968,85900657153,85900657153,9241421705637012032,9241421705637011968,85900657153,85900657153,85900656640,85900656640,35270272745472,35270272745472,85900656640,85900656640,35270272745472,35270272745472,9241705379636977728,9241705379636977664,283759900622848,283759900622848,9241423904660267072,9241423904660267008,2284923912192,2284923912192,18333342782202432,18333342782202368,283759900623361,283759900623361,18051867805491776,18051867805491712,2284923912705,2284923912705,9241421705637011520,9241421705637011456,85900656640,85900656640,9241421705637011520,9241421705637011456,85900656640,85900656640,18049668782236224,18049668782236160,85900657153,85900657153,18049668782236224,18049668782236160,85900657153,85900657153,283759900631616,283759900631552,318944272720448,318944272720384,2284923920960,2284923920896,37469296009792,37469296009728,18333342782201920,18333342782201856,283759900622848,283759900622848,18051867805491264,18051867805491200,2284923912192,2284923912192,85900665408,85900665344,35270272754240,35270272754176,85900665408,85900665344,35270272754240,35270272754176,18049668782235712,18049668782235648,85900656640,85900656640,18049668782235712,18049668782235648,85900656640,85900656640,283759900631104,283759900631040,318944272719936,318944272719872,2284923920448,2284923920384,37469296009280,37469296009216,283759900631616,283759900631552,318944272720448,318944272720384,2284923920960,2284923920896,37469296009792,37469296009728,85900664896,85900664832,35270272753728,35270272753664,85900664896,85900664832,35270272753728,35270272753664,85900665408,85900665344,35270272754240,35270272754176,85900665408,85900665344,35270272754240,35270272754176,9241705379636969984,9241705379636969984,283759900631616,283759900631552,9241423904660259328,9241423904660259328,2284923920960,2284923920896,283759900631104,283759900631040,318944272719936,318944272719872,2284923920448,2284923920384,37469296009280,37469296009216,9241421705637003776,9241421705637003776,85900665408,85900665344,9241421705637003776,9241421705637003776,85900665408,85900665344,85900664896,85900664832,35270272753728,35270272753664,85900664896,85900664832,35270272753728,35270272753664,9241705379636969472,9241705379636969472,283759900631104,283759900631040,9241423904660258816,9241423904660258816,2284923920448,2284923920384,18333342782194176,18333342782194176,283759900631616,283759900631552,18051867805483520,18051867805483520,2284923920960,2284923920896,9241421705637003264,9241421705637003264,85900664896,85900664832,9241421705637003264,9241421705637003264,85900664896,85900664832,18049668782227968,18049668782227968,85900665408,85900665344,18049668782227968,18049668782227968,85900665408,85900665344,283759900623360,283759900623360,318944272712192,318944272712192,2284923912704,2284923912704,37469296001536,37469296001536,18333342782193664,18333342782193664,283759900631104,283759900631040,18051867805483008,18051867805483008,2284923920448,2284923920384,85900657152,85900657152,35270272745984,35270272745984,85900657152,85900657152,35270272745984,35270272745984,18049668782227456,18049668782227456,85900664896,85900664832,18049668782227456,18049668782227456,85900664896,85900664832,283759900622848,283759900622848,318944272711680,318944272711680,2284923912192,2284923912192,37469296001024,37469296001024,283759900623360,283759900623360,318944272712192,318944272712192,2284923912704,2284923912704,37469296001536,37469296001536,85900656640,85900656640,35270272745472,35270272745472,85900656640,85900656640,35270272745472,35270272745472,85900657152,85900657152,35270272745984,35270272745984,85900657152,85900657152,35270272745984,35270272745984,0],[108724279602332802,72695482583352322,72625113839190016,72625113839173632,171801313280,171801329792,171801330688,171801314304,36666685564404866,637888545424386,567519801262080,567519801245696,171801313280,171801329792,171801330688,171801314304,36103735610983554,74938592003074,4569847840768,4569847824384,108724279602332800,72695482583352320,72625113839190016,72625113839173632,36103735610983554,74938592003074,4569847840768,4569847824384,36666685564404864,637888545424384,567519801262080,567519801245696,36099337564472450,70540545491970,171801329664,171801313280,36103735610983552,74938592003072,4569847840768,4569847824384,36099337564472450,70540545491970,171801329664,171801313280,36103735610983552,74938592003072,4569847840768,4569847824384,36099337564472450,70540545491970,171801329664,171801313280,36099337564472448,70540545491968,171801329664,171801313280,36099337564472450,70540545491970,171801329664,171801313280,36099337564472448,70540545491968,171801329664,171801313280,108724279602331776,72695482583351296,108724279602316290,72695482583368706,36099337564472448,70540545491968,171801329664,171801313280,36666685564403840,637888545423360,36666685564388354,637888545440770,36099337564472448,70540545491968,171801329664,171801313280,36103735610982528,74938592002048,36103735610967042,74938592019458,108724279602331776,72695482583351296,108724279602316288,72695482583368704,36103735610982528,74938592002048,36103735610967042,74938592019458,36666685564403840,637888545423360,36666685564388352,637888545440768,36099337564471424,70540545490944,36099337564455938,70540545508354,36103735610982528,74938592002048,36103735610967040,74938592019456,36099337564471424,70540545490944,36099337564455938,70540545508354,36103735610982528,74938592002048,36103735610967040,74938592019456,36099337564471424,70540545490944,36099337564455938,70540545508354,36099337564471424,70540545490944,36099337564455936,70540545508352,36099337564471424,70540545490944,36099337564455938,70540545508354,36099337564471424,70540545490944,36099337564455936,70540545508352,72625113839191170,72625113839174658,108724279602315264,72695482583367680,36099337564471424,70540545490944,36099337564455936,70540545508352,567519801263234,567519801246722,36666685564387328,637888545439744,36099337564471424,70540545490944,36099337564455936,70540545508352,4569847841922,4569847825410,36103735610966016,74938592018432,72625113839191168,72625113839174656,108724279602315264,72695482583367680,4569847841922,4569847825410,36103735610966016,74938592018432,567519801263232,567519801246720,36666685564387328,637888545439744,171801330818,171801314306,36099337564454912,70540545507328,4569847841920,4569847825408,36103735610966016,74938592018432,171801330818,171801314306,36099337564454912,70540545507328,4569847841920,4569847825408,36103735610966016,74938592018432,171801330818,171801314306,36099337564454912,70540545507328,171801330816,171801314304,36099337564454912,70540545507328,171801330818,171801314306,36099337564454912,70540545507328,171801330816,171801314304,36099337564454912,70540545507328,72625113839190144,72625113839173632,72625113839174658,72625113839191042,171801330816,171801314304,36099337564454912,70540545507328,567519801262208,567519801245696,567519801246722,567519801263106,171801330816,171801314304,36099337564454912,70540545507328,4569847840896,4569847824384,4569847825410,4569847841794,72625113839190144,72625113839173632,72625113839174656,72625113839191040,4569847840896,4569847824384,4569847825410,4569847841794,567519801262208,567519801245696,567519801246720,567519801263104,171801329792,171801313280,171801314306,171801330690,4569847840896,4569847824384,4569847825408,4569847841792,171801329792,171801313280,171801314306,171801330690,4569847840896,4569847824384,4569847825408,4569847841792,171801329792,171801313280,171801314306,171801330690,171801329792,171801313280,171801314304,171801330688,171801329792,171801313280,171801314306,171801330690,171801329792,171801313280,171801314304,171801330688,108724279602316290,72695482583368834,72625113839173632,72625113839190016,171801329792,171801313280,171801314304,171801330688,36666685564388354,637888545440898,567519801245696,567519801262080,171801329792,171801313280,171801314304,171801330688,36103735610967042,74938592019586,4569847824384,4569847840768,108724279602316288,72695482583368832,72625113839173632,72625113839190016,36103735610967042,74938592019586,4569847824384,4569847840768,36666685564388352,637888545440896,567519801245696,567519801262080,36099337564455938,70540545508482,171801313280,171801329664,36103735610967040,74938592019584,4569847824384,4569847840768,36099337564455938,70540545508482,171801313280,171801329664,36103735610967040,74938592019584,4569847824384,4569847840768,36099337564455938,70540545508482,171801313280,171801329664,36099337564455936,70540545508480,171801313280,171801329664,36099337564455938,70540545508482,171801313280,171801329664,36099337564455936,70540545508480,171801313280,171801329664,108724279602315264,72695482583367808,108724279602332674,72695482583352322,36099337564455936,70540545508480,171801313280,171801329664,36666685564387328,637888545439872,36666685564404738,637888545424386,36099337564455936,70540545508480,171801313280,171801329664,36103735610966016,74938592018560,36103735610983426,74938592003074,108724279602315264,72695482583367808,108724279602332672,72695482583352320,36103735610966016,74938592018560,36103735610983426,74938592003074,36666685564387328,637888545439872,36666685564404736,637888545424384,36099337564454912,70540545507456,36099337564472322,70540545491970,36103735610966016,74938592018560,36103735610983424,74938592003072,36099337564454912,70540545507456,36099337564472322,70540545491970,36103735610966016,74938592018560,36103735610983424,74938592003072,36099337564454912,70540545507456,36099337564472322,70540545491970,36099337564454912,70540545507456,36099337564472320,70540545491968,36099337564454912,70540545507456,36099337564472322,70540545491970,36099337564454912,70540545507456,36099337564472320,70540545491968,72625113839174658,72625113839191170,108724279602331648,72695482583351296,36099337564454912,70540545507456,36099337564472320,70540545491968,567519801246722,567519801263234,36666685564403712,637888545423360,36099337564454912,70540545507456,36099337564472320,70540545491968,4569847825410,4569847841922,36103735610982400,74938592002048,72625113839174656,72625113839191168,108724279602331648,72695482583351296,4569847825410,4569847841922,36103735610982400,74938592002048,567519801246720,567519801263232,36666685564403712,637888545423360,171801314306,171801330818,36099337564471296,70540545490944,4569847825408,4569847841920,36103735610982400,74938592002048,171801314306,171801330818,36099337564471296,70540545490944,4569847825408,4569847841920,36103735610982400,74938592002048,171801314306,171801330818,36099337564471296,70540545490944,171801314304,171801330816,36099337564471296,70540545490944,171801314306,171801330818,36099337564471296,70540545490944,171801314304,171801330816,36099337564471296,70540545490944,72625113839173632,72625113839190144,72625113839191042,72625113839174658,171801314304,171801330816,36099337564471296,70540545490944,567519801245696,567519801262208,567519801263106,567519801246722,171801314304,171801330816,36099337564471296,70540545490944,4569847824384,4569847840896,4569847841794,4569847825410,72625113839173632,72625113839190144,72625113839191040,72625113839174656,4569847824384,4569847840896,4569847841794,4569847825410,567519801245696,567519801262208,567519801263104,567519801246720,171801313280,171801329792,171801330690,171801314306,4569847824384,4569847840896,4569847841792,4569847825408,171801313280,171801329792,171801330690,171801314306,4569847824384,4569847840896,4569847841792,4569847825408,171801313280,171801329792,171801330690,171801314306,171801313280,171801329792,171801330688,171801314304,171801313280,171801329792,171801330690,171801314306,171801313280,171801329792,171801330688,171801314304,0],[145390965166737412,141081090981888,9139695683588,343602626560,141081090981888,141081090983936,343602626560,343602628608,145390965166735360,145390965166737408,9139695681536,9139695683584,1275777090881540,141081090981888,9139695683588,343602626560,141081091016708,145390965166735360,343602661380,9139695681536,1275777090879488,1275777090881536,9139695681536,9139695683584,141081091014656,141081091016704,343602659328,343602661376,141081091016708,1275777090879488,343602661380,9139695681536,145390965166704644,141081091014656,9139695650820,343602659328,141081091014656,141081091016704,343602659328,343602661376,145390965166702592,145390965166704640,9139695648768,9139695650816,1275777090848772,141081091014656,9139695650820,343602659328,141081090983940,145390965166702592,343602628612,9139695648768,1275777090846720,1275777090848768,9139695648768,9139695650816,141081090981888,141081090983936,343602626560,343602628608,141081090983940,1275777090846720,343602628612,9139695648768,149877184038916,141081090981888,145250227678382084,343602626560,141081090981888,141081090983936,343602626560,343602628608,149877184036864,149877184038912,145250227678380032,145250227678382080,149877184038916,141081090981888,1135039602526212,343602626560,141081091016708,149877184036864,343602661380,145250227678380032,149877184036864,149877184038912,1135039602524160,1135039602526208,141081091014656,141081091016704,343602659328,343602661376,141081091016708,149877184036864,343602661380,1135039602524160,149877184006148,141081091014656,145250227678349316,343602659328,141081091014656,141081091016704,343602659328,343602661376,149877184004096,149877184006144,145250227678347264,145250227678349312,149877184006148,141081091014656,1135039602493444,343602659328,141081090983940,149877184004096,343602628612,145250227678347264,149877184004096,149877184006144,1135039602491392,1135039602493440,141081090981888,141081090983936,343602626560,343602628608,141081090983940,149877184004096,343602628612,1135039602491392,0],[290500455356698632,687205253120,18279391301632,687205253120,18279391297536,687205257224,2270079204982784,687205257216,290500455356694528,687205257224,18279391297536,687205257216,2270079204986888,687205253120,18279391301632,687205253120,18279391301640,687205253120,290500455356698624,687205253120,2270079204982784,687205257224,18279391297536,687205257216,18279391297536,687205257224,290500455356694528,687205257216,18279391301640,687205253120,2270079204986880,687205253120,0],[580999811184992272,274882101248,35459254198288,274882101248,274882101248,4539058881560576,274882101248,35459254190080,274882109456,580999811184992256,274882109456,35459254198272,4539058881568784,274882101248,35459254198288,274882101248,580999811184984064,274882109440,35459254190080,274882109440,274882109456,4539058881568768,274882109456,35459254198272,274882101248,580999811184984064,274882101248,35459254190080,4539058881560576,274882109440,35459254190080,274882109440,0],[577588851267340304,577588851267338240,1128098963916816,1128098963914752,2199056809984,2199056809984,2199056809984,2199056809984,577588851267340288,577588851267338240,1128098963916800,1128098963914752,2199057074192,2199057072128,2199057074192,2199057072128,577588851267076096,577588851267076096,1128098963652608,1128098963652608,2199057074176,2199057072128,2199057074176,2199057072128,577588851267076096,577588851267076096,1128098963652608,1128098963652608,2199056809984,2199056809984,2199056809984,2199056809984,0],[1155178802063085600,1155178802062557184,5497642553344,5497642024960,1155178802063081472,1155178802062557184,5497642553376,5497642024960,2257297456238624,2257297455710208,5497642549248,5497642024960,2257297456234496,2257297455710208,5497642553376,5497642024960,1155178802063081472,1155178802062557184,5497642549248,5497642024960,1155178802063085568,1155178802062557184,5497642549248,5497642024960,2257297456234496,2257297455710208,5497642553344,5497642024960,2257297456238592,2257297455710208,5497642549248,5497642024960,0],[2310639079102947392,2310639079101890560,292470261874688,292470260826112,2310639079102947328,2310639079101890560,292470261874688,292470260826112,10995285106752,10995284049920,4514594912534528,4514594911485952,10995285106688,10995284049920,4514594912534528,4514594911485952,292470261882944,292470260826112,4796069889179648,4796069888131072,292470261882880,292470260826112,4796069889179648,4796069888131072,10995285172288,10995284115456,2310357604126162944,2310357604125114368,10995285172224,10995284115456,2310357604126162944,2310357604125114368,292470261817408,292470260760576,2310639079102939136,2310639079101890560,292470261817344,292470260760576,2310639079102939136,2310639079101890560,4514594912477248,4514594911420416,10995285098496,10995284049920,4514594912477184,4514594911420416,10995285098496,10995284049920,4796069889253440,4796069888196608,292470261874688,292470260826112,4796069889253376,4796069888196608,292470261874688,292470260826112,2310357604126236736,2310357604125179904,10995285164032,10995284115456,2310357604126236672,2310357604125179904,10995285164032,10995284115456,2310639079102881856,2310639079101825024,292470261809152,292470260760576,2310639079102881792,2310639079101825024,292470261809152,292470260760576,10995285172288,10995284115456,4514594912468992,4514594911420416,10995285172224,10995284115456,4514594912468992,4514594911420416,292470261817408,292470260760576,4796069889245184,4796069888196608,292470261817344,292470260760576,4796069889245184,4796069888196608,10995285106752,10995284049920,2310357604126228480,2310357604125179904,10995285106688,10995284049920,2310357604126228480,2310357604125179904,292470261882944,292470260826112,2310639079102873600,2310639079101825024,292470261882880,292470260826112,2310639079102873600,2310639079101825024,4514594912542784,4514594911485952,10995285164032,10995284115456,4514594912542720,4514594911485952,10995285164032,10995284115456,4796069889187904,4796069888131072,292470261809152,292470260760576,4796069889187840,4796069888131072,292470261809152,292470260760576,2310357604126171200,2310357604125114368,10995285098496,10995284049920,2310357604126171136,2310357604125114368,10995285098496,10995284049920,0],[4693335752243822976,4693335752243822848,584940523618304,584940523618304,21990568099840,21990568099840,4621278158205895040,4621278158205894912,4693335752243822720,4693335752243822592,21990568099840,21990568099840,21990568099840,21990568099840,4621278158205894784,4621278158205894656,21990568231168,21990568231168,21990568099840,21990568099840,4693335752243691648,4693335752243691520,21990568231168,21990568231168,21990568230912,21990568230912,4621278158205763712,4621278158205763584,4693335752243691648,4693335752243691520,21990568230912,21990568230912,21990570328320,21990570328320,4621278158205763712,4621278158205763584,21990568099840,21990568099840,21990570328320,21990570328320,21990570328064,21990570328064,21990568099840,21990568099840,21990568099840,21990568099840,21990570328064,21990570328064,72642534559580416,72642534559580416,21990568099840,21990568099840,21990570196992,21990570196992,584940521652480,584940521652480,72642534559580160,72642534559580160,21990570196992,21990570196992,21990570196992,21990570196992,584940521652224,584940521652224,4620715208252473728,4620715208252473600,21990570196992,21990570196992,72642534559449088,72642534559449088,4620715208252473728,4620715208252473600,4620715208252473472,4620715208252473344,584940521521152,584940521521152,72642534559449088,72642534559449088,4620715208252473472,4620715208252473344,4693335752241709312,4693335752241709312,584940521521152,584940521521152,4620715208252342400,4620715208252342272,4621278158203781376,4621278158203781376,4693335752241709056,4693335752241709056,4620715208252342400,4620715208252342272,4620715208252342400,4620715208252342272,4621278158203781120,4621278158203781120,81649733816435072,81649733816434944,4620715208252342400,4620715208252342272,4693335752241577984,4693335752241577984,9592139778507136,9592139778507008,81649733816434816,81649733816434688,4621278158203650048,4621278158203650048,4693335752241577984,4693335752241577984,9592139778506880,9592139778506752,21990568231168,21990568231168,4621278158203650048,4621278158203650048,81649733816303744,81649733816303616,21990568231168,21990568231168,21990568230912,21990568230912,9592139778375808,9592139778375680,81649733816303744,81649733816303616,21990568230912,21990568230912,4693335752243806464,4693335752243806464,9592139778375808,9592139778375680,21990568099840,21990568099840,4621278158205878528,4621278158205878528,4693335752243806208,4693335752243806208,21990568099840,21990568099840,21990568099840,21990568099840,4621278158205878272,4621278158205878272,4620715208250360064,4620715208250360064,21990568099840,21990568099840,4693335752243675136,4693335752243675136,4620715208250360064,4620715208250360064,4620715208250359808,4620715208250359808,4621278158205747200,4621278158205747200,4693335752243675136,4693335752243675136,4620715208250359808,4620715208250359808,9029189825085824,9029189825085696,4621278158205747200,4621278158205747200,4620715208250228736,4620715208250228736,9029189825085824,9029189825085696,9029189825085568,9029189825085440,4620715208250228736,4620715208250228736,4620715208250228736,4620715208250228736,9029189825085568,9029189825085440,81649733814321408,81649733814321408,4620715208250228736,4620715208250228736,9029189824954496,9029189824954368,9592139776393472,9592139776393472,81649733814321152,81649733814321152,9029189824954496,9029189824954368,9029189824954496,9029189824954368,9592139776393216,9592139776393216,4620715208252457216,4620715208252457216,9029189824954496,9029189824954368,81649733814190080,81649733814190080,4620715208252457216,4620715208252457216,4620715208252456960,4620715208252456960,9592139776262144,9592139776262144,81649733814190080,81649733814190080,4620715208252456960,4620715208252456960,4693335752241709312,4693335752241709312,9592139776262144,9592139776262144,4620715208252325888,4620715208252325888,4621278158203781376,4621278158203781376,4693335752241709056,4693335752241709056,4620715208252325888,4620715208252325888,4620715208252325888,4620715208252325888,4621278158203781120,4621278158203781120,81649733816418560,81649733816418560,4620715208252325888,4620715208252325888,4693335752241577984,4693335752241577984,9592139778490624,9592139778490624,81649733816418304,81649733816418304,4621278158203650048,4621278158203650048,4693335752241577984,4693335752241577984,9592139778490368,9592139778490368,9029189822972160,9029189822972160,4621278158203650048,4621278158203650048,81649733816287232,81649733816287232,9029189822972160,9029189822972160,9029189822971904,9029189822971904,9592139778359296,9592139778359296,81649733816287232,81649733816287232,9029189822971904,9029189822971904,72642534561694080,72642534561693952,9592139778359296,9592139778359296,9029189822840832,9029189822840832,584940523766144,584940523766016,72642534561693824,72642534561693696,9029189822840832,9029189822840832,9029189822840832,9029189822840832,584940523765888,584940523765760,4620715208250360064,4620715208250360064,9029189822840832,9029189822840832,72642534561562752,72642534561562624,4620715208250360064,4620715208250360064,4620715208250359808,4620715208250359808,584940523634816,584940523634688,72642534561562752,72642534561562624,4620715208250359808,4620715208250359808,9029189825069312,9029189825069312,584940523634816,584940523634688,4620715208250228736,4620715208250228736,9029189825069312,9029189825069312,9029189825069056,9029189825069056,4620715208250228736,4620715208250228736,4620715208250228736,4620715208250228736,9029189825069056,9029189825069056,81649733814321408,81649733814321408,4620715208250228736,4620715208250228736,9029189824937984,9029189824937984,9592139776393472,9592139776393472,81649733814321152,81649733814321152,9029189824937984,9029189824937984,9029189824937984,9029189824937984,9592139776393216,9592139776393216,21990570344832,21990570344704,9029189824937984,9029189824937984,81649733814190080,81649733814190080,21990570344832,21990570344704,21990570344576,21990570344448,9592139776262144,9592139776262144,81649733814190080,81649733814190080,21990570344576,21990570344448,72642534559580416,72642534559580416,9592139776262144,9592139776262144,21990570213504,21990570213376,584940521652480,584940521652480,72642534559580160,72642534559580160,21990570213504,21990570213376,21990570213504,21990570213376,584940521652224,584940521652224,72642534561694080,72642534561693952,21990570213504,21990570213376,72642534559449088,72642534559449088,584940523766144,584940523766016,72642534561693824,72642534561693696,584940521521152,584940521521152,72642534559449088,72642534559449088,584940523765888,584940523765760,9029189822972160,9029189822972160,584940521521152,584940521521152,72642534561562752,72642534561562624,9029189822972160,9029189822972160,9029189822971904,9029189822971904,584940523634816,584940523634688,72642534561562752,72642534561562624,9029189822971904,9029189822971904,72642534561677568,72642534561677568,584940523634816,584940523634688,9029189822840832,9029189822840832,584940523749632,584940523749632,72642534561677312,72642534561677312,9029189822840832,9029189822840832,9029189822840832,9029189822840832,584940523749376,584940523749376,21990568231168,21990568231168,9029189822840832,9029189822840832,72642534561546240,72642534561546240,21990568231168,21990568231168,21990568230912,21990568230912,584940523618304,584940523618304,72642534561546240,72642534561546240,21990568230912,21990568230912,21990570344832,21990570344704,584940523618304,584940523618304,21990568099840,21990568099840,21990570344832,21990570344704,21990570344576,21990570344448,21990568099840,21990568099840,21990568099840,21990568099840,21990570344576,21990570344448,72642534559580416,72642534559580416,21990568099840,21990568099840,21990570213504,21990570213376,584940521652480,584940521652480,72642534559580160,72642534559580160,21990570213504,21990570213376,21990570213504,21990570213376,584940521652224,584940521652224,21990570328320,21990570328320,21990570213504,21990570213376,72642534559449088,72642534559449088,21990570328320,21990570328320,21990570328064,21990570328064,584940521521152,584940521521152,72642534559449088,72642534559449088,21990570328064,21990570328064,72642534559580416,72642534559580416,584940521521152,584940521521152,21990570196992,21990570196992,584940521652480,584940521652480,72642534559580160,72642534559580160,21990570196992,21990570196992,21990570196992,21990570196992,584940521652224,584940521652224,72642534561677568,72642534561677568,21990570196992,21990570196992,72642534559449088,72642534559449088,584940523749632,584940523749632,72642534561677312,72642534561677312,584940521521152,584940521521152,72642534559449088,72642534559449088,584940523749376,584940523749376,21990568231168,21990568231168,584940521521152,584940521521152,72642534561546240,72642534561546240,21990568231168,21990568231168,21990568230912,21990568230912,584940523618304,584940523618304,72642534561546240,72642534561546240,21990568230912,21990568230912,0],[9386671504487645697,9386671504487612929,18058379645944321,18058379645944321,163299467628642304,163299467628642304,18058379650170880,18058379650138112,145285069123387905,145285069123355137,43981136462337,43981136462337,145285069119160320,145285069119160320,43981140688896,43981140656128,19184279557014017,19184279556981249,9241430416500720129,9241430416500720129,9242556316407562240,9242556316407562240,9241430416504946688,9241430416504913920,1169881047532033,1169881047499265,43981136462337,43981136462337,1169881043304448,1169881043304448,43981140688896,43981140656128,9386671504487383040,9386671504487350272,18058379645681664,18058379645681664,163299467628380160,163299467628380160,18058379649908736,18058379649875968,145285069123125248,145285069123092480,43981136199680,43981136199680,145285069118898176,145285069118898176,43981140426752,43981140393984,19184279556751360,19184279556718592,9241430416500457472,9241430416500457472,9242556316407300096,9242556316407300096,9241430416504684544,9241430416504651776,1169881047269376,1169881047236608,43981136199680,43981136199680,1169881043042304,1169881043042304,43981140426752,43981140393984,9386671504487645184,9386671504487612416,18058379645943808,18058379645943808,9386671504487645696,9386671504487612928,18058379645944320,18058379645944320,145285069123387392,145285069123354624,43981136461824,43981136461824,145285069123387904,145285069123355136,43981136462336,43981136462336,19184279557013504,19184279556980736,9241430416500719616,9241430416500719616,19184279557014016,19184279556981248,9241430416500720128,9241430416500720128,1169881047531520,1169881047498752,43981136461824,43981136461824,1169881047532032,1169881047499264,43981136462336,43981136462336,9386671504487383040,9386671504487350272,18058379645681664,18058379645681664,9386671504487383040,9386671504487350272,18058379645681664,18058379645681664,145285069123125248,145285069123092480,43981136199680,43981136199680,145285069123125248,145285069123092480,43981136199680,43981136199680,19184279556751360,19184279556718592,9241430416500457472,9241430416500457472,19184279556751360,19184279556718592,9241430416500457472,9241430416500457472,1169881047269376,1169881047236608,43981136199680,43981136199680,1169881047269376,1169881047236608,43981136199680,43981136199680,9386671504483418625,9386671504483418625,9241430416504947201,9241430416504914433,9386671504487645184,9386671504487612416,18058379645943808,18058379645943808,145285069119160833,145285069119160833,43981140689409,43981140656641,145285069123387392,145285069123354624,43981136461824,43981136461824,19184279552786945,19184279552786945,18058379650171393,18058379650138625,19184279557013504,19184279556980736,9241430416500719616,9241430416500719616,1169881043304961,1169881043304961,43981140689409,43981140656641,1169881047531520,1169881047498752,43981136461824,43981136461824,9386671504483155968,9386671504483155968,9241430416504684544,9241430416504651776,9386671504487383040,9386671504487350272,18058379645681664,18058379645681664,145285069118898176,145285069118898176,43981140426752,43981140393984,145285069123125248,145285069123092480,43981136199680,43981136199680,19184279552524288,19184279552524288,18058379649908736,18058379649875968,19184279556751360,19184279556718592,9241430416500457472,9241430416500457472,1169881043042304,1169881043042304,43981140426752,43981140393984,1169881047269376,1169881047236608,43981136199680,43981136199680,9386671504483418112,9386671504483418112,9241430416504946688,9241430416504913920,9386671504483418624,9386671504483418624,9241430416504947200,9241430416504914432,145285069119160320,145285069119160320,43981140688896,43981140656128,145285069119160832,145285069119160832,43981140689408,43981140656640,19184279552786432,19184279552786432,18058379650170880,18058379650138112,19184279552786944,19184279552786944,18058379650171392,18058379650138624,1169881043304448,1169881043304448,43981140688896,43981140656128,1169881043304960,1169881043304960,43981140689408,43981140656640,9386671504483155968,9386671504483155968,9241430416504684544,9241430416504651776,9386671504483155968,9386671504483155968,9241430416504684544,9241430416504651776,145285069118898176,145285069118898176,43981140426752,43981140393984,145285069118898176,145285069118898176,43981140426752,43981140393984,19184279552524288,19184279552524288,18058379649908736,18058379649875968,19184279552524288,19184279552524288,18058379649908736,18058379649875968,1169881043042304,1169881043042304,43981140426752,43981140393984,1169881043042304,1169881043042304,43981140426752,43981140393984,163299467632869889,163299467632837121,9241430416500720129,9241430416500720129,9386671504483418112,9386671504483418112,9241430416504946688,9241430416504913920,145285069123387905,145285069123355137,43981136462337,43981136462337,145285069119160320,145285069119160320,43981140688896,43981140656128,9242556316411789825,9242556316411757057,18058379645944321,18058379645944321,19184279552786432,19184279552786432,18058379650170880,18058379650138112,1169881047532033,1169881047499265,43981136462337,43981136462337,1169881043304448,1169881043304448,43981140688896,43981140656128,163299467632607232,163299467632574464,9241430416500457472,9241430416500457472,9386671504483155968,9386671504483155968,9241430416504684544,9241430416504651776,145285069123125248,145285069123092480,43981136199680,43981136199680,145285069118898176,145285069118898176,43981140426752,43981140393984,9242556316411527168,9242556316411494400,18058379645681664,18058379645681664,19184279552524288,19184279552524288,18058379649908736,18058379649875968,1169881047269376,1169881047236608,43981136199680,43981136199680,1169881043042304,1169881043042304,43981140426752,43981140393984,163299467632869376,163299467632836608,9241430416500719616,9241430416500719616,163299467632869888,163299467632837120,9241430416500720128,9241430416500720128,145285069123387392,145285069123354624,43981136461824,43981136461824,145285069123387904,145285069123355136,43981136462336,43981136462336,9242556316411789312,9242556316411756544,18058379645943808,18058379645943808,9242556316411789824,9242556316411757056,18058379645944320,18058379645944320,1169881047531520,1169881047498752,43981136461824,43981136461824,1169881047532032,1169881047499264,43981136462336,43981136462336,163299467632607232,163299467632574464,9241430416500457472,9241430416500457472,163299467632607232,163299467632574464,9241430416500457472,9241430416500457472,145285069123125248,145285069123092480,43981136199680,43981136199680,145285069123125248,145285069123092480,43981136199680,43981136199680,9242556316411527168,9242556316411494400,18058379645681664,18058379645681664,9242556316411527168,9242556316411494400,18058379645681664,18058379645681664,1169881047269376,1169881047236608,43981136199680,43981136199680,1169881047269376,1169881047236608,43981136199680,43981136199680,163299467628642817,163299467628642817,18058379650171393,18058379650138625,163299467632869376,163299467632836608,9241430416500719616,9241430416500719616,145285069119160833,145285069119160833,43981140689409,43981140656641,145285069123387392,145285069123354624,43981136461824,43981136461824,9242556316407562753,9242556316407562753,9241430416504947201,9241430416504914433,9242556316411789312,9242556316411756544,18058379645943808,18058379645943808,1169881043304961,1169881043304961,43981140689409,43981140656641,1169881047531520,1169881047498752,43981136461824,43981136461824,163299467628380160,163299467628380160,18058379649908736,18058379649875968,163299467632607232,163299467632574464,9241430416500457472,9241430416500457472,145285069118898176,145285069118898176,43981140426752,43981140393984,145285069123125248,145285069123092480,43981136199680,43981136199680,9242556316407300096,9242556316407300096,9241430416504684544,9241430416504651776,9242556316411527168,9242556316411494400,18058379645681664,18058379645681664,1169881043042304,1169881043042304,43981140426752,43981140393984,1169881047269376,1169881047236608,43981136199680,43981136199680,163299467628642304,163299467628642304,18058379650170880,18058379650138112,163299467628642816,163299467628642816,18058379650171392,18058379650138624,145285069119160320,145285069119160320,43981140688896,43981140656128,145285069119160832,145285069119160832,43981140689408,43981140656640,9242556316407562240,9242556316407562240,9241430416504946688,9241430416504913920,9242556316407562752,9242556316407562752,9241430416504947200,9241430416504914432,1169881043304448,1169881043304448,43981140688896,43981140656128,1169881043304960,1169881043304960,43981140689408,43981140656640,163299467628380160,163299467628380160,18058379649908736,18058379649875968,163299467628380160,163299467628380160,18058379649908736,18058379649875968,145285069118898176,145285069118898176,43981140426752,43981140393984,145285069118898176,145285069118898176,43981140426752,43981140393984,9242556316407300096,9242556316407300096,9241430416504684544,9241430416504651776,9242556316407300096,9242556316407300096,9241430416504684544,9241430416504651776,1169881043042304,1169881043042304,43981140426752,43981140393984,1169881043042304,1169881043042304,43981140426752,43981140393984,0],[326598935265674242,38368559113962498,326598935257284608,38368559105572864,326598935265674240,38368559113962496,326598935257284608,38368559105572864,87962280787968,87962280787968,36116759291363328,36116759291363328,87962280787968,87962280787968,36116759291363328,36116759291363328,36116759300277250,36116759300277250,36116759291887616,36116759291887616,36116759300277248,36116759300277248,36116759291887616,36116759291887616,326598935265148928,38368559113437184,326598935256760320,38368559105048576,326598935265148928,38368559113437184,326598935256760320,38368559105048576,326598935265673216,38368559113961472,290570138238321666,2339762086609922,326598935265673216,38368559113961472,290570138238321664,2339762086609920,36116759299751936,36116759299751936,36116759291363328,36116759291363328,36116759299751936,36116759299751936,36116759291363328,36116759291363328,36116759300276224,36116759300276224,87962272924674,87962272924674,36116759300276224,36116759300276224,87962272924672,87962272924672,326598935265148928,38368559113437184,290570138237796352,2339762086084608,326598935265148928,38368559113437184,290570138237796352,2339762086084608,290570138246710274,2339762094998530,290570138238320640,2339762086608896,290570138246710272,2339762094998528,290570138238320640,2339762086608896,36116759299751936,36116759299751936,87962272399360,87962272399360,36116759299751936,36116759299751936,87962272399360,87962272399360,87962281313282,87962281313282,87962272923648,87962272923648,87962281313280,87962281313280,87962272923648,87962272923648,290570138246184960,2339762094473216,290570138237796352,2339762086084608,290570138246184960,2339762094473216,290570138237796352,2339762086084608,290570138246709248,2339762094997504,326598935257285634,38368559105573890,290570138246709248,2339762094997504,326598935257285632,38368559105573888,87962280787968,87962280787968,87962272399360,87962272399360,87962280787968,87962280787968,87962272399360,87962272399360,87962281312256,87962281312256,36116759291888642,36116759291888642,87962281312256,87962281312256,36116759291888640,36116759291888640,290570138246184960,2339762094473216,326598935256760320,38368559105048576,290570138246184960,2339762094473216,326598935256760320,38368559105048576,0],[581140276476643332,581140276476643328,4679524172169216,4679524172169216,581140276476641280,581140276476641280,4679524172169216,4679524172169216,175924544798720,175924544798720,4679524173219844,4679524173219840,175924544798720,175924544798720,4679524173217792,4679524173217792,175924545849348,175924545849344,175924544798720,175924544798720,175924545847296,175924545847296,175924544798720,175924544798720,581140276475592704,581140276475592704,175924545849348,175924545849344,581140276475592704,581140276475592704,175924545847296,175924545847296,0],[1161999073681608712,1161999073681608704,70369817919488,70369817919488,1161999073681604608,1161999073681604608,70369817919488,70369817919488,9077569074761736,9077569074761728,1161999073679507456,1161999073679507456,9077569074757632,9077569074757632,1161999073679507456,1161999073679507456,70369820020744,70369820020736,9077569072660480,9077569072660480,70369820016640,70369820016640,9077569072660480,9077569072660480,70369820020744,70369820020736,70369817919488,70369817919488,70369820016640,70369820016640,70369817919488,70369817919488,0],[288793334762704928,562958610993184,288793334695067648,562958543355904,288793334762176512,562958610464768,288793334695067648,562958543355904,288793334762700800,562958610989056,288793334695067648,562958543355904,288793334762176512,562958610464768,288793334695067648,562958543355904,288793334762700800,562958610989056,288793334695067648,562958543355904,288793334762176512,562958610464768,288793334695067648,562958543355904,288793334762704896,562958610993152,288793334695067648,562958543355904,288793334762176512,562958610464768,288793334695067648,562958543355904,0],[577868148797087808,577868148797087744,1407396493664320,1407396493664256,577868148661813248,577868148661813248,1407396358389760,1407396358389760,577868148797079552,577868148797079552,1407396493656064,1407396493656064,577868148661813248,577868148661813248,1407396358389760,1407396358389760,577868148796030976,577868148796030976,1407396492607488,1407396492607488,577868148661813248,577868148661813248,1407396358389760,1407396358389760,577868148796030976,577868148796030976,1407396492607488,1407396492607488,577868148661813248,577868148661813248,1407396358389760,1407396358389760,0],[1227793891648880768,74872386771484672,1227793891632103552,74872386754707456,74872387039920128,2814793004089344,74872387023142912,2814792987312128,1227793891378331648,2814793001992192,1227793891361554432,2814792985214976,74872386771484672,2814792733556736,74872386754707456,2814792716779520,1155736297610952832,2814792733556736,1155736297594175616,2814792716779520,2814793001992192,1227793891648864256,2814792985214976,1227793891632087040,1155736297340403712,74872387039920128,1155736297323626496,74872387023142912,2814792733556736,1227793891378331648,2814792716779520,1227793891361554432,1227793891648880640,74872386771484672,1227793891632103424,74872386754707456,1227793891646767104,1155736297610936320,1227793891629989888,1155736297594159104,1227793891378331648,2814793001992192,1227793891361554432,2814792985214976,1227793891378331648,1155736297340403712,1227793891361554432,1155736297323626496,1155736297610952704,2814792733556736,1155736297594175488,2814792716779520,1155736297608839168,1227793891648864256,1155736297592061952,1227793891632087040,1155736297340403712,1227793891646767104,1155736297323626496,1227793891629989888,1155736297340403712,1227793891378331648,1155736297323626496,1227793891361554432,74872387042033792,1227793891378331648,74872387025256576,1227793891361554432,1227793891646767104,1155736297610936320,1227793891629989888,1155736297594159104,74872386771484672,1155736297608839168,74872386754707456,1155736297592061952,1227793891378331648,1155736297340403712,1227793891361554432,1155736297323626496,2814793004105856,1155736297340403712,2814792987328640,1155736297323626496,1155736297608839168,74872387042017280,1155736297592061952,74872387025240064,2814792733556736,1227793891646767104,2814792716779520,1227793891629989888,1155736297340403712,74872386771484672,1155736297323626496,74872386754707456,74872387042033664,1227793891378331648,74872387025256448,1227793891361554432,74872387039920128,2814793004089344,74872387023142912,2814792987312128,74872386771484672,1155736297608839168,74872386754707456,1155736297592061952,74872386771484672,2814792733556736,74872386754707456,2814792716779520,2814793004105728,1155736297340403712,2814792987328512,1155736297323626496,2814793001992192,74872387042017280,2814792985214976,74872387025240064,2814792733556736,74872387039920128,2814792716779520,74872387023142912,2814792733556736,74872386771484672,2814792716779520,74872386754707456,0],[2455587783297826816,5629585467113472,2455587783297794048,5629585467113472,5629585467179008,149744773542969344,5629585467179008,149744773542969344,2455587783264206848,5629585433559040,2455587783264174080,5629585433559040,5629585433559040,149744773509414912,5629585433559040,149744773509414912,2311472595221970944,2455587783297761280,2311472595221938176,2455587783297728512,2455587783293599744,5629585467113472,2455587783293599744,5629585467113472,2311472595188350976,2455587783264206848,2311472595188318208,2455587783264174080,2455587783259979776,5629585433559040,2455587783259979776,5629585433559040,2455587782756728832,2311472595221905408,2455587782756728832,2311472595221872640,2311472595217743872,2455587783293534208,2311472595217743872,2455587783293534208,2455587782723108864,2311472595188350976,2455587782723108864,2311472595188318208,2311472595184123904,2455587783259979776,2311472595184123904,2455587783259979776,2311472594680872960,2455587782756663296,2311472594680872960,2455587782756663296,2455587782756728832,2311472595217678336,2455587782756728832,2311472595217678336,2311472594647252992,2455587782723108864,2311472594647252992,2455587782723108864,2455587782723108864,2311472595184123904,2455587782723108864,2311472595184123904,149744774084132864,2311472594680807424,149744774084100096,2311472594680807424,2311472594680872960,2455587782756663296,2311472594680872960,2455587782756663296,149744774050512896,2311472594647252992,149744774050480128,2311472594647252992,2311472594647252992,2455587782723108864,2311472594647252992,2455587782723108864,5629586008276992,149744774084067328,5629586008244224,149744774084034560,149744774079905792,2311472594680807424,149744774079905792,2311472594680807424,5629585974657024,149744774050512896,5629585974624256,149744774050480128,149744774046285824,2311472594647252992,149744774046285824,2311472594647252992,149744773543034880,5629586008211456,149744773543034880,5629586008178688,5629586004049920,149744774079840256,5629586004049920,149744774079840256,149744773509414912,5629585974657024,149744773509414912,5629585974624256,5629585970429952,149744774046285824,5629585970429952,149744774046285824,5629585467179008,149744773542969344,5629585467179008,149744773542969344,149744773543034880,5629586003984384,149744773543034880,5629586003984384,5629585433559040,149744773509414912,5629585433559040,149744773509414912,149744773509414912,5629585970429952,149744773509414912,5629585970429952,0],[4911175566595588352,4911175566595457024,299489547086069760,299489547085938688,4911175566528348160,4911175566528348160,299489547018829824,299489547018829824,4622945190443876352,4622945190443745280,11259170934358272,11259170934226944,4622945190376636416,4622945190376636416,11259170867118080,11259170867118080,4911175566587199744,4911175566587068416,4911175565513457920,4911175565513326592,4911175566519959552,4911175566519959552,4911175565446217728,4911175565446217728,4622945190435487744,4622945190435356672,4622945189361745920,4622945189361614848,4622945190368247808,4622945190368247808,4622945189294505984,4622945189294505984,299489548168200448,299489548168069120,4911175565513457920,4911175565513326592,299489548100960256,299489548100960256,4911175565446217728,4911175565446217728,11259172016488448,11259172016357376,4622945189361745920,4622945189361614848,11259171949248512,11259171949248512,4622945189294505984,4622945189294505984,299489548159811840,299489548159680512,299489547086070016,299489547085938688,299489548092571648,299489548092571648,299489547018829824,299489547018829824,11259172008099840,11259172007968768,11259170934358016,11259170934226944,11259171940859904,11259171940859904,11259170867118080,11259170867118080,4911175566595588096,4911175566595457024,299489547086070016,299489547085938688,4911175566528348160,4911175566528348160,299489547018829824,299489547018829824,4622945190443876608,4622945190443745280,11259170934358016,11259170934226944,4622945190376636416,4622945190376636416,11259170867118080,11259170867118080,4911175566587199488,4911175566587068416,4911175565513457664,4911175565513326592,4911175566519959552,4911175566519959552,4911175565446217728,4911175565446217728,4622945190435488000,4622945190435356672,4622945189361746176,4622945189361614848,4622945190368247808,4622945190368247808,4622945189294505984,4622945189294505984,299489548168200192,299489548168069120,4911175565513457664,4911175565513326592,299489548100960256,299489548100960256,4911175565446217728,4911175565446217728,11259172016488704,11259172016357376,4622945189361746176,4622945189361614848,11259171949248512,11259171949248512,4622945189294505984,4622945189294505984,299489548159811584,299489548159680512,299489547086069760,299489547085938688,299489548092571648,299489548092571648,299489547018829824,299489547018829824,11259172008100096,11259172007968768,11259170934358272,11259170934226944,11259171940859904,11259171940859904,11259170867118080,11259170867118080,0],[9822351133174399489,598979094037659648,9245890380870976001,22518341734236160,9822351131026653184,9822351133039919104,9245890378723229696,9245890380736495616,598979096319623681,9822351130892435456,22518344016200193,9245890378589011968,598979094171877376,598979096185143296,22518341868453888,22518343881719808,9822351133174399488,598979094037659648,9245890380870976000,22518341734236160,9822351131026915841,9822351133039919104,9245890378723492353,9245890380736495616,598979096319623680,9822351130892435456,22518344016200192,9245890378589011968,598979094172140033,598979096185143296,22518341868716545,22518343881719808,9822351133174398976,598979094037659648,9245890380870975488,22518341734236160,9822351131026915840,9822351133039919104,9245890378723492352,9245890380736495616,598979096319623168,9822351130892435456,22518344016199680,9245890378589011968,598979094172140032,598979096185143296,22518341868716544,22518343881719808,9822351133174398976,598979094037659648,9245890380870975488,22518341734236160,9822351131026915328,9822351133039919104,9245890378723491840,9245890380736495616,598979096319623168,9822351130892435456,22518344016199680,9245890378589011968,598979094172139520,598979096185143296,22518341868716032,22518343881719808,9822351133174136832,598979094037659648,9245890380870713344,22518341734236160,9822351131026915328,9822351133039919104,9245890378723491840,9245890380736495616,598979096319361024,9822351130892435456,22518344015937536,9245890378589011968,598979094172139520,598979096185143296,22518341868716032,22518343881719808,9822351133174136832,598979094037659648,9245890380870713344,22518341734236160,9822351131026653184,9822351133039919104,9245890378723229696,9245890380736495616,598979096319361024,9822351130892435456,22518344015937536,9245890378589011968,598979094171877376,598979096185143296,22518341868453888,22518343881719808,9822351133174136832,598979094037659648,9245890380870713344,22518341734236160,9822351131026653184,9822351133039919104,9245890378723229696,9245890380736495616,598979096319361024,9822351130892435456,22518344015937536,9245890378589011968,598979094171877376,598979096185143296,22518341868453888,22518343881719808,9822351133174136832,598979094037659648,9245890380870713344,22518341734236160,9822351131026653184,9822351133039919104,9245890378723229696,9245890380736495616,598979096319361024,9822351130892435456,22518344015937536,9245890378589011968,598979094171877376,598979096185143296,22518341868453888,22518343881719808,0],[1197958188344280066,45036683737433090,1197958188075319296,45036683468472320,1197958188344279040,45036683737432064,1197958188343754752,45036683736907776,1197958188075319296,45036683468472320,1197958188343754752,45036683736907776,1197958188075319296,45036683468472320,1197958188075319296,45036683468472320,1197958188344280064,45036683737433088,1197958188075319296,45036683468472320,1197958188344279040,45036683737432064,1197958188343754752,45036683736907776,1197958188075319296,45036683468472320,1197958188343754752,45036683736907776,1197958188075319296,45036683468472320,1197958188075319296,45036683468472320,0],[2323857683139004420,18014673387388928,2323857682601082880,2323857683137953792,18014673924259840,2323857682601082880,18014673387388928,18014673925308416,2323857683137953792,18014673387388928,2323857682601082880,2323857683139004416,18014673925310468,2323857682601082880,18014673387388928,18014673924259840,2323857683139002368,18014673387388928,2323857682601082880,2323857683137953792,18014673924259840,2323857682601082880,18014673387388928,18014673925310464,2323857683137953792,18014673387388928,2323857682601082880,2323857683139002368,18014673925308416,2323857682601082880,18014673387388928,18014673924259840,0],[144117404414255168,144117387099111424,144117387099111424,144117404414255104,144117404414246912,144117387099111424,144117387099111424,144117404414246912,144117404278980608,144117387099111424,144117387099111424,144117404278980608,144117404278980608,144117387099111424,144117387099111424,144117404278980608,144117404278980608,144117387099111424,144117387099111424,144117404278980608,144117404278980608,144117387099111424,144117387099111424,144117404278980608,144117404413198336,144117387099111424,144117387099111424,144117404413198336,144117404413198336,144117387099111424,144117387099111424,144117404413198336,0],[360293502378066048,360293467747778560,360293502375952384,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502378065920,360293467747778560,360293502375952384,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502378049536,360293467747778560,360293502375952384,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,360293502378049536,360293467747778560,360293502375952384,360293467747778560,360293502107516928,360293467747778560,360293502107516928,360293467747778560,0],[720587009051099136,720587008510001152,720586939790524416,720586939790524416,720587004756131840,720587004215033856,720586935495557120,720586935495557120,720587009046872064,720587008510001152,720587009051066368,720587008510001152,720587004751904768,720587004215033856,720587004756099072,720587004215033856,720586939790524416,720586939790524416,720587009046872064,720587008510001152,720586935495557120,720586935495557120,720587004751904768,720587004215033856,720586939790524416,720586939790524416,720586939790524416,720586939790524416,720586935495557120,720586935495557120,720586935495557120,720586935495557120,0],[1441174018118909952,1441174009512198144,1441174018110521344,1441174009503809536,1441173879597826048,1441173870991114240,1441173879597826048,1441173870991114240,1441174017036779520,1441174008430067712,1441174017036779520,1441174008430067712,1441173879597826048,1441173870991114240,1441173879597826048,1441173870991114240,1441174018102132736,1441174009512198144,1441174018093744128,1441174009503809536,1441173879581048832,1441173870991114240,1441173879581048832,1441173870991114240,1441174017020002304,1441174008430067712,1441174017020002304,1441174008430067712,1441173879581048832,1441173870991114240,1441173879581048832,1441173870991114240,0],[2882348036221108224,2882348036187488256,2882348019007619072,2882348019007619072,2882348036221042688,2882348036187488256,2882348019007619072,2882348019007619072,2882347759195717632,2882347759162097664,2882347741982228480,2882347741982228480,2882347759195652096,2882347759162097664,2882347741982228480,2882347741982228480,2882348034073624576,2882348034040004608,2882348016860135424,2882348016860135424,2882348034073559040,2882348034040004608,2882348016860135424,2882348016860135424,2882347759195717632,2882347759162097664,2882347741982228480,2882347741982228480,2882347759195652096,2882347759162097664,2882347741982228480,2882347741982228480,0],[5764696068147249408,5764696033720270848,5764695518324195328,5764695483964456960,5764696033720270848,5764696068147118080,5764695483964456960,5764695518324195328,5764696068147249152,5764696033720270848,5764695518324195328,5764695483964456960,5764696033720270848,5764696068147118080,5764695483964456960,5764695518324195328,5764696068080009216,5764696033720270848,5764695518391435520,5764695483964456960,5764696033720270848,5764696068080009216,5764695483964456960,5764695518391304192,5764696068080009216,5764696033720270848,5764695518391435264,5764695483964456960,5764696033720270848,5764696068080009216,5764695483964456960,5764695518391304192,0],[11529391036782871041,11529391036648390656,11529391036648390656,11529390967928913920,11529391036782608384,11529391036648390656,11529391036782871040,11529391036648390656,11529390967928913920,11529391036782870528,11529391036782608384,11529391036648390656,11529390967928913920,11529391036782608384,11529390967928913920,11529391036782870528,11529390967928913920,11529390967928913920,11529390967928913920,11529391036782608384,11529390967928913920,11529390967928913920,11529390967928913920,11529390967928913920,11529391036648390656,11529390967928913920,11529390967928913920,11529390967928913920,11529391036648390656,11529390967928913920,11529391036648390656,11529390967928913920,0],[4611756524879479810,4611756387171565568,4611756524610519040,4611756387171565568,4611756524878954496,4611756387171565568,4611756524610519040,4611756387171565568,4611756524879478784,4611756387171565568,4611756524610519040,4611756387171565568,4611756524878954496,4611756387171565568,4611756524610519040,4611756387171565568,4611756524879479808,4611756387171565568,4611756524610519040,4611756387171565568,4611756524878954496,4611756387171565568,4611756524610519040,4611756387171565568,4611756524879478784,4611756387171565568,4611756524610519040,4611756387171565568,4611756524878954496,4611756387171565568,4611756524610519040,4611756387171565568,0],[567382630219904,562949953421312,567382630219776,567382359670784,567347999932416,567382359670784,567347999932416,567347999932416,567382630203392,567347999932416,567382630203392,567382359670784,567347999932416,567382359670784,567347999932416,567347999932416,562949953421312,567347999932416,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,567382628106240,562949953421312,567382628106240,567382359670784,567347999932416,567382359670784,567347999932416,567347999932416,567382628106240,567347999932416,567382628106240,567382359670784,567347999932416,567382359670784,567347999932416,567347999932416,562949953421312,567347999932416,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,562949953421312,0],[1416240237150208,1416239696052224,1407374883553280,1407374883553280,1416240232923136,1416239696052224,1407374883553280,1407374883553280,1416170976575488,1416170976575488,1407374883553280,1407374883553280,1416170976575488,1416170976575488,1407374883553280,1407374883553280,1416240237117440,1416239696052224,1407374883553280,1407374883553280,1416240232923136,1416239696052224,1407374883553280,1407374883553280,1416170976575488,1416170976575488,1407374883553280,1407374883553280,1416170976575488,1416170976575488,1407374883553280,1407374883553280,0],[2833579985862656,2833441464778752,2832480474234880,2832341953150976,2833579977474048,2833441464778752,2832480465846272,2832341953150976,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2833578903732224,2833441464778752,2832479392104448,2832341953150976,2833578903732224,2833441464778752,2832479392104448,2832341953150976,2815849278734336,2815849278734336,2814749767106560,2814749767106560,2815849278734336,2815849278734336,2814749767106560,2814749767106560,0],[5667164249915392,5629499534213120,5667162102431744,5664960931692544,5631698557468672,5664958784208896,5631698557468672,5629499534213120,5666887224524800,5629499534213120,5666887224524800,5664683906301952,5631702852435968,5664683906301952,5631702852435968,5629499534213120,5667159954948096,5629499534213120,5667157807464448,5664960931692544,5631702852435968,5664958784208896,5631702852435968,5629499534213120,5666882929557504,5629499534213120,5666882929557504,5664683906301952,5631698557468672,5664683906301952,5631698557468672,5629499534213120,0],[11334324221640704,11263397114937344,11263405721649152,11334315614928896,11329367812603904,11263397114937344,11258999068426240,11329367812603904,11329917568417792,11258999068426240,11258999068426240,11329917568417792,11334324204863488,11258999068426240,11263405704871936,11334315614928896,11333774465826816,11263397114937344,11263405721649152,11333765859115008,11329917568417792,11263397114937344,11258999068426240,11329917568417792,11329367812603904,11258999068426240,11258999068426240,11329367812603904,11333774449049600,11258999068426240,11263405704871936,11333765859115008,0],[22667548931719168,22526794229874688,22658735625207808,22517998136852480,22667531718230016,22667548898099200,22658735625207808,22658735625207808,22526811443363840,22667531718230016,22517998136852480,22658735625207808,22526794229874688,22526811409743872,22517998136852480,22517998136852480,22667548931653632,22526794229874688,22658735625207808,22517998136852480,22667531718230016,22667548898099200,22658735625207808,22658735625207808,22526811443298304,22667531718230016,22517998136852480,22658735625207808,22526794229874688,22526811409743872,22517998136852480,22517998136852480,0],[45053622886727936,45035996273704960,45035996273704960,45053622819487744,45053622886596608,45035996273704960,45035996273704960,45053622819487744,45053588459749376,45035996273704960,45035996273704960,45053588459749376,45053588459749376,45035996273704960,45035996273704960,45053588459749376,45035996273704960,45053622819487744,45053622886727680,45035996273704960,45035996273704960,45053622819487744,45053622886596608,45035996273704960,45035996273704960,45053588459749376,45053588459749376,45035996273704960,45035996273704960,45053588459749376,45053588459749376,45035996273704960,0],[18049651735527937,18049651735265280,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651735527936,18049651735265280,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651735527424,18049651735265280,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651735527424,18049651735265280,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651601047552,18049651601047552,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651601047552,18049651601047552,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651601047552,18049651601047552,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,18049651601047552,18049651601047552,18049582881570816,18049582881570816,18014398509481984,18014398509481984,18014398509481984,18014398509481984,0]],"rooks":[[72340172838076926,262,66046,262,258,1103823438334,258,66046,318,258,318,258,258,318,258,318,72340172838076674,258,65794,258,382,1103823438082,382,65794,258,382,258,382,318,258,318,258,72340172838076678,318,65798,318,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076686,262,65806,262,258,1103823438094,258,65806,270,258,270,258,258,270,258,270,72340172838076674,258,65794,258,270,1103823438082,270,65794,258,270,258,270,270,258,270,258,72340172838076678,270,65798,270,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076702,262,65822,262,258,1103823438110,258,65822,286,258,286,258,258,286,258,286,72340172838076674,258,65794,258,286,1103823438082,286,65794,258,286,258,286,286,258,286,258,72340172838076678,286,65798,286,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076686,262,65806,262,258,1103823438094,258,65806,270,258,270,258,258,270,258,270,72340172838076674,258,65794,258,270,1103823438082,270,65794,258,270,258,270,270,258,270,258,72340172838076678,270,65798,270,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076734,262,65854,262,258,1103823438142,258,65854,510,258,510,258,258,510,258,510,72340172838076674,258,65794,258,318,1103823438082,318,65794,258,318,258,318,382,258,382,258,72340172838076678,382,65798,382,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076686,262,65806,262,258,1103823438094,258,65806,270,258,270,258,258,270,258,270,72340172838076674,258,65794,258,270,1103823438082,270,65794,258,270,258,270,270,258,270,258,72340172838076678,270,65798,270,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076702,262,65822,262,258,1103823438110,258,65822,286,258,286,258,258,286,258,286,72340172838076674,258,65794,258,286,1103823438082,286,65794,258,286,258,286,286,258,286,258,72340172838076678,286,65798,286,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076686,262,65806,262,258,1103823438094,258,65806,270,258,270,258,258,270,258,270,72340172838076674,258,65794,258,270,1103823438082,270,65794,258,270,258,270,270,258,270,258,72340172838076678,270,65798,270,258,1103823438086,258,65798,262,258,262,258,258,262,258,262,72340172838076674,258,65794,258,262,1103823438082,262,65794,258,262,258,262,262,258,262,258,72340172838076798,262,65918,262,258,1103823438206,258,65918,318,258,318,258,258,318,258,318,72340172838076674,258,65794,258,16843262,1103823438082,66046,65794,258,16843262,258,66046,318,258,318,258,72340172838076678,318,65798,318,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076686,262,65806,262,16843010,1103823438094,65794,65806,270,16843010,270,65794,258,270,258,270,72340172838076674,258,65794,258,16843022,1103823438082,65806,65794,258,16843022,258,65806,270,258,270,258,72340172838076678,270,65798,270,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076702,262,65822,262,16843010,1103823438110,65794,65822,286,16843010,286,65794,258,286,258,286,72340172838076674,258,65794,258,16843038,1103823438082,65822,65794,258,16843038,258,65822,286,258,286,258,72340172838076678,286,65798,286,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076686,262,65806,262,16843010,1103823438094,65794,65806,270,16843010,270,65794,258,270,258,270,72340172838076674,258,65794,258,16843022,1103823438082,65806,65794,258,16843022,258,65806,270,258,270,258,72340172838076678,270,65798,270,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076734,262,65854,262,16843010,1103823438142,65794,65854,382,16843010,382,65794,258,382,258,382,72340172838076674,258,65794,258,16843070,1103823438082,65854,65794,258,16843070,258,65854,510,258,510,258,72340172838076678,510,65798,510,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076686,262,65806,262,16843010,1103823438094,65794,65806,270,16843010,270,65794,258,270,258,270,72340172838076674,258,65794,258,16843022,1103823438082,65806,65794,258,16843022,258,65806,270,258,270,258,72340172838076678,270,65798,270,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076702,262,65822,262,16843010,1103823438110,65794,65822,286,16843010,286,65794,258,286,258,286,72340172838076674,258,65794,258,16843038,1103823438082,65822,65794,258,16843038,258,65822,286,258,286,258,72340172838076678,286,65798,286,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,72340172838076686,262,65806,262,16843010,1103823438094,65794,65806,270,16843010,270,65794,258,270,258,270,72340172838076674,258,65794,258,16843022,1103823438082,65806,65794,258,16843022,258,65806,270,258,270,258,72340172838076678,270,65798,270,16843010,1103823438086,65794,65798,262,16843010,262,65794,258,262,258,262,72340172838076674,258,65794,258,16843014,1103823438082,65798,65794,258,16843014,258,65798,262,258,262,258,4311810558,262,66046,262,16843010,4311810558,65794,66046,318,16843010,318,65794,258,318,258,318,4311810306,258,65794,258,16843134,4311810306,65918,65794,258,16843134,258,65918,318,258,318,258,4311810310,318,65798,318,16843010,4311810310,65794,65798,262,16843010,262,65794,258,262,258,262,4311810306,258,65794,258,16843014,4311810306,65798,65794,258,16843014,258,65798,262,258,262,258,4311810318,262,65806,262,16843010,4311810318,65794,65806,270,16843010,270,65794,258,270,258,270,4311810306,258,65794,258,16843022,4311810306,65806,65794,258,16843022,258,65806,270,258,270,258,4311810310,270,65798,270,16843010,4311810310,65794,65798,262,16843010,262,65794,258,262,258,262,4311810306,258,65794,258,16843014,4311810306,65798,65794,258,16843014,258,65798,262,258,262,258,4311810334,262,65822,262,16843010,4311810334,65794,65822,286,16843010,286,65794,258,286,258,286,4311810306,258,65794,258,16843038,4311810306,65822,65794,258,16843038,258,65822,286,258,286,258,4311810310,286,65798,286,16843010,4311810310,65794,65798,262,16843010,262,65794,258,262,258,262,4311810306,258,65794,258,16843014,4311810306,65798,65794,258,16843014,258,65798,262,258,262,258,4311810318,262,65806,262,16843010,4311810318,65794,65806,270,16843010,270,65794,258,270,258,270,4311810306,258,65794,258,16843022,4311810306,65806,65794,258,16843022,258,65806,270,258,270,258,4311810310,270,65798,270,16843010,4311810310,65794,65798,262,16843010,262,65794,258,262,258,262,4311810306,258,65794,258,16843014,4311810306,65798,65794,258,16843014,258,65798,262,258,262,258,4311810366,262,65854,262,16843010,4311810366,65794,65854,282578800148990,16843010,66046,65794,258,1103823438334,258,66046,4311810306,258,65794,258,16843070,4311810306,65854,65794,282578800148738,16843070,65794,65854,382,1103823438082,382,65794,4311810310,382,65798,382,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810318,262,65806,262,16843010,4311810318,65794,65806,282578800148750,16843010,65806,65794,258,1103823438094,258,65806,4311810306,258,65794,258,16843022,4311810306,65806,65794,282578800148738,16843022,65794,65806,270,1103823438082,270,65794,4311810310,270,65798,270,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810334,262,65822,262,16843010,4311810334,65794,65822,282578800148766,16843010,65822,65794,258,1103823438110,258,65822,4311810306,258,65794,258,16843038,4311810306,65822,65794,282578800148738,16843038,65794,65822,286,1103823438082,286,65794,4311810310,286,65798,286,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810318,262,65806,262,16843010,4311810318,65794,65806,282578800148750,16843010,65806,65794,258,1103823438094,258,65806,4311810306,258,65794,258,16843022,4311810306,65806,65794,282578800148738,16843022,65794,65806,270,1103823438082,270,65794,4311810310,270,65798,270,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810430,262,65918,262,16843010,4311810430,65794,65918,282578800148798,16843010,65854,65794,258,1103823438142,258,65854,4311810306,258,65794,258,16843262,4311810306,66046,65794,282578800148738,16843262,65794,66046,318,1103823438082,318,65794,4311810310,318,65798,318,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810318,262,65806,262,16843010,4311810318,65794,65806,282578800148750,16843010,65806,65794,258,1103823438094,258,65806,4311810306,258,65794,258,16843022,4311810306,65806,65794,282578800148738,16843022,65794,65806,270,1103823438082,270,65794,4311810310,270,65798,270,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810334,262,65822,262,16843010,4311810334,65794,65822,282578800148766,16843010,65822,65794,258,1103823438110,258,65822,4311810306,258,65794,258,16843038,4311810306,65822,65794,282578800148738,16843038,65794,65822,286,1103823438082,286,65794,4311810310,286,65798,286,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810318,262,65806,262,16843010,4311810318,65794,65806,282578800148750,16843010,65806,65794,258,1103823438094,258,65806,4311810306,258,65794,258,16843022,4311810306,65806,65794,282578800148738,16843022,65794,65806,270,1103823438082,270,65794,4311810310,270,65798,270,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,258,1103823438086,258,65798,4311810306,258,65794,258,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,262,1103823438082,262,65794,4311810366,262,65854,262,16843010,4311810366,65794,65854,282578800148862,16843010,65918,65794,258,1103823438206,258,65918,4311810306,258,65794,258,16843070,4311810306,65854,65794,282578800148738,16843070,65794,65854,16843262,1103823438082,66046,65794,4311810310,16843262,65798,66046,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,4311810306,16843010,65794,65794,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,4311810318,16843014,65806,65798,16843010,4311810318,65794,65806,282578800148750,16843010,65806,65794,16843010,1103823438094,65794,65806,4311810306,16843010,65794,65794,16843022,4311810306,65806,65794,282578800148738,16843022,65794,65806,16843022,1103823438082,65806,65794,4311810310,16843022,65798,65806,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,4311810306,16843010,65794,65794,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,4311810334,16843014,65822,65798,16843010,4311810334,65794,65822,282578800148766,16843010,65822,65794,16843010,1103823438110,65794,65822,4311810306,16843010,65794,65794,16843038,4311810306,65822,65794,282578800148738,16843038,65794,65822,16843038,1103823438082,65822,65794,4311810310,16843038,65798,65822,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,4311810306,16843010,65794,65794,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,4311810318,16843014,65806,65798,16843010,4311810318,65794,65806,282578800148750,16843010,65806,65794,16843010,1103823438094,65794,65806,4311810306,16843010,65794,65794,16843022,4311810306,65806,65794,282578800148738,16843022,65794,65806,16843022,1103823438082,65806,65794,4311810310,16843022,65798,65806,16843010,4311810310,65794,65798,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,4311810306,16843010,65794,65794,16843014,4311810306,65798,65794,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,510,16843014,510,65798,16843010,510,65794,510,282578800148798,16843010,65854,65794,16843010,1103823438142,65794,65854,258,16843010,258,65794,16843134,258,65918,258,282578800148738,16843134,65794,65918,16843070,1103823438082,65854,65794,262,16843070,262,65854,16843010,262,65794,262,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,258,16843010,258,65794,16843014,258,65798,258,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,270,16843014,270,65798,16843010,270,65794,270,282578800148750,16843010,65806,65794,16843010,1103823438094,65794,65806,258,16843010,258,65794,16843022,258,65806,258,282578800148738,16843022,65794,65806,16843022,1103823438082,65806,65794,262,16843022,262,65806,16843010,262,65794,262,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,258,16843010,258,65794,16843014,258,65798,258,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,286,16843014,286,65798,16843010,286,65794,286,282578800148766,16843010,65822,65794,16843010,1103823438110,65794,65822,258,16843010,258,65794,16843038,258,65822,258,282578800148738,16843038,65794,65822,16843038,1103823438082,65822,65794,262,16843038,262,65822,16843010,262,65794,262,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,258,16843010,258,65794,16843014,258,65798,258,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,270,16843014,270,65798,16843010,270,65794,270,282578800148750,16843010,65806,65794,16843010,1103823438094,65794,65806,258,16843010,258,65794,16843022,258,65806,258,282578800148738,16843022,65794,65806,16843022,1103823438082,65806,65794,262,16843022,262,65806,16843010,262,65794,262,282578800148742,16843010,65798,65794,16843010,1103823438086,65794,65798,258,16843010,258,65794,16843014,258,65798,258,282578800148738,16843014,65794,65798,16843014,1103823438082,65798,65794,318,16843014,318,65798,16843010,318,65794,318,4311810558,16843010,66046,65794,16843010,4311810558,65794,66046,258,16843010,258,65794,16843070,258,65854,258,4311810306,16843070,65794,65854,16843134,4311810306,65918,65794,262,16843134,262,65918,16843010,262,65794,262,4311810310,16843010,65798,65794,16843010,4311810310,65794,65798,258,16843010,258,65794,16843014,258,65798,258,4311810306,16843014,65794,65798,16843014,4311810306,65798,65794,270,16843014,270,65798,16843010,270,65794,270,4311810318,16843010,65806,65794,16843010,4311810318,65794,65806,258,16843010,258,65794,16843022,258,65806,258,4311810306,16843022,65794,65806,16843022,4311810306,65806,65794,262,16843022,262,65806,16843010,262,65794,262,4311810310,16843010,65798,65794,16843010,4311810310,65794,65798,258,16843010,258,65794,16843014,258,65798,258,4311810306,16843014,65794,65798,16843014,4311810306,65798,65794,286,16843014,286,65798,16843010,286,65794,286,4311810334,16843010,65822,65794,16843010,4311810334,65794,65822,258,16843010,258,65794,16843038,258,65822,258,4311810306,16843038,65794,65822,16843038,4311810306,65822,65794,262,16843038,262,65822,16843010,262,65794,262,4311810310,16843010,65798,65794,16843010,4311810310,65794,65798,258,16843010,258,65794,16843014,258,65798,258,4311810306,16843014,65794,65798,16843014,4311810306,65798,65794,270,16843014,270,65798,16843010,270,65794,270,4311810318,16843010,65806,65794,16843010,4311810318,65794,65806,258,16843010,258,65794,16843022,258,65806,258,4311810306,16843022,65794,65806,16843022,4311810306,65806,65794,262,16843022,262,65806,16843010,262,65794,262,4311810310,16843010,65798,65794,16843010,4311810310,65794,65798,258,16843010,258,65794,16843014,258,65798,258,4311810306,16843014,65794,65798,16843014,4311810306,65798,65794,382,16843014,382,65798,16843010,382,65794,382,4311810366,16843010,65854,65794,16843010,4311810366,65794,65854,258,16843010,258,65794,510,258,510,258,4311810306,510,65794,510,16843070,4311810306,65854,65794,262,16843070,262,65854,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,270,16843014,270,65798,258,270,258,270,4311810318,258,65806,258,16843010,4311810318,65794,65806,258,16843010,258,65794,270,258,270,258,4311810306,270,65794,270,16843022,4311810306,65806,65794,262,16843022,262,65806,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,286,16843014,286,65798,258,286,258,286,4311810334,258,65822,258,16843010,4311810334,65794,65822,258,16843010,258,65794,286,258,286,258,4311810306,286,65794,286,16843038,4311810306,65822,65794,262,16843038,262,65822,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,270,16843014,270,65798,258,270,258,270,4311810318,258,65806,258,16843010,4311810318,65794,65806,258,16843010,258,65794,270,258,270,258,4311810306,270,65794,270,16843022,4311810306,65806,65794,262,16843022,262,65806,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,318,16843014,318,65798,258,318,258,318,4311810430,258,65918,258,16843010,4311810430,65794,65918,258,16843010,258,65794,318,258,318,258,4311810306,318,65794,318,16843262,4311810306,66046,65794,262,16843262,262,66046,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,270,16843014,270,65798,258,270,258,270,4311810318,258,65806,258,16843010,4311810318,65794,65806,258,16843010,258,65794,270,258,270,258,4311810306,270,65794,270,16843022,4311810306,65806,65794,262,16843022,262,65806,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,286,16843014,286,65798,258,286,258,286,4311810334,258,65822,258,16843010,4311810334,65794,65822,258,16843010,258,65794,286,258,286,258,4311810306,286,65794,286,16843038,4311810306,65822,65794,262,16843038,262,65822,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,270,16843014,270,65798,258,270,258,270,4311810318,258,65806,258,16843010,4311810318,65794,65806,258,16843010,258,65794,270,258,270,258,4311810306,270,65794,270,16843022,4311810306,65806,65794,262,16843022,262,65806,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,510,16843014,510,65798,258,510,258,510,4311810366,258,65854,258,16843010,4311810366,65794,65854,258,16843010,258,65794,382,258,382,258,4311810306,382,65794,382,16843070,4311810306,65854,65794,262,16843070,262,65854,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,270,16843014,270,65798,258,270,258,270,4311810318,258,65806,258,16843010,4311810318,65794,65806,258,16843010,258,65794,270,258,270,258,4311810306,270,65794,270,16843022,4311810306,65806,65794,262,16843022,262,65806,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,286,16843014,286,65798,258,286,258,286,4311810334,258,65822,258,16843010,4311810334,65794,65822,258,16843010,258,65794,286,258,286,258,4311810306,286,65794,286,16843038,4311810306,65822,65794,262,16843038,262,65822,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,270,16843014,270,65798,258,270,258,270,4311810318,258,65806,258,16843010,4311810318,65794,65806,258,16843010,258,65794,270,258,270,258,4311810306,270,65794,270,16843022,4311810306,65806,65794,262,16843022,262,65806,258,262,258,262,4311810310,258,65798,258,16843010,4311810310,65794,65798,258,16843010,258,65794,262,258,262,258,4311810306,262,65794,262,16843014,4311810306,65798,65794,318,16843014,318,65798,258,318,258,318,510,258,510,258,16843010,510,65794,510,258,16843010,258,65794,318,258,318,258,258,318,258,318,16843134,258,65918,258,262,16843134,262,65918,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,270,16843014,270,65798,258,270,258,270,270,258,270,258,16843010,270,65794,270,258,16843010,258,65794,270,258,270,258,258,270,258,270,16843022,258,65806,258,262,16843022,262,65806,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,286,16843014,286,65798,258,286,258,286,286,258,286,258,16843010,286,65794,286,258,16843010,258,65794,286,258,286,258,258,286,258,286,16843038,258,65822,258,262,16843038,262,65822,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,270,16843014,270,65798,258,270,258,270,270,258,270,258,16843010,270,65794,270,258,16843010,258,65794,270,258,270,258,258,270,258,270,16843022,258,65806,258,262,16843022,262,65806,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,382,16843014,382,65798,258,382,258,382,318,258,318,258,16843010,318,65794,318,258,16843010,258,65794,510,258,510,258,258,510,258,510,16843070,258,65854,258,262,16843070,262,65854,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,270,16843014,270,65798,258,270,258,270,270,258,270,258,16843010,270,65794,270,258,16843010,258,65794,270,258,270,258,258,270,258,270,16843022,258,65806,258,262,16843022,262,65806,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,286,16843014,286,65798,258,286,258,286,286,258,286,258,16843010,286,65794,286,258,16843010,258,65794,286,258,286,258,258,286,258,286,16843038,258,65822,258,262,16843038,262,65822,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,270,16843014,270,65798,258,270,258,270,270,258,270,258,16843010,270,65794,270,258,16843010,258,65794,270,258,270,258,258,270,258,270,16843022,258,65806,258,262,16843022,262,65806,258,262,258,262,262,258,262,258,16843010,262,65794,262,258,16843010,258,65794,262,258,262,258,258,262,258,262,16843014,258,65798,258,318,16843014,318,65798,258,318,258,318,382,258,382,258,16843010,382,65794,382,258,16843010,258,65794,318,258,318,258,258,318,258,318,510,258,510,258,262,510,262,510,258,262,258,262,262,258,262,258,258,262,258,262,258,258,258,258,262,258,262,258,258,262,258,262,262,258,262,258,270,262,270,262,258,270,258,270,270,258,270,258,258,270,258,270,258,258,258,258,270,258,270,258,258,270,258,270,270,258,270,258,262,270,262,270,258,262,258,262,262,258,262,258,258,262,258,262,258,258,258,258,262,258,262,258,258,262,258,262,262,258,262,258,286,262,286,262,258,286,258,286,286,258,286,258,258,286,258,286,258,258,258,258,286,258,286,258,258,286,258,286,286,258,286,258,262,286,262,286,258,262,258,262,262,258,262,258,258,262,258,262,258,258,258,258,262,258,262,258,258,262,258,262,262,258,262,258,270,262,270,262,258,270,258,270,270,258,270,258,258,270,258,270,258,258,258,258,270,258,270,258,258,270,258,270,270,258,270,258,262,270,262,270,258,262,258,262,262,258,262,258,258,262,258,262,258,258,258,258,262,258,262,258,258,262,258,262,262,258,262,258,0],[144680345676153597,517,765,565157600297725,8623620861,765,765,8623620861,33686269,765,765,33686269,33686269,765,765,33686269,131597,765,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131709,525,637,131709,131709,637,637,131709,131709,637,637,131709,131709,637,637,131709,144680345676153349,637,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153373,517,541,565157600297501,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,144680345676153349,541,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153405,517,573,565157600297533,8623620669,573,573,8623620669,33686077,573,573,33686077,33686077,573,573,33686077,131597,573,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131645,525,573,131645,131645,573,573,131645,131645,573,573,131645,131645,573,573,131645,144680345676153349,573,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153373,517,541,565157600297501,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,144680345676153349,541,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153469,517,637,565157600297597,8623620733,637,637,8623620733,33686141,637,637,33686141,33686141,637,637,33686141,131597,637,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131837,525,765,131837,131837,765,765,131837,131837,765,765,131837,131837,765,765,131837,144680345676153349,765,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153373,517,541,565157600297501,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,144680345676153349,541,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153405,517,573,565157600297533,8623620669,573,573,8623620669,33686077,573,573,33686077,33686077,573,573,33686077,131597,573,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131645,525,573,131645,131645,573,573,131645,131645,573,573,131645,131645,573,573,131645,144680345676153349,573,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153373,517,541,565157600297501,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,144680345676153349,525,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,144680345676153357,517,525,565157600297485,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,144680345676153349,541,517,565157600297477,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876413,517,765,2207646876413,8623620861,765,765,8623620861,33686269,765,765,33686269,33686269,765,765,33686269,131597,765,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131709,525,637,131709,131709,637,637,131709,131709,637,637,131709,131709,637,637,131709,2207646876165,637,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876189,517,541,2207646876189,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,2207646876165,541,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876221,517,573,2207646876221,8623620669,573,573,8623620669,33686077,573,573,33686077,33686077,573,573,33686077,131597,573,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131645,525,573,131645,131645,573,573,131645,131645,573,573,131645,131645,573,573,131645,2207646876165,573,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876189,517,541,2207646876189,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,2207646876165,541,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876285,517,637,2207646876285,8623620733,637,637,8623620733,33686141,637,637,33686141,33686141,637,637,33686141,131597,637,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131837,525,765,131837,131837,765,765,131837,131837,765,765,131837,131837,765,765,131837,2207646876165,765,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876189,517,541,2207646876189,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,2207646876165,541,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876221,517,573,2207646876221,8623620669,573,573,8623620669,33686077,573,573,33686077,33686077,573,573,33686077,131597,573,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131645,525,573,131645,131645,573,573,131645,131645,573,573,131645,131645,573,573,131645,2207646876165,573,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876189,517,541,2207646876189,8623620637,541,541,8623620637,33686045,541,541,33686045,33686045,541,541,33686045,131597,541,525,131597,131597,525,525,131597,131597,525,525,131597,131597,525,525,131597,2207646876165,525,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,2207646876173,517,525,2207646876173,8623620621,525,525,8623620621,33686029,525,525,33686029,33686029,525,525,33686029,131613,525,541,131613,131613,541,541,131613,131613,541,541,131613,131613,541,541,131613,2207646876165,541,517,2207646876165,8623620613,517,517,8623620613,33686021,517,517,33686021,33686021,517,517,33686021,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,131589,517,517,131589,0],[289360691352306939,1275,263178,1034,4415293752571,1275,263291,1147,1130315200595194,1274,263291,1147,4415293752570,1274,263290,1146,17247241467,1275,263290,1146,17247241467,1275,263291,1147,17247241466,1274,263291,1147,17247241466,1274,263290,1146,289360691352306699,1035,263290,1146,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306715,1051,263178,1034,4415293752347,1051,263195,1051,1130315200594970,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,289360691352306699,1035,263194,1050,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306747,1083,263178,1034,4415293752379,1083,263227,1083,1130315200595002,1082,263227,1083,4415293752378,1082,263226,1082,17247241275,1083,263226,1082,17247241275,1083,263227,1083,17247241274,1082,263227,1083,17247241274,1082,263226,1082,289360691352306699,1035,263226,1082,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306715,1051,263178,1034,4415293752347,1051,263195,1051,1130315200594970,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,289360691352306699,1035,263194,1050,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306811,1147,263178,1034,4415293752443,1147,263419,1275,1130315200595066,1146,263419,1275,4415293752442,1146,263418,1274,17247241339,1147,263418,1274,17247241339,1147,263419,1275,17247241338,1146,263419,1275,17247241338,1146,263418,1274,289360691352306699,1035,263418,1274,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306715,1051,263178,1034,4415293752347,1051,263195,1051,1130315200594970,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,289360691352306699,1035,263194,1050,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306747,1083,263178,1034,4415293752379,1083,263227,1083,1130315200595002,1082,263227,1083,4415293752378,1082,263226,1082,17247241275,1083,263226,1082,17247241275,1083,263227,1083,17247241274,1082,263227,1083,17247241274,1082,263226,1082,289360691352306699,1035,263226,1082,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,289360691352306715,1051,263178,1034,4415293752347,1051,263195,1051,1130315200594970,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,289360691352306699,1035,263194,1050,4415293752331,1035,263179,1035,1130315200594954,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,67372283,1275,263178,1034,67372283,1275,263291,1147,67372282,1274,263291,1147,67372282,1274,263290,1146,67372283,1275,263290,1146,67372283,1275,263291,1147,67372282,1274,263291,1147,67372282,1274,263290,1146,67372043,1035,263290,1146,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372091,1083,263178,1034,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372091,1083,263226,1082,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372043,1035,263226,1082,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372155,1147,263178,1034,67372155,1147,263419,1275,67372154,1146,263419,1275,67372154,1146,263418,1274,67372155,1147,263418,1274,67372155,1147,263419,1275,67372154,1146,263419,1275,67372154,1146,263418,1274,67372043,1035,263418,1274,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372091,1083,263178,1034,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372091,1083,263226,1082,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372043,1035,263226,1082,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,1130315200595195,1275,263178,1034,4415293752571,1275,263291,1147,289360691352306938,1274,263291,1147,4415293752570,1274,263290,1146,17247241467,1275,263290,1146,17247241467,1275,263291,1147,17247241466,1274,263291,1147,17247241466,1274,263290,1146,1130315200594955,1035,263290,1146,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200594971,1051,263178,1034,4415293752347,1051,263195,1051,289360691352306714,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,1130315200594955,1035,263194,1050,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200595003,1083,263178,1034,4415293752379,1083,263227,1083,289360691352306746,1082,263227,1083,4415293752378,1082,263226,1082,17247241275,1083,263226,1082,17247241275,1083,263227,1083,17247241274,1082,263227,1083,17247241274,1082,263226,1082,1130315200594955,1035,263226,1082,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200594971,1051,263178,1034,4415293752347,1051,263195,1051,289360691352306714,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,1130315200594955,1035,263194,1050,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200595067,1147,263178,1034,4415293752443,1147,263419,1275,289360691352306810,1146,263419,1275,4415293752442,1146,263418,1274,17247241339,1147,263418,1274,17247241339,1147,263419,1275,17247241338,1146,263419,1275,17247241338,1146,263418,1274,1130315200594955,1035,263418,1274,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200594971,1051,263178,1034,4415293752347,1051,263195,1051,289360691352306714,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,1130315200594955,1035,263194,1050,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200595003,1083,263178,1034,4415293752379,1083,263227,1083,289360691352306746,1082,263227,1083,4415293752378,1082,263226,1082,17247241275,1083,263226,1082,17247241275,1083,263227,1083,17247241274,1082,263227,1083,17247241274,1082,263226,1082,1130315200594955,1035,263226,1082,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,1130315200594971,1051,263178,1034,4415293752347,1051,263195,1051,289360691352306714,1050,263195,1051,4415293752346,1050,263194,1050,17247241243,1051,263194,1050,17247241243,1051,263195,1051,17247241242,1050,263195,1051,17247241242,1050,263194,1050,1130315200594955,1035,263194,1050,4415293752331,1035,263179,1035,289360691352306698,1034,263179,1035,4415293752330,1034,263178,1034,17247241227,1035,263178,1034,17247241227,1035,263179,1035,17247241226,1034,263179,1035,17247241226,1034,263178,1034,67372283,1275,263178,1034,67372283,1275,263291,1147,67372282,1274,263291,1147,67372282,1274,263290,1146,67372283,1275,263290,1146,67372283,1275,263291,1147,67372282,1274,263291,1147,67372282,1274,263290,1146,67372043,1035,263290,1146,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372091,1083,263178,1034,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372091,1083,263226,1082,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372043,1035,263226,1082,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372155,1147,263178,1034,67372155,1147,263419,1275,67372154,1146,263419,1275,67372154,1146,263418,1274,67372155,1147,263418,1274,67372155,1147,263419,1275,67372154,1146,263419,1275,67372154,1146,263418,1274,67372043,1035,263418,1274,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372091,1083,263178,1034,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372091,1083,263226,1082,67372091,1083,263227,1083,67372090,1082,263227,1083,67372090,1082,263226,1082,67372043,1035,263226,1082,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372059,1051,263178,1034,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372059,1051,263194,1050,67372059,1051,263195,1051,67372058,1050,263195,1051,67372058,1050,263194,1050,67372043,1035,263194,1050,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,67372043,1035,263178,1034,67372043,1035,263179,1035,67372042,1034,263179,1035,67372042,1034,263178,1034,0],[578721382704613623,2068,8830587504887,2068,134744311,2068,134744311,2068,34494482551,2295,34494482551,2295,134744183,2295,134744183,2295,578721382704613622,2167,8830587504886,2167,134744310,2167,134744310,2167,34494482550,2294,34494482550,2294,134744182,2294,134744182,2294,578721382704613620,2166,8830587504884,2166,134744308,2166,134744308,2166,34494482548,2292,34494482548,2292,134744180,2292,134744180,2292,578721382704613620,2164,8830587504884,2164,134744308,2164,134744308,2164,34494482548,2292,34494482548,2292,134744180,2292,134744180,2292,526391,2164,526391,2164,526391,2164,526391,2164,526391,2103,526391,2103,526391,2103,526391,2103,526390,2103,526390,2103,526390,2103,526390,2103,526390,2102,526390,2102,526390,2102,526390,2102,526388,2102,526388,2102,526388,2102,526388,2102,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,578721382704613399,2100,8830587504663,2100,134744087,2100,134744087,2100,34494482455,2071,34494482455,2071,134744087,2071,134744087,2071,578721382704613398,2071,8830587504662,2071,134744086,2071,134744086,2071,34494482454,2070,34494482454,2070,134744086,2070,134744086,2070,578721382704613396,2070,8830587504660,2070,134744084,2070,134744084,2070,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,578721382704613396,2068,8830587504660,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,578721382704613431,2068,8830587504695,2068,134744119,2068,134744119,2068,34494482487,2103,34494482487,2103,134744119,2103,134744119,2103,578721382704613430,2103,8830587504694,2103,134744118,2103,134744118,2103,34494482486,2102,34494482486,2102,134744118,2102,134744118,2102,578721382704613428,2102,8830587504692,2102,134744116,2102,134744116,2102,34494482484,2100,34494482484,2100,134744116,2100,134744116,2100,578721382704613428,2100,8830587504692,2100,134744116,2100,134744116,2100,34494482484,2100,34494482484,2100,134744116,2100,134744116,2100,526583,2100,526583,2100,526583,2100,526583,2100,526455,2295,526455,2295,526455,2295,526455,2295,526582,2167,526582,2167,526582,2167,526582,2167,526454,2294,526454,2294,526454,2294,526454,2294,526580,2166,526580,2166,526580,2166,526580,2166,526452,2292,526452,2292,526452,2292,526452,2292,526580,2164,526580,2164,526580,2164,526580,2164,526452,2292,526452,2292,526452,2292,526452,2292,578721382704613399,2164,8830587504663,2164,134744087,2164,134744087,2164,34494482455,2071,34494482455,2071,134744087,2071,134744087,2071,578721382704613398,2071,8830587504662,2071,134744086,2071,134744086,2071,34494482454,2070,34494482454,2070,134744086,2070,134744086,2070,578721382704613396,2070,8830587504660,2070,134744084,2070,134744084,2070,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,578721382704613396,2068,8830587504660,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,578721382704613495,2068,8830587504759,2068,134744183,2068,134744183,2068,2260630401190135,2167,8830587504887,2167,134744311,2167,134744311,2167,578721382704613494,2295,8830587504758,2295,134744182,2295,134744182,2295,2260630401190134,2166,8830587504886,2166,134744310,2166,134744310,2166,578721382704613492,2294,8830587504756,2294,134744180,2294,134744180,2294,2260630401190132,2164,8830587504884,2164,134744308,2164,134744308,2164,578721382704613492,2292,8830587504756,2292,134744180,2292,134744180,2292,2260630401190132,2164,8830587504884,2164,134744308,2164,134744308,2164,526391,2292,526391,2292,526391,2292,526391,2292,526391,2103,526391,2103,526391,2103,526391,2103,526390,2103,526390,2103,526390,2103,526390,2103,526390,2102,526390,2102,526390,2102,526390,2102,526388,2102,526388,2102,526388,2102,526388,2102,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,578721382704613399,2100,8830587504663,2100,134744087,2100,134744087,2100,2260630401189911,2071,8830587504663,2071,134744087,2071,134744087,2071,578721382704613398,2071,8830587504662,2071,134744086,2071,134744086,2071,2260630401189910,2070,8830587504662,2070,134744086,2070,134744086,2070,578721382704613396,2070,8830587504660,2070,134744084,2070,134744084,2070,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,578721382704613396,2068,8830587504660,2068,134744084,2068,134744084,2068,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,578721382704613431,2068,8830587504695,2068,134744119,2068,134744119,2068,2260630401189943,2103,8830587504695,2103,134744119,2103,134744119,2103,578721382704613430,2103,8830587504694,2103,134744118,2103,134744118,2103,2260630401189942,2102,8830587504694,2102,134744118,2102,134744118,2102,578721382704613428,2102,8830587504692,2102,134744116,2102,134744116,2102,2260630401189940,2100,8830587504692,2100,134744116,2100,134744116,2100,578721382704613428,2100,8830587504692,2100,134744116,2100,134744116,2100,2260630401189940,2100,8830587504692,2100,134744116,2100,134744116,2100,526455,2100,526455,2100,526455,2100,526455,2100,526583,2167,526583,2167,526583,2167,526583,2167,526454,2295,526454,2295,526454,2295,526454,2295,526582,2166,526582,2166,526582,2166,526582,2166,526452,2294,526452,2294,526452,2294,526452,2294,526580,2164,526580,2164,526580,2164,526580,2164,526452,2292,526452,2292,526452,2292,526452,2292,526580,2164,526580,2164,526580,2164,526580,2164,578721382704613399,2292,8830587504663,2292,134744087,2292,134744087,2292,2260630401189911,2071,8830587504663,2071,134744087,2071,134744087,2071,578721382704613398,2071,8830587504662,2071,134744086,2071,134744086,2071,2260630401189910,2070,8830587504662,2070,134744086,2070,134744086,2070,578721382704613396,2070,8830587504660,2070,134744084,2070,134744084,2070,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,578721382704613396,2068,8830587504660,2068,134744084,2068,134744084,2068,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,34494482679,2068,34494482679,2068,134744311,2068,134744311,2068,2260630401190007,2295,8830587504759,2295,134744183,2295,134744183,2295,34494482678,2167,34494482678,2167,134744310,2167,134744310,2167,2260630401190006,2294,8830587504758,2294,134744182,2294,134744182,2294,34494482676,2166,34494482676,2166,134744308,2166,134744308,2166,2260630401190004,2292,8830587504756,2292,134744180,2292,134744180,2292,34494482676,2164,34494482676,2164,134744308,2164,134744308,2164,2260630401190004,2292,8830587504756,2292,134744180,2292,134744180,2292,526391,2164,526391,2164,526391,2164,526391,2164,526391,2103,526391,2103,526391,2103,526391,2103,526390,2103,526390,2103,526390,2103,526390,2103,526390,2102,526390,2102,526390,2102,526390,2102,526388,2102,526388,2102,526388,2102,526388,2102,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,34494482455,2100,34494482455,2100,134744087,2100,134744087,2100,2260630401189911,2071,8830587504663,2071,134744087,2071,134744087,2071,34494482454,2071,34494482454,2071,134744086,2071,134744086,2071,2260630401189910,2070,8830587504662,2070,134744086,2070,134744086,2070,34494482452,2070,34494482452,2070,134744084,2070,134744084,2070,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,34494482487,2068,34494482487,2068,134744119,2068,134744119,2068,2260630401189943,2103,8830587504695,2103,134744119,2103,134744119,2103,34494482486,2103,34494482486,2103,134744118,2103,134744118,2103,2260630401189942,2102,8830587504694,2102,134744118,2102,134744118,2102,34494482484,2102,34494482484,2102,134744116,2102,134744116,2102,2260630401189940,2100,8830587504692,2100,134744116,2100,134744116,2100,34494482484,2100,34494482484,2100,134744116,2100,134744116,2100,2260630401189940,2100,8830587504692,2100,134744116,2100,134744116,2100,526583,2100,526583,2100,526583,2100,526583,2100,526455,2295,526455,2295,526455,2295,526455,2295,526582,2167,526582,2167,526582,2167,526582,2167,526454,2294,526454,2294,526454,2294,526454,2294,526580,2166,526580,2166,526580,2166,526580,2166,526452,2292,526452,2292,526452,2292,526452,2292,526580,2164,526580,2164,526580,2164,526580,2164,526452,2292,526452,2292,526452,2292,526452,2292,34494482455,2164,34494482455,2164,134744087,2164,134744087,2164,2260630401189911,2071,8830587504663,2071,134744087,2071,134744087,2071,34494482454,2071,34494482454,2071,134744086,2071,134744086,2071,2260630401189910,2070,8830587504662,2070,134744086,2070,134744086,2070,34494482452,2070,34494482452,2070,134744084,2070,134744084,2070,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,2260630401189908,2068,8830587504660,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,34494482551,2068,34494482551,2068,134744183,2068,134744183,2068,34494482679,2167,34494482679,2167,134744311,2167,134744311,2167,34494482550,2295,34494482550,2295,134744182,2295,134744182,2295,34494482678,2166,34494482678,2166,134744310,2166,134744310,2166,34494482548,2294,34494482548,2294,134744180,2294,134744180,2294,34494482676,2164,34494482676,2164,134744308,2164,134744308,2164,34494482548,2292,34494482548,2292,134744180,2292,134744180,2292,34494482676,2164,34494482676,2164,134744308,2164,134744308,2164,526391,2292,526391,2292,526391,2292,526391,2292,526391,2103,526391,2103,526391,2103,526391,2103,526390,2103,526390,2103,526390,2103,526390,2103,526390,2102,526390,2102,526390,2102,526390,2102,526388,2102,526388,2102,526388,2102,526388,2102,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,526388,2100,34494482455,2100,34494482455,2100,134744087,2100,134744087,2100,34494482455,2071,34494482455,2071,134744087,2071,134744087,2071,34494482454,2071,34494482454,2071,134744086,2071,134744086,2071,34494482454,2070,34494482454,2070,134744086,2070,134744086,2070,34494482452,2070,34494482452,2070,134744084,2070,134744084,2070,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,34494482487,2068,34494482487,2068,134744119,2068,134744119,2068,34494482487,2103,34494482487,2103,134744119,2103,134744119,2103,34494482486,2103,34494482486,2103,134744118,2103,134744118,2103,34494482486,2102,34494482486,2102,134744118,2102,134744118,2102,34494482484,2102,34494482484,2102,134744116,2102,134744116,2102,34494482484,2100,34494482484,2100,134744116,2100,134744116,2100,34494482484,2100,34494482484,2100,134744116,2100,134744116,2100,34494482484,2100,34494482484,2100,134744116,2100,134744116,2100,526455,2100,526455,2100,526455,2100,526455,2100,526583,2167,526583,2167,526583,2167,526583,2167,526454,2295,526454,2295,526454,2295,526454,2295,526582,2166,526582,2166,526582,2166,526582,2166,526452,2294,526452,2294,526452,2294,526452,2294,526580,2164,526580,2164,526580,2164,526580,2164,526452,2292,526452,2292,526452,2292,526452,2292,526580,2164,526580,2164,526580,2164,526580,2164,34494482455,2292,34494482455,2292,134744087,2292,134744087,2292,34494482455,2071,34494482455,2071,134744087,2071,134744087,2071,34494482454,2071,34494482454,2071,134744086,2071,134744086,2071,34494482454,2070,34494482454,2070,134744086,2070,134744086,2070,34494482452,2070,34494482452,2070,134744084,2070,134744084,2070,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,34494482452,2068,34494482452,2068,134744084,2068,134744084,2068,526359,2068,526359,2068,526359,2068,526359,2068,526359,2071,526359,2071,526359,2071,526359,2071,526358,2071,526358,2071,526358,2071,526358,2071,526358,2070,526358,2070,526358,2070,526358,2070,526356,2070,526356,2070,526356,2070,526356,2070,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,526356,2068,0],[1157442765409226991,68988964911,269488367,269488175,1052712,1052776,1052712,1052776,4335,4143,4335,4143,4136,4200,4136,4200,1052911,1052719,1052911,1052719,4521260802380015,68988964911,269488367,269488175,4335,4143,4335,4143,4335,4143,4335,4143,1157442765409226990,68988964910,269488366,269488174,1052911,1052719,1052911,1052719,4334,4142,4334,4142,4335,4143,4335,4143,1052910,1052718,1052910,1052718,4521260802380014,68988964910,269488366,269488174,4334,4142,4334,4142,4334,4142,4334,4142,1157442765409226988,68988964908,269488364,269488172,1052910,1052718,1052910,1052718,4332,4140,4332,4140,4334,4142,4334,4142,1052908,1052716,1052908,1052716,4521260802380012,68988964908,269488364,269488172,4332,4140,4332,4140,4332,4140,4332,4140,1157442765409226988,68988964908,269488364,269488172,1052908,1052716,1052908,1052716,4332,4140,4332,4140,4332,4140,4332,4140,1052908,1052716,1052908,1052716,4521260802380012,68988964908,269488364,269488172,4332,4140,4332,4140,4332,4140,4332,4140,1157442765409226984,68988964904,269488360,269488168,1052908,1052716,1052908,1052716,4328,4136,4328,4136,4332,4140,4332,4140,1052904,1052712,1052904,1052712,4521260802380008,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,1157442765409226984,68988964904,269488360,269488168,1052904,1052712,1052904,1052712,4328,4136,4328,4136,4328,4136,4328,4136,1052904,1052712,1052904,1052712,4521260802380008,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,1157442765409226984,68988964904,269488360,269488168,1052904,1052712,1052904,1052712,4328,4136,4328,4136,4328,4136,4328,4136,1052904,1052712,1052904,1052712,4521260802380008,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,1157442765409226984,68988964904,269488360,269488168,1052904,1052712,1052904,1052712,4328,4136,4328,4136,4328,4136,4328,4136,1052904,1052712,1052904,1052712,4521260802380008,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,17661175009519,68988964911,269488367,269488175,1052904,1052712,1052904,1052712,4335,4143,4335,4143,4328,4136,4328,4136,1052911,1052719,1052911,1052719,17661175009519,68988964911,269488367,269488175,4335,4143,4335,4143,4335,4143,4335,4143,17661175009518,68988964910,269488366,269488174,1052911,1052719,1052911,1052719,4334,4142,4334,4142,4335,4143,4335,4143,1052910,1052718,1052910,1052718,17661175009518,68988964910,269488366,269488174,4334,4142,4334,4142,4334,4142,4334,4142,17661175009516,68988964908,269488364,269488172,1052910,1052718,1052910,1052718,4332,4140,4332,4140,4334,4142,4334,4142,1052908,1052716,1052908,1052716,17661175009516,68988964908,269488364,269488172,4332,4140,4332,4140,4332,4140,4332,4140,17661175009516,68988964908,269488364,269488172,1052908,1052716,1052908,1052716,4332,4140,4332,4140,4332,4140,4332,4140,1052908,1052716,1052908,1052716,17661175009516,68988964908,269488364,269488172,4332,4140,4332,4140,4332,4140,4332,4140,17661175009512,68988964904,269488360,269488168,1052908,1052716,1052908,1052716,4328,4136,4328,4136,4332,4140,4332,4140,1052904,1052712,1052904,1052712,17661175009512,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,17661175009512,68988964904,269488360,269488168,1052904,1052712,1052904,1052712,4328,4136,4328,4136,4328,4136,4328,4136,1052904,1052712,1052904,1052712,17661175009512,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,17661175009512,68988964904,269488360,269488168,1052904,1052712,1052904,1052712,4328,4136,4328,4136,4328,4136,4328,4136,1052904,1052712,1052904,1052712,17661175009512,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,17661175009512,68988964904,269488360,269488168,1052904,1052712,1052904,1052712,4328,4136,4328,4136,4328,4136,4328,4136,1052904,1052712,1052904,1052712,17661175009512,68988964904,269488360,269488168,4328,4136,4328,4136,4328,4136,4328,4136,1157442765409226799,68988965103,269488175,269488367,1052904,1052712,1052904,1052712,4143,4335,4143,4335,4328,4136,4328,4136,1052719,1052911,1052719,1052911,4521260802379823,68988965103,269488175,269488367,4143,4335,4143,4335,4143,4335,4143,4335,1157442765409226798,68988965102,269488174,269488366,1052719,1052911,1052719,1052911,4142,4334,4142,4334,4143,4335,4143,4335,1052718,1052910,1052718,1052910,4521260802379822,68988965102,269488174,269488366,4142,4334,4142,4334,4142,4334,4142,4334,1157442765409226796,68988965100,269488172,269488364,1052718,1052910,1052718,1052910,4140,4332,4140,4332,4142,4334,4142,4334,1052716,1052908,1052716,1052908,4521260802379820,68988965100,269488172,269488364,4140,4332,4140,4332,4140,4332,4140,4332,1157442765409226796,68988965100,269488172,269488364,1052716,1052908,1052716,1052908,4140,4332,4140,4332,4140,4332,4140,4332,1052716,1052908,1052716,1052908,4521260802379820,68988965100,269488172,269488364,4140,4332,4140,4332,4140,4332,4140,4332,1157442765409226792,68988965096,269488168,269488360,1052716,1052908,1052716,1052908,4136,4328,4136,4328,4140,4332,4140,4332,1052712,1052904,1052712,1052904,4521260802379816,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,1157442765409226792,68988965096,269488168,269488360,1052712,1052904,1052712,1052904,4136,4328,4136,4328,4136,4328,4136,4328,1052712,1052904,1052712,1052904,4521260802379816,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,1157442765409226792,68988965096,269488168,269488360,1052712,1052904,1052712,1052904,4136,4328,4136,4328,4136,4328,4136,4328,1052712,1052904,1052712,1052904,4521260802379816,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,1157442765409226792,68988965096,269488168,269488360,1052712,1052904,1052712,1052904,4136,4328,4136,4328,4136,4328,4136,4328,1052712,1052904,1052712,1052904,4521260802379816,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,17661175009327,68988965103,269488175,269488367,1052712,1052904,1052712,1052904,4143,4335,4143,4335,4136,4328,4136,4328,1052719,1052911,1052719,1052911,17661175009327,68988965103,269488175,269488367,4143,4335,4143,4335,4143,4335,4143,4335,17661175009326,68988965102,269488174,269488366,1052719,1052911,1052719,1052911,4142,4334,4142,4334,4143,4335,4143,4335,1052718,1052910,1052718,1052910,17661175009326,68988965102,269488174,269488366,4142,4334,4142,4334,4142,4334,4142,4334,17661175009324,68988965100,269488172,269488364,1052718,1052910,1052718,1052910,4140,4332,4140,4332,4142,4334,4142,4334,1052716,1052908,1052716,1052908,17661175009324,68988965100,269488172,269488364,4140,4332,4140,4332,4140,4332,4140,4332,17661175009324,68988965100,269488172,269488364,1052716,1052908,1052716,1052908,4140,4332,4140,4332,4140,4332,4140,4332,1052716,1052908,1052716,1052908,17661175009324,68988965100,269488172,269488364,4140,4332,4140,4332,4140,4332,4140,4332,17661175009320,68988965096,269488168,269488360,1052716,1052908,1052716,1052908,4136,4328,4136,4328,4140,4332,4140,4332,1052712,1052904,1052712,1052904,17661175009320,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,17661175009320,68988965096,269488168,269488360,1052712,1052904,1052712,1052904,4136,4328,4136,4328,4136,4328,4136,4328,1052712,1052904,1052712,1052904,17661175009320,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,17661175009320,68988965096,269488168,269488360,1052712,1052904,1052712,1052904,4136,4328,4136,4328,4136,4328,4136,4328,1052712,1052904,1052712,1052904,17661175009320,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,17661175009320,68988965096,269488168,269488360,1052712,1052904,1052712,1052904,4136,4328,4136,4328,4136,4328,4136,4328,1052712,1052904,1052712,1052904,17661175009320,68988965096,269488168,269488360,4136,4328,4136,4328,4136,4328,4136,4328,1157442765409226863,68988964911,269488239,269488175,1052712,1052904,1052712,1052904,4207,4143,4207,4143,4136,4328,4136,4328,1052783,1052719,1052783,1052719,4521260802379887,68988964911,269488239,269488175,4207,4143,4207,4143,4207,4143,4207,4143,1157442765409226862,68988964910,269488238,269488174,1052783,1052719,1052783,1052719,4206,4142,4206,4142,4207,4143,4207,4143,1052782,1052718,1052782,1052718,4521260802379886,68988964910,269488238,269488174,4206,4142,4206,4142,4206,4142,4206,4142,1157442765409226860,68988964908,269488236,269488172,1052782,1052718,1052782,1052718,4204,4140,4204,4140,4206,4142,4206,4142,1052780,1052716,1052780,1052716,4521260802379884,68988964908,269488236,269488172,4204,4140,4204,4140,4204,4140,4204,4140,1157442765409226860,68988964908,269488236,269488172,1052780,1052716,1052780,1052716,4204,4140,4204,4140,4204,4140,4204,4140,1052780,1052716,1052780,1052716,4521260802379884,68988964908,269488236,269488172,4204,4140,4204,4140,4204,4140,4204,4140,1157442765409226856,68988964904,269488232,269488168,1052780,1052716,1052780,1052716,4200,4136,4200,4136,4204,4140,4204,4140,1052776,1052712,1052776,1052712,4521260802379880,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,1157442765409226856,68988964904,269488232,269488168,1052776,1052712,1052776,1052712,4200,4136,4200,4136,4200,4136,4200,4136,1052776,1052712,1052776,1052712,4521260802379880,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,1157442765409226856,68988964904,269488232,269488168,1052776,1052712,1052776,1052712,4200,4136,4200,4136,4200,4136,4200,4136,1052776,1052712,1052776,1052712,4521260802379880,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,1157442765409226856,68988964904,269488232,269488168,1052776,1052712,1052776,1052712,4200,4136,4200,4136,4200,4136,4200,4136,1052776,1052712,1052776,1052712,4521260802379880,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,17661175009391,68988964911,269488239,269488175,1052776,1052712,1052776,1052712,4207,4143,4207,4143,4200,4136,4200,4136,1052783,1052719,1052783,1052719,17661175009391,68988964911,269488239,269488175,4207,4143,4207,4143,4207,4143,4207,4143,17661175009390,68988964910,269488238,269488174,1052783,1052719,1052783,1052719,4206,4142,4206,4142,4207,4143,4207,4143,1052782,1052718,1052782,1052718,17661175009390,68988964910,269488238,269488174,4206,4142,4206,4142,4206,4142,4206,4142,17661175009388,68988964908,269488236,269488172,1052782,1052718,1052782,1052718,4204,4140,4204,4140,4206,4142,4206,4142,1052780,1052716,1052780,1052716,17661175009388,68988964908,269488236,269488172,4204,4140,4204,4140,4204,4140,4204,4140,17661175009388,68988964908,269488236,269488172,1052780,1052716,1052780,1052716,4204,4140,4204,4140,4204,4140,4204,4140,1052780,1052716,1052780,1052716,17661175009388,68988964908,269488236,269488172,4204,4140,4204,4140,4204,4140,4204,4140,17661175009384,68988964904,269488232,269488168,1052780,1052716,1052780,1052716,4200,4136,4200,4136,4204,4140,4204,4140,1052776,1052712,1052776,1052712,17661175009384,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,17661175009384,68988964904,269488232,269488168,1052776,1052712,1052776,1052712,4200,4136,4200,4136,4200,4136,4200,4136,1052776,1052712,1052776,1052712,17661175009384,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,17661175009384,68988964904,269488232,269488168,1052776,1052712,1052776,1052712,4200,4136,4200,4136,4200,4136,4200,4136,1052776,1052712,1052776,1052712,17661175009384,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,17661175009384,68988964904,269488232,269488168,1052776,1052712,1052776,1052712,4200,4136,4200,4136,4200,4136,4200,4136,1052776,1052712,1052776,1052712,17661175009384,68988964904,269488232,269488168,4200,4136,4200,4136,4200,4136,4200,4136,1157442765409226799,68988964975,269488175,269488239,1052776,1052712,1052776,1052712,4143,4207,4143,4207,4200,4136,4200,4136,1052719,1052783,1052719,1052783,4521260802379823,68988964975,269488175,269488239,4143,4207,4143,4207,4143,4207,4143,4207,1157442765409226798,68988964974,269488174,269488238,1052719,1052783,1052719,1052783,4142,4206,4142,4206,4143,4207,4143,4207,1052718,1052782,1052718,1052782,4521260802379822,68988964974,269488174,269488238,4142,4206,4142,4206,4142,4206,4142,4206,1157442765409226796,68988964972,269488172,269488236,1052718,1052782,1052718,1052782,4140,4204,4140,4204,4142,4206,4142,4206,1052716,1052780,1052716,1052780,4521260802379820,68988964972,269488172,269488236,4140,4204,4140,4204,4140,4204,4140,4204,1157442765409226796,68988964972,269488172,269488236,1052716,1052780,1052716,1052780,4140,4204,4140,4204,4140,4204,4140,4204,1052716,1052780,1052716,1052780,4521260802379820,68988964972,269488172,269488236,4140,4204,4140,4204,4140,4204,4140,4204,1157442765409226792,68988964968,269488168,269488232,1052716,1052780,1052716,1052780,4136,4200,4136,4200,4140,4204,4140,4204,1052712,1052776,1052712,1052776,4521260802379816,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,1157442765409226792,68988964968,269488168,269488232,1052712,1052776,1052712,1052776,4136,4200,4136,4200,4136,4200,4136,4200,1052712,1052776,1052712,1052776,4521260802379816,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,1157442765409226792,68988964968,269488168,269488232,1052712,1052776,1052712,1052776,4136,4200,4136,4200,4136,4200,4136,4200,1052712,1052776,1052712,1052776,4521260802379816,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,1157442765409226792,68988964968,269488168,269488232,1052712,1052776,1052712,1052776,4136,4200,4136,4200,4136,4200,4136,4200,1052712,1052776,1052712,1052776,4521260802379816,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,17661175009327,68988964975,269488175,269488239,1052712,1052776,1052712,1052776,4143,4207,4143,4207,4136,4200,4136,4200,1052719,1052783,1052719,1052783,17661175009327,68988964975,269488175,269488239,4143,4207,4143,4207,4143,4207,4143,4207,17661175009326,68988964974,269488174,269488238,1052719,1052783,1052719,1052783,4142,4206,4142,4206,4143,4207,4143,4207,1052718,1052782,1052718,1052782,17661175009326,68988964974,269488174,269488238,4142,4206,4142,4206,4142,4206,4142,4206,17661175009324,68988964972,269488172,269488236,1052718,1052782,1052718,1052782,4140,4204,4140,4204,4142,4206,4142,4206,1052716,1052780,1052716,1052780,17661175009324,68988964972,269488172,269488236,4140,4204,4140,4204,4140,4204,4140,4204,17661175009324,68988964972,269488172,269488236,1052716,1052780,1052716,1052780,4140,4204,4140,4204,4140,4204,4140,4204,1052716,1052780,1052716,1052780,17661175009324,68988964972,269488172,269488236,4140,4204,4140,4204,4140,4204,4140,4204,17661175009320,68988964968,269488168,269488232,1052716,1052780,1052716,1052780,4136,4200,4136,4200,4140,4204,4140,4204,1052712,1052776,1052712,1052776,17661175009320,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,17661175009320,68988964968,269488168,269488232,1052712,1052776,1052712,1052776,4136,4200,4136,4200,4136,4200,4136,4200,1052712,1052776,1052712,1052776,17661175009320,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,17661175009320,68988964968,269488168,269488232,1052712,1052776,1052712,1052776,4136,4200,4136,4200,4136,4200,4136,4200,1052712,1052776,1052712,1052776,17661175009320,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,17661175009320,68988964968,269488168,269488232,1052712,1052776,1052712,1052776,4136,4200,4136,4200,4136,4200,4136,4200,1052712,1052776,1052712,1052776,17661175009320,68988964968,269488168,269488232,4136,4200,4136,4200,4136,4200,4136,4200,0],[2314885530818453727,2105552,8415,8400,538976479,2105552,8415,8400,2105566,2105424,8414,8272,2105566,2105424,8414,8272,2105436,35322350018640,8284,8272,2105436,538976336,8284,8272,137977929820,2105552,8284,8400,538976348,2105552,8284,8400,2105560,35322350018768,8408,8400,2105560,538976464,8408,8400,137977929944,35322350018640,8408,8272,538976472,538976336,8408,8272,137977929816,2105424,8280,8272,538976344,2105424,8280,8272,2105432,35322350018768,8280,8400,2105432,538976464,8280,8400,137977929936,35322350018783,8400,8415,538976464,538976479,8400,8415,2105552,2105566,8400,8414,2105552,2105566,8400,8414,2105424,2105436,8272,8284,2105424,2105436,8272,8284,9042521604759632,137977929820,8272,8284,538976336,538976348,8272,8284,2105552,2105560,8400,8408,2105552,2105560,8400,8408,9042521604759760,137977929944,8400,8408,538976464,538976472,8400,8408,2314885530818453584,137977929816,8272,8280,538976336,538976344,8272,8280,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2105439,137977929936,8287,8400,2105439,538976464,8287,8400,2314885530818453726,2105552,8414,8400,538976478,2105552,8414,8400,2105564,2105424,8412,8272,2105564,2105424,8412,8272,2105436,35322350018640,8284,8272,2105436,538976336,8284,8272,137977929816,2105552,8280,8400,538976344,2105552,8280,8400,2105560,35322350018768,8408,8400,2105560,538976464,8408,8400,137977929944,35322350018640,8408,8272,538976472,538976336,8408,8272,137977929816,2105424,8280,8272,538976344,2105424,8280,8272,2105424,2105439,8272,8287,2105424,2105439,8272,8287,137977929936,35322350018782,8400,8414,538976464,538976478,8400,8414,2105552,2105564,8400,8412,2105552,2105564,8400,8412,2105424,2105436,8272,8284,2105424,2105436,8272,8284,9042521604759632,137977929816,8272,8280,538976336,538976344,8272,8280,2105552,2105560,8400,8408,2105552,2105560,8400,8408,9042521604759760,137977929944,8400,8408,538976464,538976472,8400,8408,2314885530818453584,137977929816,8272,8280,538976336,538976344,8272,8280,2314885530818453599,2105424,8287,8272,538976351,2105424,8287,8272,2105438,137977929936,8286,8400,2105438,538976464,8286,8400,2314885530818453724,2105552,8412,8400,538976476,2105552,8412,8400,2105564,2105424,8412,8272,2105564,2105424,8412,8272,2105432,35322350018640,8280,8272,2105432,538976336,8280,8272,137977929816,2105552,8280,8400,538976344,2105552,8280,8400,2105560,35322350018768,8408,8400,2105560,538976464,8408,8400,137977929944,35322350018640,8408,8272,538976472,538976336,8408,8272,137977929808,35322350018655,8272,8287,538976336,538976351,8272,8287,2105424,2105438,8272,8286,2105424,2105438,8272,8286,137977929936,35322350018780,8400,8412,538976464,538976476,8400,8412,2105552,2105564,8400,8412,2105552,2105564,8400,8412,2105424,2105432,8272,8280,2105424,2105432,8272,8280,9042521604759632,137977929816,8272,8280,538976336,538976344,8272,8280,2105552,2105560,8400,8408,2105552,2105560,8400,8408,9042521604759760,137977929944,8400,8408,538976464,538976472,8400,8408,9042521604759775,137977929808,8415,8272,538976479,538976336,8415,8272,2314885530818453598,2105424,8286,8272,538976350,2105424,8286,8272,2105436,137977929936,8284,8400,2105436,538976464,8284,8400,2314885530818453724,2105552,8412,8400,538976476,2105552,8412,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105432,35322350018640,8280,8272,2105432,538976336,8280,8272,137977929816,2105552,8280,8400,538976344,2105552,8280,8400,2105560,35322350018768,8408,8400,2105560,538976464,8408,8400,137977929936,35322350018783,8400,8415,538976464,538976479,8400,8415,137977929808,35322350018654,8272,8286,538976336,538976350,8272,8286,2105424,2105436,8272,8284,2105424,2105436,8272,8284,137977929936,35322350018780,8400,8412,538976464,538976476,8400,8412,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105424,2105432,8272,8280,2105424,2105432,8272,8280,9042521604759632,137977929816,8272,8280,538976336,538976344,8272,8280,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105567,137977929936,8415,8400,2105567,538976464,8415,8400,9042521604759774,137977929808,8414,8272,538976478,538976336,8414,8272,2314885530818453596,2105424,8284,8272,538976348,2105424,8284,8272,2105436,137977929936,8284,8400,2105436,538976464,8284,8400,2314885530818453720,2105552,8408,8400,538976472,2105552,8408,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105432,35322350018640,8280,8272,2105432,538976336,8280,8272,137977929816,2105552,8280,8400,538976344,2105552,8280,8400,2105552,2105567,8400,8415,2105552,2105567,8400,8415,137977929936,35322350018782,8400,8414,538976464,538976478,8400,8414,137977929808,35322350018652,8272,8284,538976336,538976348,8272,8284,2105424,2105436,8272,8284,2105424,2105436,8272,8284,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105424,2105432,8272,8280,2105424,2105432,8272,8280,9042521604759632,137977929816,8272,8280,538976336,538976344,8272,8280,9042521604759647,2105552,8287,8400,538976351,2105552,8287,8400,2105566,137977929936,8414,8400,2105566,538976464,8414,8400,9042521604759772,137977929808,8412,8272,538976476,538976336,8412,8272,2314885530818453596,2105424,8284,8272,538976348,2105424,8284,8272,2105432,137977929936,8280,8400,2105432,538976464,8280,8400,2314885530818453720,2105552,8408,8400,538976472,2105552,8408,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105432,35322350018640,8280,8272,2105432,538976336,8280,8272,137977929808,35322350018655,8272,8287,538976336,538976351,8272,8287,2105552,2105566,8400,8414,2105552,2105566,8400,8414,137977929936,35322350018780,8400,8412,538976464,538976476,8400,8412,137977929808,35322350018652,8272,8284,538976336,538976348,8272,8284,2105424,2105432,8272,8280,2105424,2105432,8272,8280,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2105439,137977929808,8287,8272,2105439,538976336,8287,8272,9042521604759646,2105552,8286,8400,538976350,2105552,8286,8400,2105564,137977929936,8412,8400,2105564,538976464,8412,8400,9042521604759772,137977929808,8412,8272,538976476,538976336,8412,8272,2314885530818453592,2105424,8280,8272,538976344,2105424,8280,8272,2105432,137977929936,8280,8400,2105432,538976464,8280,8400,2314885530818453720,2105552,8408,8400,538976472,2105552,8408,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105424,2105439,8272,8287,2105424,2105439,8272,8287,137977929808,35322350018654,8272,8286,538976336,538976350,8272,8286,2105552,2105564,8400,8412,2105552,2105564,8400,8412,137977929936,35322350018780,8400,8412,538976464,538976476,8400,8412,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,2105424,2105432,8272,8280,2105424,2105432,8272,8280,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105567,2105424,8415,8272,2105567,2105424,8415,8272,2105438,137977929808,8286,8272,2105438,538976336,8286,8272,9042521604759644,2105552,8284,8400,538976348,2105552,8284,8400,2105564,137977929936,8412,8400,2105564,538976464,8412,8400,9042521604759768,137977929808,8408,8272,538976472,538976336,8408,8272,2314885530818453592,2105424,8280,8272,538976344,2105424,8280,8272,2105432,137977929936,8280,8400,2105432,538976464,8280,8400,2314885530818453720,2105552,8408,8400,538976472,2105552,8408,8400,2105552,2105567,8400,8415,2105552,2105567,8400,8415,2105424,2105438,8272,8286,2105424,2105438,8272,8286,137977929808,35322350018652,8272,8284,538976336,538976348,8272,8284,2105552,2105564,8400,8412,2105552,2105564,8400,8412,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,2105424,2105432,8272,8280,2105424,2105432,8272,8280,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,137977929951,2105552,8415,8400,538976479,2105552,8415,8400,2105566,2105424,8414,8272,2105566,2105424,8414,8272,2105436,137977929808,8284,8272,2105436,538976336,8284,8272,9042521604759644,2105552,8284,8400,538976348,2105552,8284,8400,2105560,137977929936,8408,8400,2105560,538976464,8408,8400,9042521604759768,137977929808,8408,8272,538976472,538976336,8408,8272,2314885530818453592,2105424,8280,8272,538976344,2105424,8280,8272,2105432,137977929936,8280,8400,2105432,538976464,8280,8400,2314885530818453712,137977929951,8400,8415,538976464,538976479,8400,8415,2105552,2105566,8400,8414,2105552,2105566,8400,8414,2105424,2105436,8272,8284,2105424,2105436,8272,8284,137977929808,35322350018652,8272,8284,538976336,538976348,8272,8284,2105552,2105560,8400,8408,2105552,2105560,8400,8408,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2105439,35322350018768,8287,8400,2105439,538976464,8287,8400,137977929950,2105552,8414,8400,538976478,2105552,8414,8400,2105564,2105424,8412,8272,2105564,2105424,8412,8272,2105436,137977929808,8284,8272,2105436,538976336,8284,8272,9042521604759640,2105552,8280,8400,538976344,2105552,8280,8400,2105560,137977929936,8408,8400,2105560,538976464,8408,8400,9042521604759768,137977929808,8408,8272,538976472,538976336,8408,8272,2314885530818453592,2105424,8280,8272,538976344,2105424,8280,8272,2105424,2105439,8272,8287,2105424,2105439,8272,8287,2314885530818453712,137977929950,8400,8414,538976464,538976478,8400,8414,2105552,2105564,8400,8412,2105552,2105564,8400,8412,2105424,2105436,8272,8284,2105424,2105436,8272,8284,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,2105552,2105560,8400,8408,2105552,2105560,8400,8408,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,137977929823,2105424,8287,8272,538976351,2105424,8287,8272,2105438,35322350018768,8286,8400,2105438,538976464,8286,8400,137977929948,2105552,8412,8400,538976476,2105552,8412,8400,2105564,2105424,8412,8272,2105564,2105424,8412,8272,2105432,137977929808,8280,8272,2105432,538976336,8280,8272,9042521604759640,2105552,8280,8400,538976344,2105552,8280,8400,2105560,137977929936,8408,8400,2105560,538976464,8408,8400,9042521604759768,137977929808,8408,8272,538976472,538976336,8408,8272,2314885530818453584,137977929823,8272,8287,538976336,538976351,8272,8287,2105424,2105438,8272,8286,2105424,2105438,8272,8286,2314885530818453712,137977929948,8400,8412,538976464,538976476,8400,8412,2105552,2105564,8400,8412,2105552,2105564,8400,8412,2105424,2105432,8272,8280,2105424,2105432,8272,8280,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,2105552,2105560,8400,8408,2105552,2105560,8400,8408,137977929936,35322350018776,8400,8408,538976464,538976472,8400,8408,137977929951,35322350018640,8415,8272,538976479,538976336,8415,8272,137977929822,2105424,8286,8272,538976350,2105424,8286,8272,2105436,35322350018768,8284,8400,2105436,538976464,8284,8400,137977929948,2105552,8412,8400,538976476,2105552,8412,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105432,137977929808,8280,8272,2105432,538976336,8280,8272,9042521604759640,2105552,8280,8400,538976344,2105552,8280,8400,2105560,137977929936,8408,8400,2105560,538976464,8408,8400,9042521604759760,137977929951,8400,8415,538976464,538976479,8400,8415,2314885530818453584,137977929822,8272,8286,538976336,538976350,8272,8286,2105424,2105436,8272,8284,2105424,2105436,8272,8284,2314885530818453712,137977929948,8400,8412,538976464,538976476,8400,8412,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105424,2105432,8272,8280,2105424,2105432,8272,8280,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105567,35322350018768,8415,8400,2105567,538976464,8415,8400,137977929950,35322350018640,8414,8272,538976478,538976336,8414,8272,137977929820,2105424,8284,8272,538976348,2105424,8284,8272,2105436,35322350018768,8284,8400,2105436,538976464,8284,8400,137977929944,2105552,8408,8400,538976472,2105552,8408,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105432,137977929808,8280,8272,2105432,538976336,8280,8272,9042521604759640,2105552,8280,8400,538976344,2105552,8280,8400,2105552,2105567,8400,8415,2105552,2105567,8400,8415,9042521604759760,137977929950,8400,8414,538976464,538976478,8400,8414,2314885530818453584,137977929820,8272,8284,538976336,538976348,8272,8284,2105424,2105436,8272,8284,2105424,2105436,8272,8284,2314885530818453712,137977929944,8400,8408,538976464,538976472,8400,8408,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105424,2105432,8272,8280,2105424,2105432,8272,8280,137977929808,35322350018648,8272,8280,538976336,538976344,8272,8280,137977929823,2105552,8287,8400,538976351,2105552,8287,8400,2105566,35322350018768,8414,8400,2105566,538976464,8414,8400,137977929948,35322350018640,8412,8272,538976476,538976336,8412,8272,137977929820,2105424,8284,8272,538976348,2105424,8284,8272,2105432,35322350018768,8280,8400,2105432,538976464,8280,8400,137977929944,2105552,8408,8400,538976472,2105552,8408,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105432,137977929808,8280,8272,2105432,538976336,8280,8272,9042521604759632,137977929823,8272,8287,538976336,538976351,8272,8287,2105552,2105566,8400,8414,2105552,2105566,8400,8414,9042521604759760,137977929948,8400,8412,538976464,538976476,8400,8412,2314885530818453584,137977929820,8272,8284,538976336,538976348,8272,8284,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2314885530818453712,137977929944,8400,8408,538976464,538976472,8400,8408,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2105439,35322350018640,8287,8272,2105439,538976336,8287,8272,137977929822,2105552,8286,8400,538976350,2105552,8286,8400,2105564,35322350018768,8412,8400,2105564,538976464,8412,8400,137977929948,35322350018640,8412,8272,538976476,538976336,8412,8272,137977929816,2105424,8280,8272,538976344,2105424,8280,8272,2105432,35322350018768,8280,8400,2105432,538976464,8280,8400,137977929944,2105552,8408,8400,538976472,2105552,8408,8400,2105560,2105424,8408,8272,2105560,2105424,8408,8272,2105424,2105439,8272,8287,2105424,2105439,8272,8287,9042521604759632,137977929822,8272,8286,538976336,538976350,8272,8286,2105552,2105564,8400,8412,2105552,2105564,8400,8412,9042521604759760,137977929948,8400,8412,538976464,538976476,8400,8412,2314885530818453584,137977929816,8272,8280,538976336,538976344,8272,8280,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2314885530818453712,137977929944,8400,8408,538976464,538976472,8400,8408,2105552,2105560,8400,8408,2105552,2105560,8400,8408,2105567,2105424,8415,8272,2105567,2105424,8415,8272,2105438,35322350018640,8286,8272,2105438,538976336,8286,8272,137977929820,2105552,8284,8400,538976348,2105552,8284,8400,2105564,35322350018768,8412,8400,2105564,538976464,8412,8400,137977929944,35322350018640,8408,8272,538976472,538976336,8408,8272,137977929816,2105424,8280,8272,538976344,2105424,8280,8272,2105432,35322350018768,8280,8400,2105432,538976464,8280,8400,137977929944,2105552,8408,8400,538976472,2105552,8408,8400,2105552,2105567,8400,8415,2105552,2105567,8400,8415,2105424,2105438,8272,8286,2105424,2105438,8272,8286,9042521604759632,137977929820,8272,8284,538976336,538976348,8272,8284,2105552,2105564,8400,8412,2105552,2105564,8400,8412,9042521604759760,137977929944,8400,8408,538976464,538976472,8400,8408,2314885530818453584,137977929816,8272,8280,538976336,538976344,8272,8280,2105424,2105432,8272,8280,2105424,2105432,8272,8280,2314885530818453712,137977929944,8400,8408,538976464,538976472,8400,8408,0],[4629771061636907199,16568,70644700037311,16568,1077952703,16544,1077952703,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907198,16560,70644700037310,16560,1077952702,16544,1077952702,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907196,16560,70644700037308,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907196,16560,70644700037308,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907192,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907192,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907192,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907192,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,4629771061636907184,16560,70644700037296,16560,1077952688,16575,1077952688,16575,4210848,16575,4210848,16575,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16574,1077952688,16574,4210848,16574,4210848,16574,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,4629771061636907184,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210879,16560,4210879,16560,4210879,16544,4210879,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210878,16560,4210878,16560,4210878,16544,4210878,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,4629771061636907168,16544,70644700037280,16544,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16575,4210864,16575,4629771061636907168,16575,70644700037280,16575,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16574,4210864,16574,4629771061636907168,16574,70644700037280,16574,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,4629771061636907168,16572,70644700037280,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,4629771061636907168,16572,70644700037280,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,4629771061636907168,16568,70644700037280,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,4629771061636907168,16568,70644700037280,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,4629771061636907168,16568,70644700037280,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,18085043209519295,16568,70644700037311,16568,1077952703,16544,1077952703,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519294,16560,70644700037310,16560,1077952702,16544,1077952702,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519292,16560,70644700037308,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519292,16560,70644700037308,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519288,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519288,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519288,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519288,16560,70644700037304,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,18085043209519280,16560,70644700037296,16560,1077952688,16575,1077952688,16575,4210848,16575,4210848,16575,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16574,1077952688,16574,4210848,16574,4210848,16574,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,18085043209519280,16544,70644700037296,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210879,16560,4210879,16560,4210879,16544,4210879,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210878,16560,4210878,16560,4210878,16544,4210878,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,18085043209519264,16544,70644700037280,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,18085043209519264,16544,70644700037280,16544,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16575,4210864,16575,18085043209519264,16575,70644700037280,16575,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16574,4210864,16574,18085043209519264,16574,70644700037280,16574,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,18085043209519264,16572,70644700037280,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,18085043209519264,16572,70644700037280,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,18085043209519264,16568,70644700037280,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,18085043209519264,16568,70644700037280,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,18085043209519264,16568,70644700037280,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859647,16568,275955859647,16568,1077952703,16544,1077952703,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859646,16560,275955859646,16560,1077952702,16544,1077952702,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859644,16560,275955859644,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859644,16560,275955859644,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859632,16560,275955859632,16560,1077952688,16575,1077952688,16575,4210848,16575,4210848,16575,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16574,1077952688,16574,4210848,16574,4210848,16574,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210879,16560,4210879,16560,4210879,16544,4210879,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210878,16560,4210878,16560,4210878,16544,4210878,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16575,4210864,16575,275955859616,16575,275955859616,16575,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16574,4210864,16574,275955859616,16574,275955859616,16574,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,275955859616,16572,275955859616,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,275955859616,16572,275955859616,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859616,16568,275955859616,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859616,16568,275955859616,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859616,16568,275955859616,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859647,16568,275955859647,16568,1077952703,16544,1077952703,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859646,16560,275955859646,16560,1077952702,16544,1077952702,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859644,16560,275955859644,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859644,16560,275955859644,16560,1077952700,16544,1077952700,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859640,16560,275955859640,16560,1077952696,16544,1077952696,16544,4210848,16544,4210848,16544,4210848,16560,4210848,16560,275955859632,16560,275955859632,16560,1077952688,16575,1077952688,16575,4210848,16575,4210848,16575,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16574,1077952688,16574,4210848,16574,4210848,16574,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16572,1077952688,16572,4210848,16572,4210848,16572,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859632,16544,275955859632,16544,1077952688,16568,1077952688,16568,4210848,16568,4210848,16568,4210848,16544,4210848,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210879,16560,4210879,16560,4210879,16544,4210879,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210878,16560,4210878,16560,4210878,16544,4210878,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210876,16560,4210876,16560,4210876,16544,4210876,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16560,1077952672,16560,4210872,16560,4210872,16560,4210872,16544,4210872,16544,275955859616,16544,275955859616,16544,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16575,4210864,16575,275955859616,16575,275955859616,16575,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16574,4210864,16574,275955859616,16574,275955859616,16574,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,275955859616,16572,275955859616,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16572,4210864,16572,275955859616,16572,275955859616,16572,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859616,16568,275955859616,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859616,16568,275955859616,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,275955859616,16568,275955859616,16568,1077952672,16544,1077952672,16544,4210864,16544,4210864,16544,4210864,16568,4210864,16568,0],[9259542123273814143,2155905151,32895,32895,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074366,2155905150,32894,32894,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038332,2155905148,32892,32892,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074364,2155905148,32892,32892,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814136,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038328,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814128,2155905136,32880,32880,551911719039,2155905151,32895,32895,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719038,2155905150,32894,32894,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038320,2155905136,32880,32880,551911719036,2155905148,32892,32892,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719036,2155905148,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814128,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038320,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421503,8421503,32895,32895,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421502,8421502,32894,32894,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421500,8421500,32892,32892,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421503,8421503,32895,32895,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421502,8421502,32894,32894,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421500,8421500,32892,32892,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074367,2155905151,32895,32895,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,9259542123273814142,2155905150,32894,32894,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074364,2155905148,32892,32892,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038332,2155905148,32892,32892,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814136,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038328,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719039,2155905151,32895,32895,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814128,2155905136,32880,32880,551911719038,2155905150,32894,32894,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719036,2155905148,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038320,2155905136,32880,32880,551911719036,2155905148,32892,32892,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814128,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038320,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421503,8421503,32895,32895,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421502,8421502,32894,32894,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421500,8421500,32892,32892,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421503,8421503,32895,32895,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421502,8421502,32894,32894,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421500,8421500,32892,32892,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,36170086419038335,2155905151,32895,32895,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074366,2155905150,32894,32894,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814140,2155905148,32892,32892,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074364,2155905148,32892,32892,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038328,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814136,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038320,2155905136,32880,32880,551911719039,2155905151,32895,32895,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719038,2155905150,32894,32894,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814128,2155905136,32880,32880,551911719036,2155905148,32892,32892,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719036,2155905148,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038320,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814128,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421503,8421503,32895,32895,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421502,8421502,32894,32894,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421500,8421500,32892,32892,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421503,8421503,32895,32895,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421502,8421502,32894,32894,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421500,8421500,32892,32892,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074367,2155905151,32895,32895,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,36170086419038334,2155905150,32894,32894,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074364,2155905148,32892,32892,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814140,2155905148,32892,32892,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038328,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911719008,2155905120,32864,32864,141289400074360,2155905144,32888,32888,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,9259542123273814136,2155905144,32888,32888,551911718976,2155905088,32832,32832,141289400074304,2155905088,32832,32832,551911719008,2155905120,32864,32864,8421472,8421472,32864,32864,8421488,8421488,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719039,2155905151,32895,32895,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421488,8421488,32880,32880,36170086419038320,2155905136,32880,32880,551911719038,2155905150,32894,32894,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719036,2155905148,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814128,2155905136,32880,32880,551911719036,2155905148,32892,32892,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038320,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074352,2155905136,32880,32880,551911719032,2155905144,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,9259542123273814128,2155905136,32880,32880,551911719032,2155905144,32888,32888,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421503,8421503,32895,32895,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421502,8421502,32894,32894,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421500,8421500,32892,32892,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719024,2155905136,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,9259542123273814112,2155905120,32864,32864,551911719024,2155905136,32880,32880,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421472,8421472,32864,32864,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421503,8421503,32895,32895,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421502,8421502,32894,32894,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421500,8421500,32892,32892,36170086419038272,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421500,8421500,32892,32892,8421440,8421440,32832,32832,8421440,8421440,32832,32832,36170086419038304,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,9259542123273814080,2155905088,32832,32832,551911718976,2155905088,32832,32832,141289400074336,2155905120,32864,32864,551911719008,2155905120,32864,32864,8421488,8421488,32880,32880,8421496,8421496,32888,32888,8421440,8421440,32832,32832,8421440,8421440,32832,32832,9259542123273814112,2155905120,32864,32864,551911719008,2155905120,32864,32864,141289400074304,2155905088,32832,32832,551911718976,2155905088,32832,32832,8421440,8421440,32832,32832,8421440,8421440,32832,32832,8421488,8421488,32880,32880,8421496,8421496,32888,32888,0],[72340172838141441,1103823502849,16858625,16858625,97793,97793,16858625,16858625,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,66049,66049,66049,66049,4311810561,4311810561,66049,66049,73217,73217,16850433,16850433,73217,73217,16850433,16850433,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,67073,67073,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,67073,67073,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,81409,81409,16907777,16907777,4311825921,4311825921,97793,97793,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311813633,4311813633,69121,69121,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311817729,4311817729,73217,73217,282578800156161,1103823445505,73217,73217,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,69121,69121,282578800152065,1103823441409,69121,69121,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838108673,1103823470081,81409,81409,282578800213505,1103823502849,16858625,16858625,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,67073,67073,16844289,16844289,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,66049,66049,73217,73217,16850433,16850433,73217,73217,16850433,16850433,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,67073,67073,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,81409,81409,16875009,16875009,81409,81409,16907777,16907777,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,69121,69121,16846337,16846337,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311817729,4311817729,73217,73217,4311817729,4311817729,73217,73217,66049,66049,16843265,16843265,66049,66049,16843265,16843265,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311813633,4311813633,69121,69121,282578800152065,1103823441409,69121,69121,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,4311875073,4311875073,81409,81409,282578800180737,1103823470081,81409,81409,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,69121,69121,282578800152065,1103823441409,16846337,16846337,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,67073,67073,16844289,16844289,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838084097,1103823445505,16850433,16850433,73217,73217,16850433,16850433,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,81409,81409,16907777,16907777,81409,81409,16875009,16875009,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,73217,73217,16850433,16850433,4311817729,4311817729,73217,73217,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,16844289,16844289,67073,67073,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,4311813633,4311813633,69121,69121,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311842305,4311842305,81409,81409,4311875073,4311875073,81409,81409,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,4311813633,4311813633,69121,69121,282578800152065,1103823441409,69121,69121,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838084097,1103823445505,73217,73217,282578800156161,1103823445505,16850433,16850433,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,16846337,16846337,69121,69121,16846337,16846337,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,81409,81409,16875009,16875009,81409,81409,16907777,16907777,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,73217,73217,16850433,16850433,73217,73217,16850433,16850433,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,16844289,16844289,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,16844289,16844289,67073,67073,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,130561,130561,81409,81409,4311842305,4311842305,81409,81409,66049,66049,16843265,16843265,66049,66049,16843265,16843265,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311813633,4311813633,69121,69121,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,16843265,16843265,66049,66049,16843265,16843265,4311817729,4311817729,73217,73217,282578800156161,1103823445505,73217,73217,66049,66049,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,69121,69121,282578800152065,1103823441409,16846337,16846337,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838092289,1103823453697,130561,130561,81409,81409,16875009,16875009,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,67073,67073,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,4311810561,4311810561,66049,66049,73217,73217,16850433,16850433,73217,73217,16850433,16850433,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,66049,66049,66049,66049,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,16844289,16844289,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,97793,97793,16858625,16858625,130561,130561,81409,81409,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,67073,67073,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,69121,69121,69121,69121,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,16843265,16843265,4311817729,4311817729,73217,73217,4311817729,4311817729,73217,73217,66049,66049,16843265,16843265,66049,66049,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311813633,4311813633,69121,69121,282578800152065,1103823441409,69121,69121,66049,66049,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838092289,1103823453697,97793,97793,282578800164353,1103823453697,130561,130561,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,69121,69121,69121,69121,16846337,16846337,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,67073,67073,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,73217,73217,16850433,16850433,73217,73217,16850433,16850433,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,66049,66049,66049,66049,4311810561,4311810561,66049,66049,130561,130561,16858625,16858625,97793,97793,16858625,16858625,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,67073,67073,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,67073,67073,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,73217,73217,73217,73217,4311817729,4311817729,73217,73217,66049,66049,16843265,16843265,66049,66049,16843265,16843265,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311813633,4311813633,69121,69121,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311825921,4311825921,130561,130561,282578800164353,1103823453697,97793,97793,66049,66049,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,69121,69121,282578800152065,1103823441409,69121,69121,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838084097,1103823445505,73217,73217,73217,73217,16850433,16850433,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,67073,67073,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,69121,69121,16846337,16846337,69121,69121,16846337,16846337,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311811585,4311811585,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,66049,66049,97793,97793,16858625,16858625,130561,130561,16858625,16858625,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311811585,4311811585,67073,67073,282578800150017,1103823439361,67073,67073,66049,66049,66049,66049,4311810561,4311810561,66049,66049,69121,69121,16846337,16846337,69121,69121,16846337,16846337,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,282578800150017,1103823439361,67073,67073,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,73217,73217,16850433,16850433,73217,73217,73217,73217,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838077953,1103823439361,67073,67073,67073,67073,16844289,16844289,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,69121,69121,69121,69121,4311813633,4311813633,69121,69121,66049,66049,16843265,16843265,66049,66049,16843265,16843265,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,282578800148993,1103823438337,66049,66049,4311825921,4311825921,97793,97793,4311825921,4311825921,130561,130561,66049,66049,16843265,16843265,66049,66049,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,72340172838076929,1103823438337,66049,66049,66049,66049,16843265,16843265,4311813633,4311813633,69121,69121,282578800152065,1103823441409,69121,69121,66049,66049,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,16844289,16844289,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838084097,1103823445505,73217,73217,282578800156161,1103823445505,73217,73217,4311810561,4311810561,66049,66049,4311810561,4311810561,66049,66049,67073,67073,16844289,16844289,67073,67073,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,72340172838080001,1103823441409,69121,69121,69121,69121,16846337,16846337,4311810561,4311810561,66049,66049,282578800148993,1103823438337,66049,66049,67073,67073,67073,67073,4311811585,4311811585,67073,67073,66049,66049,16843265,16843265,66049,66049,16843265,16843265,0],[144680345676217602,195842,33688834,134402,565157600361730,195842,33688834,134402,2207646940418,195842,33688834,134402,2207646940418,195842,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33717506,163074,565157600300290,134402,33717506,163074,2207646878978,134402,33717506,163074,2207646878978,134402,33717506,163074,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676160258,138498,33688834,134402,565157600304386,138498,33688834,134402,2207646883074,138498,33688834,134402,2207646883074,138498,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33692930,138498,565157600300290,134402,33692930,138498,2207646878978,134402,33692930,138498,2207646878978,134402,33692930,138498,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676168450,146690,33688834,134402,565157600312578,146690,33688834,134402,2207646891266,146690,33688834,134402,2207646891266,146690,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33701122,146690,565157600300290,134402,33701122,146690,2207646878978,134402,33701122,146690,2207646878978,134402,33701122,146690,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676160258,138498,33688834,134402,565157600304386,138498,33688834,134402,2207646883074,138498,33688834,134402,2207646883074,138498,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33692930,138498,565157600300290,134402,33692930,138498,2207646878978,134402,33692930,138498,2207646878978,134402,33692930,138498,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676184834,163074,33688834,134402,565157600328962,163074,33688834,134402,2207646907650,163074,33688834,134402,2207646907650,163074,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33750274,195842,565157600300290,134402,33750274,195842,2207646878978,134402,33750274,195842,2207646878978,134402,33750274,195842,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676160258,138498,33688834,134402,565157600304386,138498,33688834,134402,2207646883074,138498,33688834,134402,2207646883074,138498,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33692930,138498,565157600300290,134402,33692930,138498,2207646878978,134402,33692930,138498,2207646878978,134402,33692930,138498,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676168450,146690,33688834,134402,565157600312578,146690,33688834,134402,2207646891266,146690,33688834,134402,2207646891266,146690,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33701122,146690,565157600300290,134402,33701122,146690,2207646878978,134402,33701122,146690,2207646878978,134402,33701122,146690,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676160258,138498,33688834,134402,565157600304386,138498,33688834,134402,2207646883074,138498,33688834,134402,2207646883074,138498,33688834,134402,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,144680345676156162,134402,33692930,138498,565157600300290,134402,33692930,138498,2207646878978,134402,33692930,138498,2207646878978,134402,33692930,138498,144680345676154114,132354,33686786,132354,565157600298242,132354,33686786,132354,2207646876930,132354,33686786,132354,2207646876930,132354,33686786,132354,8623684866,195842,33688834,134402,8623684866,195842,33688834,134402,8623684866,195842,33688834,134402,8623684866,195842,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33717506,163074,8623623426,134402,33717506,163074,8623623426,134402,33717506,163074,8623623426,134402,33717506,163074,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623635714,146690,33688834,134402,8623635714,146690,33688834,134402,8623635714,146690,33688834,134402,8623635714,146690,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33701122,146690,8623623426,134402,33701122,146690,8623623426,134402,33701122,146690,8623623426,134402,33701122,146690,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623652098,163074,33688834,134402,8623652098,163074,33688834,134402,8623652098,163074,33688834,134402,8623652098,163074,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33750274,195842,8623623426,134402,33750274,195842,8623623426,134402,33750274,195842,8623623426,134402,33750274,195842,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623635714,146690,33688834,134402,8623635714,146690,33688834,134402,8623635714,146690,33688834,134402,8623635714,146690,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33701122,146690,8623623426,134402,33701122,146690,8623623426,134402,33701122,146690,8623623426,134402,33701122,146690,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623627522,138498,33688834,134402,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623623426,134402,33692930,138498,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,8623621378,132354,33686786,132354,0],[289360691352369924,326404,4415293815556,326404,17247242756,264708,17247242756,264708,67386116,277252,67386116,277252,289360691352369668,326148,4415293815300,326148,1130315200596740,264964,4415293754116,264964,67385860,276996,67385860,276996,67373828,264964,67373828,264964,1130315200596484,264708,4415293753860,264708,67377924,269060,67377924,269060,67373572,264708,67373572,264708,17247247108,269060,17247247108,269060,67377668,268804,67377668,268804,289360691352308484,264964,4415293754116,264964,17247246852,268804,17247246852,268804,67373828,264964,67373828,264964,289360691352308228,264708,4415293753860,264708,1130315200609028,277252,4415293766404,277252,67373572,264708,67373572,264708,17247304452,326404,17247304452,326404,1130315200608772,276996,4415293766148,276996,67373828,264964,67373828,264964,17247304196,326148,17247304196,326148,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,289360691352312580,269060,4415293758212,269060,17247242756,264708,17247242756,264708,67377924,269060,67377924,269060,289360691352312324,268804,4415293757956,268804,1130315200596740,264964,4415293754116,264964,67377668,268804,67377668,268804,17247243012,264964,17247243012,264964,1130315200596484,264708,4415293753860,264708,67402500,293636,67402500,293636,17247242756,264708,17247242756,264708,17247255300,277252,17247255300,277252,67402244,293380,67402244,293380,289360691352308484,264964,4415293754116,264964,17247255044,276996,17247255044,276996,67373828,264964,67373828,264964,289360691352308228,264708,4415293753860,264708,1130315200600836,269060,4415293758212,269060,67373572,264708,67373572,264708,17247247108,269060,17247247108,269060,1130315200600580,268804,4415293757956,268804,67373828,264964,67373828,264964,17247246852,268804,17247246852,268804,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,289360691352320772,277252,4415293766404,277252,17247242756,264708,17247242756,264708,67402500,293636,67402500,293636,289360691352320516,276996,4415293766148,276996,1130315200596740,264964,4415293754116,264964,67402244,293380,67402244,293380,17247243012,264964,17247243012,264964,1130315200596484,264708,4415293753860,264708,67377924,269060,67377924,269060,17247242756,264708,17247242756,264708,17247247108,269060,17247247108,269060,67377668,268804,67377668,268804,289360691352308484,264964,4415293754116,264964,17247246852,268804,17247246852,268804,67373828,264964,67373828,264964,289360691352308228,264708,4415293753860,264708,67435268,326404,67435268,326404,67373572,264708,67373572,264708,17247255300,277252,17247255300,277252,67435012,326148,67435012,326148,67373828,264964,67373828,264964,17247255044,276996,17247255044,276996,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,289360691352312580,269060,4415293758212,269060,17247242756,264708,17247242756,264708,67377924,269060,67377924,269060,289360691352312324,268804,4415293757956,268804,67373828,264964,67373828,264964,67377668,268804,67377668,268804,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,67386116,277252,67386116,277252,17247242756,264708,17247242756,264708,67435268,326404,67435268,326404,67385860,276996,67385860,276996,289360691352308484,264964,4415293754116,264964,67435012,326148,67435012,326148,67373828,264964,67373828,264964,289360691352308228,264708,4415293753860,264708,67377924,269060,67377924,269060,67373572,264708,67373572,264708,17247247108,269060,17247247108,269060,67377668,268804,67377668,268804,67373828,264964,67373828,264964,17247246852,268804,17247246852,268804,67373828,264964,67373828,264964,67373572,264708,67373572,264708,289360691352337156,293636,4415293782788,293636,67373572,264708,67373572,264708,67386116,277252,67386116,277252,289360691352336900,293380,4415293782532,293380,67373828,264964,67373828,264964,67385860,276996,67385860,276996,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,67377924,269060,67377924,269060,17247242756,264708,17247242756,264708,67377924,269060,67377924,269060,67377668,268804,67377668,268804,289360691352308484,264964,4415293754116,264964,67377668,268804,67377668,268804,67373828,264964,67373828,264964,289360691352308228,264708,4415293753860,264708,67386116,277252,67386116,277252,67373572,264708,67373572,264708,17247271684,293636,17247271684,293636,67385860,276996,67385860,276996,67373828,264964,67373828,264964,17247271428,293380,17247271428,293380,67373828,264964,67373828,264964,67373572,264708,67373572,264708,289360691352312580,269060,4415293758212,269060,67373572,264708,67373572,264708,67377924,269060,67377924,269060,289360691352312324,268804,4415293757956,268804,67373828,264964,67373828,264964,67377668,268804,67377668,268804,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,1130315200658180,326404,4415293815556,326404,17247242756,264708,17247242756,264708,67386116,277252,67386116,277252,1130315200657924,326148,4415293815300,326148,289360691352308484,264964,4415293754116,264964,67385860,276996,67385860,276996,67373828,264964,67373828,264964,289360691352308228,264708,4415293753860,264708,67377924,269060,67377924,269060,67373572,264708,67373572,264708,17247247108,269060,17247247108,269060,67377668,268804,67377668,268804,1130315200596740,264964,4415293754116,264964,17247246852,268804,17247246852,268804,67373828,264964,67373828,264964,1130315200596484,264708,4415293753860,264708,289360691352320772,277252,4415293766404,277252,67373572,264708,67373572,264708,17247304452,326404,17247304452,326404,289360691352320516,276996,4415293766148,276996,67373828,264964,67373828,264964,17247304196,326148,17247304196,326148,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,1130315200600836,269060,4415293758212,269060,17247242756,264708,17247242756,264708,67377924,269060,67377924,269060,1130315200600580,268804,4415293757956,268804,289360691352308484,264964,4415293754116,264964,67377668,268804,67377668,268804,17247243012,264964,17247243012,264964,289360691352308228,264708,4415293753860,264708,67402500,293636,67402500,293636,17247242756,264708,17247242756,264708,17247255300,277252,17247255300,277252,67402244,293380,67402244,293380,1130315200596740,264964,4415293754116,264964,17247255044,276996,17247255044,276996,67373828,264964,67373828,264964,1130315200596484,264708,4415293753860,264708,289360691352312580,269060,4415293758212,269060,67373572,264708,67373572,264708,17247247108,269060,17247247108,269060,289360691352312324,268804,4415293757956,268804,67373828,264964,67373828,264964,17247246852,268804,17247246852,268804,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,1130315200609028,277252,4415293766404,277252,17247242756,264708,17247242756,264708,67402500,293636,67402500,293636,1130315200608772,276996,4415293766148,276996,289360691352308484,264964,4415293754116,264964,67402244,293380,67402244,293380,17247243012,264964,17247243012,264964,289360691352308228,264708,4415293753860,264708,67377924,269060,67377924,269060,17247242756,264708,17247242756,264708,17247247108,269060,17247247108,269060,67377668,268804,67377668,268804,1130315200596740,264964,4415293754116,264964,17247246852,268804,17247246852,268804,67373828,264964,67373828,264964,1130315200596484,264708,4415293753860,264708,67435268,326404,67435268,326404,67373572,264708,67373572,264708,17247255300,277252,17247255300,277252,67435012,326148,67435012,326148,67373828,264964,67373828,264964,17247255044,276996,17247255044,276996,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,1130315200600836,269060,4415293758212,269060,17247242756,264708,17247242756,264708,67377924,269060,67377924,269060,1130315200600580,268804,4415293757956,268804,67373828,264964,67373828,264964,67377668,268804,67377668,268804,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,67386116,277252,67386116,277252,17247242756,264708,17247242756,264708,67435268,326404,67435268,326404,67385860,276996,67385860,276996,1130315200596740,264964,4415293754116,264964,67435012,326148,67435012,326148,67373828,264964,67373828,264964,1130315200596484,264708,4415293753860,264708,67377924,269060,67377924,269060,67373572,264708,67373572,264708,17247247108,269060,17247247108,269060,67377668,268804,67377668,268804,67373828,264964,67373828,264964,17247246852,268804,17247246852,268804,67373828,264964,67373828,264964,67373572,264708,67373572,264708,1130315200625412,293636,4415293782788,293636,67373572,264708,67373572,264708,67386116,277252,67386116,277252,1130315200625156,293380,4415293782532,293380,67373828,264964,67373828,264964,67385860,276996,67385860,276996,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,67377924,269060,67377924,269060,17247242756,264708,17247242756,264708,67377924,269060,67377924,269060,67377668,268804,67377668,268804,1130315200596740,264964,4415293754116,264964,67377668,268804,67377668,268804,67373828,264964,67373828,264964,1130315200596484,264708,4415293753860,264708,67386116,277252,67386116,277252,67373572,264708,67373572,264708,17247271684,293636,17247271684,293636,67385860,276996,67385860,276996,67373828,264964,67373828,264964,17247271428,293380,17247271428,293380,67373828,264964,67373828,264964,67373572,264708,67373572,264708,1130315200600836,269060,4415293758212,269060,67373572,264708,67373572,264708,67377924,269060,67377924,269060,1130315200600580,268804,4415293757956,268804,67373828,264964,67373828,264964,67377668,268804,67377668,268804,17247243012,264964,17247243012,264964,67373572,264708,67373572,264708,0],[578721382704674568,587528,8830587565832,587528,2260630401192968,529416,8830587507720,529416,134747144,529416,134747144,529416,578721382704674312,587272,8830587565576,587272,34494510856,554760,34494510856,554760,134747144,529416,134747144,529416,578721382704673800,586760,8830587565064,586760,34494510600,554504,34494510600,554504,134747912,530184,134747912,530184,578721382704673800,586760,8830587565064,586760,34494510088,553992,34494510088,553992,134747656,529928,134747656,529928,134747912,530184,134747912,530184,34494510088,553992,34494510088,553992,134747144,529416,134747144,529416,134747656,529928,134747656,529928,2260630401201928,538376,8830587516680,538376,134747144,529416,134747144,529416,134747144,529416,134747144,529416,2260630401201672,538120,8830587516424,538120,134756104,538376,134756104,538376,134747144,529416,134747144,529416,2260630401201160,537608,8830587515912,537608,134755848,538120,134755848,538120,578721382704617224,530184,8830587508488,530184,2260630401201160,537608,8830587515912,537608,134755336,537608,134755336,537608,578721382704616968,529928,8830587508232,529928,34494486280,530184,34494486280,530184,134755336,537608,134755336,537608,578721382704616456,529416,8830587507720,529416,34494486024,529928,34494486024,529928,134772488,554760,134772488,554760,578721382704616456,529416,8830587507720,529416,34494485512,529416,34494485512,529416,134772232,554504,134772232,554504,34494543624,587528,34494543624,587528,34494485512,529416,34494485512,529416,134771720,553992,134771720,553992,34494543368,587272,34494543368,587272,2260630401193736,530184,8830587508488,530184,134771720,553992,134771720,553992,34494542856,586760,34494542856,586760,2260630401193480,529928,8830587508232,529928,134747912,530184,134747912,530184,34494542856,586760,34494542856,586760,2260630401192968,529416,8830587507720,529416,134747656,529928,134747656,529928,578721382704625416,538376,8830587516680,538376,2260630401192968,529416,8830587507720,529416,134747144,529416,134747144,529416,578721382704625160,538120,8830587516424,538120,34494494472,538376,34494494472,538376,134747144,529416,134747144,529416,578721382704624648,537608,8830587515912,537608,34494494216,538120,34494494216,538120,134747912,530184,134747912,530184,578721382704624648,537608,8830587515912,537608,34494493704,537608,34494493704,537608,134747656,529928,134747656,529928,34494486280,530184,34494486280,530184,34494493704,537608,34494493704,537608,134747144,529416,134747144,529416,34494486024,529928,34494486024,529928,134805256,587528,134805256,587528,134747144,529416,134747144,529416,34494485512,529416,34494485512,529416,134805000,587272,134805000,587272,134772488,554760,134772488,554760,34494485512,529416,34494485512,529416,134804488,586760,134804488,586760,134772232,554504,134772232,554504,578721382704617224,530184,8830587508488,530184,134804488,586760,134804488,586760,134771720,553992,134771720,553992,578721382704616968,529928,8830587508232,529928,34494486280,530184,34494486280,530184,134771720,553992,134771720,553992,578721382704616456,529416,8830587507720,529416,34494486024,529928,34494486024,529928,134756104,538376,134756104,538376,578721382704616456,529416,8830587507720,529416,34494485512,529416,34494485512,529416,134755848,538120,134755848,538120,34494494472,538376,34494494472,538376,34494485512,529416,34494485512,529416,134755336,537608,134755336,537608,34494494216,538120,34494494216,538120,134747912,530184,134747912,530184,134755336,537608,134755336,537608,34494493704,537608,34494493704,537608,134747656,529928,134747656,529928,134747912,530184,134747912,530184,34494493704,537608,34494493704,537608,134747144,529416,134747144,529416,134747656,529928,134747656,529928,578721382704641800,554760,8830587533064,554760,134747144,529416,134747144,529416,134747144,529416,134747144,529416,578721382704641544,554504,8830587532808,554504,134805256,587528,134805256,587528,134747144,529416,134747144,529416,578721382704641032,553992,8830587532296,553992,134805000,587272,134805000,587272,134747912,530184,134747912,530184,578721382704641032,553992,8830587532296,553992,134804488,586760,134804488,586760,134747656,529928,134747656,529928,34494486280,530184,34494486280,530184,134804488,586760,134804488,586760,134747144,529416,134747144,529416,34494486024,529928,34494486024,529928,134756104,538376,134756104,538376,134747144,529416,134747144,529416,34494485512,529416,34494485512,529416,134755848,538120,134755848,538120,134756104,538376,134756104,538376,34494485512,529416,34494485512,529416,134755336,537608,134755336,537608,134755848,538120,134755848,538120,578721382704617224,530184,8830587508488,530184,134755336,537608,134755336,537608,134755336,537608,134755336,537608,578721382704616968,529928,8830587508232,529928,134747912,530184,134747912,530184,134755336,537608,134755336,537608,578721382704616456,529416,8830587507720,529416,134747656,529928,134747656,529928,2260630401251080,587528,8830587565832,587528,578721382704616456,529416,8830587507720,529416,134747144,529416,134747144,529416,2260630401250824,587272,8830587565576,587272,34494510856,554760,34494510856,554760,134747144,529416,134747144,529416,2260630401250312,586760,8830587565064,586760,34494510600,554504,34494510600,554504,134747912,530184,134747912,530184,2260630401250312,586760,8830587565064,586760,34494510088,553992,34494510088,553992,134747656,529928,134747656,529928,134747912,530184,134747912,530184,34494510088,553992,34494510088,553992,134747144,529416,134747144,529416,134747656,529928,134747656,529928,578721382704625416,538376,8830587516680,538376,134747144,529416,134747144,529416,134747144,529416,134747144,529416,578721382704625160,538120,8830587516424,538120,134756104,538376,134756104,538376,134747144,529416,134747144,529416,578721382704624648,537608,8830587515912,537608,134755848,538120,134755848,538120,2260630401193736,530184,8830587508488,530184,578721382704624648,537608,8830587515912,537608,134755336,537608,134755336,537608,2260630401193480,529928,8830587508232,529928,34494486280,530184,34494486280,530184,134755336,537608,134755336,537608,2260630401192968,529416,8830587507720,529416,34494486024,529928,34494486024,529928,134772488,554760,134772488,554760,2260630401192968,529416,8830587507720,529416,34494485512,529416,34494485512,529416,134772232,554504,134772232,554504,34494543624,587528,34494543624,587528,34494485512,529416,34494485512,529416,134771720,553992,134771720,553992,34494543368,587272,34494543368,587272,578721382704617224,530184,8830587508488,530184,134771720,553992,134771720,553992,34494542856,586760,34494542856,586760,578721382704616968,529928,8830587508232,529928,134747912,530184,134747912,530184,34494542856,586760,34494542856,586760,578721382704616456,529416,8830587507720,529416,134747656,529928,134747656,529928,2260630401201928,538376,8830587516680,538376,578721382704616456,529416,8830587507720,529416,134747144,529416,134747144,529416,2260630401201672,538120,8830587516424,538120,34494494472,538376,34494494472,538376,134747144,529416,134747144,529416,2260630401201160,537608,8830587515912,537608,34494494216,538120,34494494216,538120,134747912,530184,134747912,530184,2260630401201160,537608,8830587515912,537608,34494493704,537608,34494493704,537608,134747656,529928,134747656,529928,34494486280,530184,34494486280,530184,34494493704,537608,34494493704,537608,134747144,529416,134747144,529416,34494486024,529928,34494486024,529928,134805256,587528,134805256,587528,134747144,529416,134747144,529416,34494485512,529416,34494485512,529416,134805000,587272,134805000,587272,134772488,554760,134772488,554760,34494485512,529416,34494485512,529416,134804488,586760,134804488,586760,134772232,554504,134772232,554504,2260630401193736,530184,8830587508488,530184,134804488,586760,134804488,586760,134771720,553992,134771720,553992,2260630401193480,529928,8830587508232,529928,34494486280,530184,34494486280,530184,134771720,553992,134771720,553992,2260630401192968,529416,8830587507720,529416,34494486024,529928,34494486024,529928,134756104,538376,134756104,538376,2260630401192968,529416,8830587507720,529416,34494485512,529416,34494485512,529416,134755848,538120,134755848,538120,34494494472,538376,34494494472,538376,34494485512,529416,34494485512,529416,134755336,537608,134755336,537608,34494494216,538120,34494494216,538120,134747912,530184,134747912,530184,134755336,537608,134755336,537608,34494493704,537608,34494493704,537608,134747656,529928,134747656,529928,134747912,530184,134747912,530184,34494493704,537608,34494493704,537608,134747144,529416,134747144,529416,134747656,529928,134747656,529928,2260630401218312,554760,8830587533064,554760,134747144,529416,134747144,529416,134747144,529416,134747144,529416,2260630401218056,554504,8830587532808,554504,134805256,587528,134805256,587528,134747144,529416,134747144,529416,2260630401217544,553992,8830587532296,553992,134805000,587272,134805000,587272,134747912,530184,134747912,530184,2260630401217544,553992,8830587532296,553992,134804488,586760,134804488,586760,134747656,529928,134747656,529928,34494486280,530184,34494486280,530184,134804488,586760,134804488,586760,134747144,529416,134747144,529416,34494486024,529928,34494486024,529928,134756104,538376,134756104,538376,134747144,529416,134747144,529416,34494485512,529416,34494485512,529416,134755848,538120,134755848,538120,134756104,538376,134756104,538376,34494485512,529416,34494485512,529416,134755336,537608,134755336,537608,134755848,538120,134755848,538120,2260630401193736,530184,8830587508488,530184,134755336,537608,134755336,537608,134755336,537608,134755336,537608,2260630401193480,529928,8830587508232,529928,134747912,530184,134747912,530184,134755336,537608,134755336,537608,2260630401192968,529416,8830587507720,529416,134747656,529928,134747656,529928,0],[1157442765409283856,269545232,17661175066384,269545232,1157442765409283600,269544976,17661175066128,269544976,1157442765409283088,269544464,17661175065616,269544464,1157442765409283088,269544464,17661175065616,269544464,1157442765409282064,269543440,17661175064592,269543440,1157442765409282064,269543440,17661175064592,269543440,1157442765409282064,269543440,17661175064592,269543440,1157442765409282064,269543440,17661175064592,269543440,1109776,1109776,1109776,1109776,1109520,1109520,1109520,1109520,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1157442765409234704,269496080,17661175017232,269496080,1157442765409234448,269495824,17661175016976,269495824,1157442765409233936,269495312,17661175016464,269495312,1157442765409233936,269495312,17661175016464,269495312,1157442765409232912,269494288,17661175015440,269494288,1157442765409232912,269494288,17661175015440,269494288,1157442765409232912,269494288,17661175015440,269494288,1157442765409232912,269494288,17661175015440,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1157442765409251088,269512464,17661175033616,269512464,1157442765409250832,269512208,17661175033360,269512208,1157442765409250320,269511696,17661175032848,269511696,1157442765409250320,269511696,17661175032848,269511696,1157442765409249296,269510672,17661175031824,269510672,1157442765409249296,269510672,17661175031824,269510672,1157442765409249296,269510672,17661175031824,269510672,1157442765409249296,269510672,17661175031824,269510672,1077008,1077008,1077008,1077008,1076752,1076752,1076752,1076752,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1157442765409234704,269496080,17661175017232,269496080,1157442765409234448,269495824,17661175016976,269495824,1157442765409233936,269495312,17661175016464,269495312,1157442765409233936,269495312,17661175016464,269495312,1157442765409232912,269494288,17661175015440,269494288,1157442765409232912,269494288,17661175015440,269494288,1157442765409232912,269494288,17661175015440,269494288,1157442765409232912,269494288,17661175015440,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,68989021968,269545232,68989021968,269545232,68989021712,269544976,68989021712,269544976,68989021200,269544464,68989021200,269544464,68989021200,269544464,68989021200,269544464,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,1109776,1109776,1109776,1109776,1109520,1109520,1109520,1109520,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,68988972816,269496080,68988972816,269496080,68988972560,269495824,68988972560,269495824,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,68988989200,269512464,68988989200,269512464,68988988944,269512208,68988988944,269512208,68988988432,269511696,68988988432,269511696,68988988432,269511696,68988988432,269511696,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,1077008,1077008,1077008,1077008,1076752,1076752,1076752,1076752,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,68988972816,269496080,68988972816,269496080,68988972560,269495824,68988972560,269495824,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,4521260802436880,269545232,17661175066384,269545232,4521260802436624,269544976,17661175066128,269544976,4521260802436112,269544464,17661175065616,269544464,4521260802436112,269544464,17661175065616,269544464,4521260802435088,269543440,17661175064592,269543440,4521260802435088,269543440,17661175064592,269543440,4521260802435088,269543440,17661175064592,269543440,4521260802435088,269543440,17661175064592,269543440,1109776,1109776,1109776,1109776,1109520,1109520,1109520,1109520,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,4521260802387728,269496080,17661175017232,269496080,4521260802387472,269495824,17661175016976,269495824,4521260802386960,269495312,17661175016464,269495312,4521260802386960,269495312,17661175016464,269495312,4521260802385936,269494288,17661175015440,269494288,4521260802385936,269494288,17661175015440,269494288,4521260802385936,269494288,17661175015440,269494288,4521260802385936,269494288,17661175015440,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,4521260802404112,269512464,17661175033616,269512464,4521260802403856,269512208,17661175033360,269512208,4521260802403344,269511696,17661175032848,269511696,4521260802403344,269511696,17661175032848,269511696,4521260802402320,269510672,17661175031824,269510672,4521260802402320,269510672,17661175031824,269510672,4521260802402320,269510672,17661175031824,269510672,4521260802402320,269510672,17661175031824,269510672,1077008,1077008,1077008,1077008,1076752,1076752,1076752,1076752,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,4521260802387728,269496080,17661175017232,269496080,4521260802387472,269495824,17661175016976,269495824,4521260802386960,269495312,17661175016464,269495312,4521260802386960,269495312,17661175016464,269495312,4521260802385936,269494288,17661175015440,269494288,4521260802385936,269494288,17661175015440,269494288,4521260802385936,269494288,17661175015440,269494288,4521260802385936,269494288,17661175015440,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,68989021968,269545232,68989021968,269545232,68989021712,269544976,68989021712,269544976,68989021200,269544464,68989021200,269544464,68989021200,269544464,68989021200,269544464,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,68989020176,269543440,1109776,1109776,1109776,1109776,1109520,1109520,1109520,1109520,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1109008,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,1107984,68988972816,269496080,68988972816,269496080,68988972560,269495824,68988972560,269495824,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,68988989200,269512464,68988989200,269512464,68988988944,269512208,68988988944,269512208,68988988432,269511696,68988988432,269511696,68988988432,269511696,68988988432,269511696,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,68988987408,269510672,1077008,1077008,1077008,1077008,1076752,1076752,1076752,1076752,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1076240,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,1075216,68988972816,269496080,68988972816,269496080,68988972560,269495824,68988972560,269495824,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988972048,269495312,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,68988971024,269494288,1060624,1060624,1060624,1060624,1060368,1060368,1060368,1060368,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1059856,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,1058832,0],[2314885530818502432,137977978656,9042521604808480,137977978656,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818469408,137977945632,9042521604775456,137977945632,539025184,539025184,539025184,539025184,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,2314885530818501664,137977977888,9042521604807712,137977977888,538992160,538992160,538992160,538992160,2154272,2154272,2154272,2154272,2150432,2150432,2150432,2150432,2314885530818468896,137977945120,9042521604774944,137977945120,539024416,539024416,539024416,539024416,2121248,2121248,2121248,2121248,2154272,2154272,2154272,2154272,2314885530818500640,137977976864,9042521604806688,137977976864,538991648,538991648,538991648,538991648,2153504,2153504,2153504,2153504,2121248,2121248,2121248,2121248,2314885530818467872,137977944096,9042521604773920,137977944096,539023392,539023392,539023392,539023392,2120736,2120736,2120736,2120736,2153504,2153504,2153504,2153504,2314885530818500640,137977976864,9042521604806688,137977976864,538990624,538990624,538990624,538990624,2152480,2152480,2152480,2152480,2120736,2120736,2120736,2120736,2314885530818467872,137977944096,9042521604773920,137977944096,539023392,539023392,539023392,539023392,2119712,2119712,2119712,2119712,2152480,2152480,2152480,2152480,2314885530818498592,137977974816,9042521604804640,137977974816,538990624,538990624,538990624,538990624,2152480,2152480,2152480,2152480,2119712,2119712,2119712,2119712,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2119712,2119712,2119712,2119712,2152480,2152480,2152480,2152480,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2119712,2119712,2119712,2119712,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350067488,137977978656,35322350067488,137977978656,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350034464,137977945632,35322350034464,137977945632,539025184,539025184,539025184,539025184,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350066720,137977977888,35322350066720,137977977888,538992160,538992160,538992160,538992160,2154272,2154272,2154272,2154272,2117664,2117664,2117664,2117664,35322350033952,137977945120,35322350033952,137977945120,539024416,539024416,539024416,539024416,2121248,2121248,2121248,2121248,2154272,2154272,2154272,2154272,35322350065696,137977976864,35322350065696,137977976864,538991648,538991648,538991648,538991648,2153504,2153504,2153504,2153504,2121248,2121248,2121248,2121248,35322350032928,137977944096,35322350032928,137977944096,539023392,539023392,539023392,539023392,2120736,2120736,2120736,2120736,2153504,2153504,2153504,2153504,35322350065696,137977976864,35322350065696,137977976864,538990624,538990624,538990624,538990624,2152480,2152480,2152480,2152480,2120736,2120736,2120736,2120736,35322350032928,137977944096,35322350032928,137977944096,539023392,539023392,539023392,539023392,2119712,2119712,2119712,2119712,2152480,2152480,2152480,2152480,35322350063648,137977974816,35322350063648,137977974816,538990624,538990624,538990624,538990624,2152480,2152480,2152480,2152480,2119712,2119712,2119712,2119712,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2119712,2119712,2119712,2119712,2152480,2152480,2152480,2152480,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2119712,2119712,2119712,2119712,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818469664,137977945888,9042521604775712,137977945888,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,2314885530818502176,137977978400,9042521604808224,137977978400,538992416,538992416,538992416,538992416,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818468896,137977945120,9042521604774944,137977945120,539024928,539024928,539024928,539024928,2121504,2121504,2121504,2121504,2117664,2117664,2117664,2117664,2314885530818501664,137977977888,9042521604807712,137977977888,538991648,538991648,538991648,538991648,2154016,2154016,2154016,2154016,2121504,2121504,2121504,2121504,2314885530818467872,137977944096,9042521604773920,137977944096,539024416,539024416,539024416,539024416,2120736,2120736,2120736,2120736,2154016,2154016,2154016,2154016,2314885530818500640,137977976864,9042521604806688,137977976864,538990624,538990624,538990624,538990624,2153504,2153504,2153504,2153504,2120736,2120736,2120736,2120736,2314885530818467872,137977944096,9042521604773920,137977944096,539023392,539023392,539023392,539023392,2119712,2119712,2119712,2119712,2153504,2153504,2153504,2153504,2314885530818500640,137977976864,9042521604806688,137977976864,538990624,538990624,538990624,538990624,2152480,2152480,2152480,2152480,2119712,2119712,2119712,2119712,2314885530818465824,137977942048,9042521604771872,137977942048,539023392,539023392,539023392,539023392,2119712,2119712,2119712,2119712,2152480,2152480,2152480,2152480,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2152480,2152480,2152480,2152480,2119712,2119712,2119712,2119712,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2152480,2152480,2152480,2152480,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,2314885530818465824,137977942048,9042521604771872,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,2314885530818498592,137977974816,9042521604804640,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350034720,137977945888,35322350034720,137977945888,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350067232,137977978400,35322350067232,137977978400,538992416,538992416,538992416,538992416,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350033952,137977945120,35322350033952,137977945120,539024928,539024928,539024928,539024928,2121504,2121504,2121504,2121504,2150432,2150432,2150432,2150432,35322350066720,137977977888,35322350066720,137977977888,538991648,538991648,538991648,538991648,2154016,2154016,2154016,2154016,2121504,2121504,2121504,2121504,35322350032928,137977944096,35322350032928,137977944096,539024416,539024416,539024416,539024416,2120736,2120736,2120736,2120736,2154016,2154016,2154016,2154016,35322350065696,137977976864,35322350065696,137977976864,538990624,538990624,538990624,538990624,2153504,2153504,2153504,2153504,2120736,2120736,2120736,2120736,35322350032928,137977944096,35322350032928,137977944096,539023392,539023392,539023392,539023392,2119712,2119712,2119712,2119712,2153504,2153504,2153504,2153504,35322350065696,137977976864,35322350065696,137977976864,538990624,538990624,538990624,538990624,2152480,2152480,2152480,2152480,2119712,2119712,2119712,2119712,35322350030880,137977942048,35322350030880,137977942048,539023392,539023392,539023392,539023392,2119712,2119712,2119712,2119712,2152480,2152480,2152480,2152480,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2152480,2152480,2152480,2152480,2119712,2119712,2119712,2119712,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2152480,2152480,2152480,2152480,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,35322350030880,137977942048,35322350030880,137977942048,539021344,539021344,539021344,539021344,2117664,2117664,2117664,2117664,2150432,2150432,2150432,2150432,35322350063648,137977974816,35322350063648,137977974816,538988576,538988576,538988576,538988576,2150432,2150432,2150432,2150432,2117664,2117664,2117664,2117664,0],[4629771061636939584,275955884096,4235328,4235328,275955884096,275955888192,4239424,4239424,4243264,4235328,1077977152,1077977152,4235328,4239424,1077981248,1077981248,4629771061636939328,275955884096,4235328,4235328,275955884096,275955888192,4239424,4239424,4243008,4235328,1077977152,1077977152,4235328,4239424,1077981248,1077981248,4629771061636938816,275955884096,4235328,4235328,275955884096,275955888192,4239424,4239424,4242496,4235328,1077977152,1077977152,4235328,4239424,1077981248,1077981248,4629771061636938816,70644700069696,4235328,4235328,275955884096,275955884096,4239424,4239424,4242496,4243264,1077985088,1077977152,4235328,4235328,1077977152,1077981248,4629771061636937792,70644700069440,4243264,4235328,275955884096,275955884096,4235328,4239424,4241472,4243008,1077984832,1077977152,4235328,4235328,1077977152,1077981248,4629771061636937792,70644700068928,4243008,4235328,275955884096,275955884096,4235328,4239424,4241472,4242496,1077984320,1077977152,4235328,4235328,1077977152,1077981248,4629771061636937792,70644700068928,4242496,4235328,275955884096,275955884096,4235328,4239424,4241472,4242496,1077984320,1077985088,4235328,4235328,1077977152,1077977152,4629771061636937792,70644700067904,4242496,4243264,275955884096,275955884096,4235328,4235328,4241472,4241472,1077983296,1077984832,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700067904,4241472,4243008,275955884096,275955884096,4235328,4235328,4239424,4241472,1077983296,1077984320,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700067904,4241472,4242496,275955884096,275955884096,4235328,4235328,4239424,4241472,1077983296,1077984320,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700067904,4241472,4242496,275955884096,275955884096,4235328,4235328,4239424,4241472,1077983296,1077983296,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700065856,4241472,4241472,275955884096,275955884096,4235328,4235328,4239424,4239424,1077981248,1077983296,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700065856,4239424,4241472,275955884096,275955884096,4235328,4235328,4239424,4239424,1077981248,1077983296,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700065856,4239424,4241472,275955884096,275955884096,4235328,4235328,4239424,4239424,1077981248,1077983296,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700065856,4239424,4241472,275955884096,275955884096,4235328,4235328,4239424,4239424,1077981248,1077981248,4235328,4235328,1077977152,1077977152,4629771061636935744,70644700065856,4239424,4239424,275955884096,275955884096,4235328,4235328,4239424,4239424,1077981248,1077981248,4235328,4235328,1077977152,1077977152,4629771061636931648,70644700065856,4239424,4239424,18085043209551680,275955884096,4235328,4235328,4235328,4239424,1077981248,1077981248,4243264,4235328,1077977152,1077977152,4629771061636931648,70644700065856,4239424,4239424,18085043209551424,275955884096,4235328,4235328,4235328,4239424,1077981248,1077981248,4243008,4235328,1077977152,1077977152,4629771061636931648,70644700065856,4239424,4239424,18085043209550912,275955884096,4235328,4235328,4235328,4239424,1077981248,1077981248,4242496,4235328,1077977152,1077977152,4629771061636931648,70644700061760,4239424,4239424,18085043209550912,70644700069696,4235328,4235328,4235328,4235328,1077977152,1077981248,4242496,4243264,1077985088,1077977152,4629771061636931648,70644700061760,4235328,4239424,18085043209549888,70644700069440,4243264,4235328,4235328,4235328,1077977152,1077981248,4241472,4243008,1077984832,1077977152,4629771061636931648,70644700061760,4235328,4239424,18085043209549888,70644700068928,4243008,4235328,4235328,4235328,1077977152,1077981248,4241472,4242496,1077984320,1077977152,4629771061636931648,70644700061760,4235328,4239424,18085043209549888,70644700068928,4242496,4235328,4235328,4235328,1077977152,1077977152,4241472,4242496,1077984320,1077985088,4629771061636931648,70644700061760,4235328,4235328,18085043209549888,70644700067904,4242496,4243264,4235328,4235328,1077977152,1077977152,4241472,4241472,1077983296,1077984832,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700067904,4241472,4243008,4235328,4235328,1077977152,1077977152,4239424,4241472,1077983296,1077984320,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700067904,4241472,4242496,4235328,4235328,1077977152,1077977152,4239424,4241472,1077983296,1077984320,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700067904,4241472,4242496,4235328,4235328,1077977152,1077977152,4239424,4241472,1077983296,1077983296,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700065856,4241472,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077983296,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700065856,4239424,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077983296,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700065856,4239424,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077983296,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700065856,4239424,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077981248,4629771061636931648,70644700061760,4235328,4235328,18085043209547840,70644700065856,4239424,4239424,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077981248,275955892032,70644700061760,4235328,4235328,18085043209543744,70644700065856,4239424,4239424,4243264,4235328,1077977152,1077977152,4235328,4239424,1077981248,1077981248,275955891776,70644700061760,4235328,4235328,18085043209543744,70644700065856,4239424,4239424,4243008,4235328,1077977152,1077977152,4235328,4239424,1077981248,1077981248,275955891264,70644700061760,4235328,4235328,18085043209543744,70644700065856,4239424,4239424,4242496,4235328,1077977152,1077977152,4235328,4239424,1077981248,1077981248,275955891264,275955892032,4235328,4235328,18085043209543744,70644700061760,4239424,4239424,4242496,4243264,1077985088,1077977152,4235328,4235328,1077977152,1077981248,275955890240,275955891776,4243264,4235328,18085043209543744,70644700061760,4235328,4239424,4241472,4243008,1077984832,1077977152,4235328,4235328,1077977152,1077981248,275955890240,275955891264,4243008,4235328,18085043209543744,70644700061760,4235328,4239424,4241472,4242496,1077984320,1077977152,4235328,4235328,1077977152,1077981248,275955890240,275955891264,4242496,4235328,18085043209543744,70644700061760,4235328,4239424,4241472,4242496,1077984320,1077985088,4235328,4235328,1077977152,1077977152,275955890240,275955890240,4242496,4243264,18085043209543744,70644700061760,4235328,4235328,4241472,4241472,1077983296,1077984832,4235328,4235328,1077977152,1077977152,275955888192,275955890240,4241472,4243008,18085043209543744,70644700061760,4235328,4235328,4239424,4241472,1077983296,1077984320,4235328,4235328,1077977152,1077977152,275955888192,275955890240,4241472,4242496,18085043209543744,70644700061760,4235328,4235328,4239424,4241472,1077983296,1077984320,4235328,4235328,1077977152,1077977152,275955888192,275955890240,4241472,4242496,18085043209543744,70644700061760,4235328,4235328,4239424,4241472,1077983296,1077983296,4235328,4235328,1077977152,1077977152,275955888192,275955888192,4241472,4241472,18085043209543744,70644700061760,4235328,4235328,4239424,4239424,1077981248,1077983296,4235328,4235328,1077977152,1077977152,275955888192,275955888192,4239424,4241472,18085043209543744,70644700061760,4235328,4235328,4239424,4239424,1077981248,1077983296,4235328,4235328,1077977152,1077977152,275955888192,275955888192,4239424,4241472,18085043209543744,70644700061760,4235328,4235328,4239424,4239424,1077981248,1077983296,4235328,4235328,1077977152,1077977152,275955888192,275955888192,4239424,4241472,18085043209543744,70644700061760,4235328,4235328,4239424,4239424,1077981248,1077981248,4235328,4235328,1077977152,1077977152,275955888192,275955888192,4239424,4239424,18085043209543744,70644700061760,4235328,4235328,4239424,4239424,1077981248,1077981248,4235328,4235328,1077977152,1077977152,275955884096,275955888192,4239424,4239424,275955892032,70644700061760,4235328,4235328,4235328,4239424,1077981248,1077981248,4243264,4235328,1077977152,1077977152,275955884096,275955888192,4239424,4239424,275955891776,70644700061760,4235328,4235328,4235328,4239424,1077981248,1077981248,4243008,4235328,1077977152,1077977152,275955884096,275955888192,4239424,4239424,275955891264,70644700061760,4235328,4235328,4235328,4239424,1077981248,1077981248,4242496,4235328,1077977152,1077977152,275955884096,275955884096,4239424,4239424,275955891264,275955892032,4235328,4235328,4235328,4235328,1077977152,1077981248,4242496,4243264,1077985088,1077977152,275955884096,275955884096,4235328,4239424,275955890240,275955891776,4243264,4235328,4235328,4235328,1077977152,1077981248,4241472,4243008,1077984832,1077977152,275955884096,275955884096,4235328,4239424,275955890240,275955891264,4243008,4235328,4235328,4235328,1077977152,1077981248,4241472,4242496,1077984320,1077977152,275955884096,275955884096,4235328,4239424,275955890240,275955891264,4242496,4235328,4235328,4235328,1077977152,1077977152,4241472,4242496,1077984320,1077985088,275955884096,275955884096,4235328,4235328,275955890240,275955890240,4242496,4243264,4235328,4235328,1077977152,1077977152,4241472,4241472,1077983296,1077984832,275955884096,275955884096,4235328,4235328,275955888192,275955890240,4241472,4243008,4235328,4235328,1077977152,1077977152,4239424,4241472,1077983296,1077984320,275955884096,275955884096,4235328,4235328,275955888192,275955890240,4241472,4242496,4235328,4235328,1077977152,1077977152,4239424,4241472,1077983296,1077984320,275955884096,275955884096,4235328,4235328,275955888192,275955890240,4241472,4242496,4235328,4235328,1077977152,1077977152,4239424,4241472,1077983296,1077983296,275955884096,275955884096,4235328,4235328,275955888192,275955888192,4241472,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077983296,275955884096,275955884096,4235328,4235328,275955888192,275955888192,4239424,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077983296,275955884096,275955884096,4235328,4235328,275955888192,275955888192,4239424,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077983296,275955884096,275955884096,4235328,4235328,275955888192,275955888192,4239424,4241472,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077981248,275955884096,275955884096,4235328,4235328,275955888192,275955888192,4239424,4239424,4235328,4235328,1077977152,1077977152,4239424,4239424,1077981248,1077981248,0],[9259542123273813888,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,9259542123273813632,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,9259542123273813120,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,9259542123273813120,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,9259542123273812096,551911718784,8421248,8405120,2155888768,2155888768,8405120,8413312,9259542123273812096,551911718528,8420992,8405120,2155888768,2155888768,8405120,8413312,9259542123273812096,551911718016,8420480,8405120,2155888768,2155888768,8405120,8413312,9259542123273812096,551911718016,8420480,8405120,2155888768,2155888768,8405120,8413312,9259542123273810048,551911716992,8419456,8421248,2155888768,2155888768,8405120,8405120,9259542123273810048,551911716992,8419456,8420992,2155888768,2155888768,8405120,8405120,9259542123273810048,551911716992,8419456,8420480,2155888768,2155888768,8405120,8405120,9259542123273810048,551911716992,8419456,8420480,2155888768,2155888768,8405120,8405120,9259542123273810048,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,9259542123273810048,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,9259542123273810048,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,9259542123273810048,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,9259542123273805952,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273805952,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,9259542123273797760,551911710848,8413312,8413312,141289400074112,2155888768,8405120,8405120,9259542123273797760,551911710848,8413312,8413312,141289400073856,2155888768,8405120,8405120,9259542123273797760,551911710848,8413312,8413312,141289400073344,2155888768,8405120,8405120,9259542123273797760,551911710848,8413312,8413312,141289400073344,2155888768,8405120,8405120,9259542123273797760,551911702656,8405120,8413312,141289400072320,551911718784,8421248,8405120,9259542123273797760,551911702656,8405120,8413312,141289400072320,551911718528,8420992,8405120,9259542123273797760,551911702656,8405120,8413312,141289400072320,551911718016,8420480,8405120,9259542123273797760,551911702656,8405120,8413312,141289400072320,551911718016,8420480,8405120,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8421248,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8420992,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8420480,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8420480,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,9259542123273797760,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,9259542123273797760,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155904896,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155904640,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155904128,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155904128,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155903104,2155904896,8421248,8405120,141289400057984,551911702656,8405120,8413312,2155903104,2155904640,8420992,8405120,141289400057984,551911702656,8405120,8413312,2155903104,2155904128,8420480,8405120,141289400057984,551911702656,8405120,8413312,2155903104,2155904128,8420480,8405120,141289400057984,551911702656,8405120,8413312,2155901056,2155903104,8419456,8421248,141289400057984,551911702656,8405120,8405120,2155901056,2155903104,8419456,8420992,141289400057984,551911702656,8405120,8405120,2155901056,2155903104,8419456,8420480,141289400057984,551911702656,8405120,8405120,2155901056,2155903104,8419456,8420480,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904896,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904640,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904128,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904128,551911702656,8405120,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904896,8421248,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904640,8420992,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904128,8420480,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904128,8420480,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8421248,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8420992,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,36170086419038080,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,36170086419037824,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,36170086419037312,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,36170086419037312,2155888768,8405120,8405120,2155888768,2155896960,8413312,8413312,36170086419036288,551911718784,8421248,8405120,2155888768,2155888768,8405120,8413312,36170086419036288,551911718528,8420992,8405120,2155888768,2155888768,8405120,8413312,36170086419036288,551911718016,8420480,8405120,2155888768,2155888768,8405120,8413312,36170086419036288,551911718016,8420480,8405120,2155888768,2155888768,8405120,8413312,36170086419034240,551911716992,8419456,8421248,2155888768,2155888768,8405120,8405120,36170086419034240,551911716992,8419456,8420992,2155888768,2155888768,8405120,8405120,36170086419034240,551911716992,8419456,8420480,2155888768,2155888768,8405120,8405120,36170086419034240,551911716992,8419456,8420480,2155888768,2155888768,8405120,8405120,36170086419034240,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,36170086419034240,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,36170086419034240,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,36170086419034240,551911714944,8417408,8419456,2155888768,2155888768,8405120,8405120,36170086419030144,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911714944,8417408,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8417408,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419030144,551911710848,8413312,8413312,2155888768,2155888768,8405120,8405120,36170086419021952,551911710848,8413312,8413312,141289400074112,2155888768,8405120,8405120,36170086419021952,551911710848,8413312,8413312,141289400073856,2155888768,8405120,8405120,36170086419021952,551911710848,8413312,8413312,141289400073344,2155888768,8405120,8405120,36170086419021952,551911710848,8413312,8413312,141289400073344,2155888768,8405120,8405120,36170086419021952,551911702656,8405120,8413312,141289400072320,551911718784,8421248,8405120,36170086419021952,551911702656,8405120,8413312,141289400072320,551911718528,8420992,8405120,36170086419021952,551911702656,8405120,8413312,141289400072320,551911718016,8420480,8405120,36170086419021952,551911702656,8405120,8413312,141289400072320,551911718016,8420480,8405120,36170086419021952,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8421248,36170086419021952,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8420992,36170086419021952,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8420480,36170086419021952,551911702656,8405120,8405120,141289400070272,551911716992,8419456,8420480,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,36170086419021952,551911702656,8405120,8405120,141289400070272,551911714944,8417408,8419456,36170086419021952,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911714944,8417408,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8417408,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,36170086419021952,551911702656,8405120,8405120,141289400066176,551911710848,8413312,8413312,2155904896,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155904640,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155904128,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155904128,551911702656,8405120,8405120,141289400057984,551911710848,8413312,8413312,2155903104,2155904896,8421248,8405120,141289400057984,551911702656,8405120,8413312,2155903104,2155904640,8420992,8405120,141289400057984,551911702656,8405120,8413312,2155903104,2155904128,8420480,8405120,141289400057984,551911702656,8405120,8413312,2155903104,2155904128,8420480,8405120,141289400057984,551911702656,8405120,8413312,2155901056,2155903104,8419456,8421248,141289400057984,551911702656,8405120,8405120,2155901056,2155903104,8419456,8420992,141289400057984,551911702656,8405120,8405120,2155901056,2155903104,8419456,8420480,141289400057984,551911702656,8405120,8405120,2155901056,2155903104,8419456,8420480,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155901056,2155901056,8417408,8419456,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155901056,8417408,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8417408,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155896960,2155896960,8413312,8413312,141289400057984,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904896,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904640,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904128,551911702656,8405120,8405120,2155888768,2155896960,8413312,8413312,2155904128,551911702656,8405120,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904896,8421248,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904640,8420992,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904128,8420480,8405120,2155888768,2155888768,8405120,8413312,2155903104,2155904128,8420480,8405120,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8421248,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8420992,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155903104,8419456,8420480,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155901056,2155901056,8417408,8419456,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155901056,8417408,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8417408,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,2155888768,2155888768,8405120,8405120,2155896960,2155896960,8413312,8413312,0],[72340172854657281,4313710849,282578816729345,4313710849,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,17694976,4312662273,17694976,4312662273,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,18743552,4328390913,18743552,4328390913,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,20840704,18743552,20840704,18743552,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103825338624,20840704,1103825338624,20840704,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,4311875840,1103823503616,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172846268672,4313710848,282578808340736,4313710848,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,18743553,4320002304,18743553,4320002304,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,17694977,4312662272,17694977,4312662272,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,20840705,18743553,20840705,18743553,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,1103823503617,16908545,1103823503617,16908545,1103825338625,20840705,1103825338625,20840705,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,4311875841,1103823503617,4311875841,1103840018689,4313710849,1103840018689,4313710849,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172839977217,4328390913,282578802049281,4328390913,72340172838142209,4311875841,282578800214273,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,17694976,4312662273,17694976,4312662273,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,20840704,4313710849,20840704,4313710849,16908544,4311875841,16908544,4311875841,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,18743552,20840704,18743552,20840704,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103831630080,18743552,1103831630080,18743552,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,4312662272,1103824290048,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172839977216,4320002304,282578802049280,4320002304,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,20840705,4313710848,20840705,4313710848,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,17694977,4312662272,17694977,4312662272,16908545,4311875840,16908545,4311875840,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,18743553,20840705,18743553,20840705,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,33423617,18743553,33423617,18743553,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103825338625,33423617,1103825338625,33423617,1103823503617,4311875841,1103823503617,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172842074369,4313710849,282578804146433,4313710849,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,16908544,4311875841,16908544,4311875841,17694976,4312662273,17694976,4312662273,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,18743552,4315808001,18743552,4315808001,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,25035008,18743552,25035008,18743552,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103825338624,25035008,1103825338624,25035008,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,4311875840,1103823503616,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172842074368,4313710848,282578804146432,4313710848,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,16908545,4311875840,16908545,4311875840,18743553,4315808000,18743553,4315808000,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,17694977,4312662272,17694977,4312662272,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,16908545,16908545,16908545,33423617,18743553,33423617,18743553,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,18743553,33423617,18743553,33423617,16908545,16908545,16908545,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103827435777,18743553,1103827435777,18743553,1103823503617,16908545,1103823503617,16908545,1103823765761,4312137985,1103823765761,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172839977217,4315808001,282578802049281,4315808001,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,17694976,4312662273,17694976,4312662273,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,25035008,4313710849,25035008,4313710849,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,18743552,25035008,18743552,25035008,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103827435776,18743552,1103827435776,18743552,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,4312137984,1103823765760,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172839977216,4315808000,282578802049280,4315808000,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172854657280,4313710848,282578816729344,4313710848,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,17694977,4312662272,17694977,4312662272,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,18743553,4328390912,18743553,4328390912,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,20840705,18743553,20840705,18743553,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103825338625,20840705,1103825338625,20840705,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,4311875841,1103823503617,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172846268673,4313710849,282578808340737,4313710849,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,18743552,4320002305,18743552,4320002305,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,17694976,4312662273,17694976,4312662273,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,20840704,18743552,20840704,18743552,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,1103823503616,16908544,1103823503616,16908544,1103825338624,20840704,1103825338624,20840704,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,4311875840,1103823503616,4311875840,1103840018688,4313710848,1103840018688,4313710848,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172839977216,4328390912,282578802049280,4328390912,72340172838142208,4311875840,282578800214272,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,17694977,4312662272,17694977,4312662272,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,20840705,4313710848,20840705,4313710848,16908545,4311875840,16908545,4311875840,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,18743553,20840705,18743553,20840705,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103831630081,18743553,1103831630081,18743553,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,4312662273,1103824290049,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172839977217,4320002305,282578802049281,4320002305,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,20840704,4313710849,20840704,4313710849,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,17694976,4312662273,17694976,4312662273,16908544,4311875841,16908544,4311875841,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,18743552,20840704,18743552,20840704,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,33423616,18743552,33423616,18743552,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103825338624,33423616,1103825338624,33423616,1103823503616,4311875840,1103823503616,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172842074368,4313710848,282578804146432,4313710848,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,16908545,4311875840,16908545,4311875840,17694977,4312662272,17694977,4312662272,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,18743553,4315808000,18743553,4315808000,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,25035009,18743553,25035009,18743553,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103825338625,25035009,1103825338625,25035009,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,4311875841,1103823503617,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172842074369,4313710849,282578804146433,4313710849,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,16908544,4311875841,16908544,4311875841,18743552,4315808001,18743552,4315808001,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,4311875841,16908544,4311875841,17694976,4312662273,17694976,4312662273,16908544,4311875841,16908544,4311875841,17170688,4312137985,17170688,4312137985,16908544,16908544,16908544,16908544,33423616,18743552,33423616,18743552,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,17694976,17694976,17694976,17694976,16908544,16908544,16908544,16908544,17170688,17170688,17170688,17170688,16908544,16908544,16908544,16908544,18743552,33423616,18743552,33423616,16908544,16908544,16908544,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103824290048,17694976,1103824290048,17694976,1103823503616,16908544,1103823503616,16908544,1103823765760,17170688,1103823765760,17170688,1103823503616,16908544,1103823503616,16908544,1103827435776,18743552,1103827435776,18743552,1103823503616,16908544,1103823503616,16908544,1103823765760,4312137984,1103823765760,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172838928640,4312662272,282578801000704,4312662272,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,72340172839977216,4315808000,282578802049280,4315808000,72340172838142208,4311875840,282578800214272,4311875840,72340172838404352,4312137984,282578800476416,4312137984,72340172838142208,4311875840,282578800214272,4311875840,17694977,4312662272,17694977,4312662272,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,25035009,4313710848,25035009,4313710848,16908545,4311875840,16908545,4311875840,17170689,4312137984,17170689,4312137984,16908545,4311875840,16908545,4311875840,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,18743553,25035009,18743553,25035009,16908545,16908545,16908545,16908545,17170689,17170689,17170689,17170689,16908545,16908545,16908545,16908545,17694977,17694977,17694977,17694977,16908545,16908545,16908545,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103827435777,18743553,1103827435777,18743553,1103823503617,16908545,1103823503617,16908545,1103823765761,17170689,1103823765761,17170689,1103823503617,16908545,1103823503617,16908545,1103824290049,17694977,1103824290049,17694977,1103823503617,16908545,1103823503617,16908545,1103823765761,4312137985,1103823765761,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172839977217,4315808001,282578802049281,4315808001,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,72340172838928641,4312662273,282578801000705,4312662273,72340172838142209,4311875841,282578800214273,4311875841,72340172838404353,4312137985,282578800476417,4312137985,72340172838142209,4311875841,282578800214273,4311875841,0],[144680345692602882,2207663325698,50135554,50135554,8625390080,8625390080,35455488,35455488,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345677922818,2207648645634,35455490,35455490,8640070144,8640070144,50135552,50135552,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345680019970,2207650742786,37552642,37552642,8625390080,8625390080,35455488,35455488,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345677922818,2207648645634,35455490,35455490,8627487232,8627487232,37552640,37552640,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345684214274,2207654937090,41746946,41746946,8625390080,8625390080,35455488,35455488,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345677922818,2207648645634,35455490,35455490,8631681536,8631681536,41746944,41746944,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345680019970,2207650742786,37552642,37552642,8625390080,8625390080,35455488,35455488,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345677922818,2207648645634,35455490,35455490,8627487232,8627487232,37552640,37552640,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,144680345676874242,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,144680345676349954,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,565157616747010,2207663325698,50135554,50135554,8625390080,8625390080,35455488,35455488,565157600494082,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,565157601018370,2207647597058,34406914,34406914,8624341504,8624341504,34406912,34406912,565157600494082,2207647072770,33882626,33882626,8623817216,8623817216,33882624,33882624,565157602066946,2207648645634,35455490,35455490,144680345692602880,2207663325696,50135552,50135552,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157604164098,2207650742786,37552642,37552642,144680345677922816,2207648645632,35455488,35455488,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157602066946,2207648645634,35455490,35455490,144680345680019968,2207650742784,37552640,37552640,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157608358402,2207654937090,41746946,41746946,144680345677922816,2207648645632,35455488,35455488,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157602066946,2207648645634,35455490,35455490,144680345684214272,2207654937088,41746944,41746944,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157604164098,2207650742786,37552642,37552642,144680345677922816,2207648645632,35455488,35455488,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157602066946,2207648645634,35455490,35455490,144680345680019968,2207650742784,37552640,37552640,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,565157601018370,2207647597058,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,565157600494082,2207647072770,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,8640070146,8640070146,50135554,50135554,144680345677922816,2207648645632,35455488,35455488,8623817218,8623817218,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,144680345676874240,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,144680345676349952,2207647072768,33882624,33882624,8625390082,8625390082,35455490,35455490,565157616747008,2207663325696,50135552,50135552,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8627487234,8627487234,37552642,37552642,565157602066944,2207648645632,35455488,35455488,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8625390082,8625390082,35455490,35455490,565157604164096,2207650742784,37552640,37552640,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8631681538,8631681538,41746946,41746946,565157602066944,2207648645632,35455488,35455488,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8625390082,8625390082,35455490,35455490,565157608358400,2207654937088,41746944,41746944,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8627487234,8627487234,37552642,37552642,565157602066944,2207648645632,35455488,35455488,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8625390082,8625390082,35455490,35455490,565157604164096,2207650742784,37552640,37552640,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8640070146,8640070146,50135554,50135554,565157602066944,2207648645632,35455488,35455488,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8624341506,8624341506,34406914,34406914,565157601018368,2207647597056,34406912,34406912,8623817218,8623817218,33882626,33882626,565157600494080,2207647072768,33882624,33882624,8625390082,8625390082,35455490,35455490,8640070144,8640070144,50135552,50135552,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8627487234,8627487234,37552642,37552642,8625390080,8625390080,35455488,35455488,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8625390082,8625390082,35455490,35455490,8627487232,8627487232,37552640,37552640,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8631681538,8631681538,41746946,41746946,8625390080,8625390080,35455488,35455488,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8625390082,8625390082,35455490,35455490,8631681536,8631681536,41746944,41746944,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8627487234,8627487234,37552642,37552642,8625390080,8625390080,35455488,35455488,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8625390082,8625390082,35455490,35455490,8627487232,8627487232,37552640,37552640,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,8624341506,8624341506,34406914,34406914,8624341504,8624341504,34406912,34406912,8623817218,8623817218,33882626,33882626,8623817216,8623817216,33882624,33882624,0],[289360691368494084,17247699972,83559428,67830788,17263428608,4415294211072,83559424,67830784,17263363076,4415294145540,83493892,67765252,289360691368428544,17247634432,83493888,67765248,17255040004,17247699972,75170820,67830788,1130315208393728,4415294211072,75170816,67830784,1130315208328196,4415294145540,75105284,67765252,17254974464,17247634432,75105280,67765248,289360691352765444,17248748548,67830788,68879364,17247699968,4415295259648,67830784,68879360,17247634436,4415295194116,67765252,68813828,289360691352699904,17248683008,67765248,68813824,17247699972,17248748548,67830788,68879364,1130315201053696,4415295259648,67830784,68879360,1130315200988164,4415295194116,67765252,68813828,17247634432,17248683008,67765248,68813824,289360691353814020,17247699972,68879364,67830788,17248748544,4415294211072,68879360,67830784,17248683012,4415294145540,68813828,67765252,289360691353748480,17247634432,68813824,67765248,17248748548,17247699972,68879364,67830788,1130315202102272,4415294211072,68879360,67830784,1130315202036740,4415294145540,68813828,67765252,17248683008,17247634432,68813824,67765248,289360691352765444,4415309939716,67830788,83559428,17247699968,17263428608,67830784,83559424,17247634436,17263363076,67765252,83493892,289360691352699904,4415309874176,67765248,83493888,17247699972,17255040004,67830788,75170820,1130315201053696,4415301551104,67830784,75170816,1130315200988164,4415301485572,67765252,75105284,17247634432,17254974464,67765248,75105280,289360691355911172,4415294211076,70976516,67830788,17250845696,17247699968,70976512,67830784,17250780164,17247634436,70910980,67765252,289360691355845632,4415294145536,70910976,67765248,17250845700,17247699972,70976516,67830788,1130315204199424,4415294211072,70976512,67830784,1130315204133892,4415294145540,70910980,67765252,17250780160,17247634432,70910976,67765248,289360691352765444,4415295259652,67830788,68879364,17247699968,17248748544,67830784,68879360,17247634436,17248683012,67765252,68813828,289360691352699904,4415295194112,67765248,68813824,17247699972,17248748548,67830788,68879364,1130315201053696,4415295259648,67830784,68879360,1130315200988164,4415295194116,67765252,68813828,17247634432,17248683008,67765248,68813824,289360691353814020,4415294211076,68879364,67830788,17248748544,17247699968,68879360,67830784,17248683012,17247634436,68813828,67765252,289360691353748480,4415294145536,68813824,67765248,17248748548,17247699972,68879364,67830788,1130315202102272,4415294211072,68879360,67830784,1130315202036740,4415294145540,68813828,67765252,17248683008,17247634432,68813824,67765248,289360691352765444,4415297356804,67830788,70976516,17247699968,17250845696,67830784,70976512,17247634436,17250780164,67765252,70910980,289360691352699904,4415297291264,67765248,70910976,17247699972,17250845700,67830788,70976516,1130315201053696,4415297356800,67830784,70976512,1130315200988164,4415297291268,67765252,70910980,17247634432,17250780160,67765248,70910976,289360691360105476,4415294211076,75170820,67830788,17255040000,17247699968,75170816,67830784,17254974468,17247634436,75105284,67765252,289360691360039936,4415294145536,75105280,67765248,1130315216782340,17247699972,83559428,67830788,17263428608,4415294211072,83559424,67830784,17263363076,4415294145540,83493892,67765252,1130315216716800,17247634432,83493888,67765248,289360691352765444,4415295259652,67830788,68879364,17247699968,17248748544,67830784,68879360,17247634436,17248683012,67765252,68813828,289360691352699904,4415295194112,67765248,68813824,1130315201053700,17248748548,67830788,68879364,17247699968,4415295259648,67830784,68879360,17247634436,4415295194116,67765252,68813828,1130315200988160,17248683008,67765248,68813824,289360691353814020,4415294211076,68879364,67830788,17248748544,17247699968,68879360,67830784,17248683012,17247634436,68813828,67765252,289360691353748480,4415294145536,68813824,67765248,1130315202102276,17247699972,68879364,67830788,17248748544,4415294211072,68879360,67830784,17248683012,4415294145540,68813828,67765252,1130315202036736,17247634432,68813824,67765248,289360691352765444,4415301551108,67830788,75170820,17247699968,17255040000,67830784,75170816,17247634436,17254974468,67765252,75105284,289360691352699904,4415301485568,67765248,75105280,1130315201053700,4415309939716,67830788,83559428,17247699968,17263428608,67830784,83559424,17247634436,17263363076,67765252,83493892,1130315200988160,4415309874176,67765248,83493888,289360691355911172,4415294211076,70976516,67830788,17250845696,17247699968,70976512,67830784,17250780164,17247634436,70910980,67765252,289360691355845632,4415294145536,70910976,67765248,1130315204199428,4415294211076,70976516,67830788,17250845696,17247699968,70976512,67830784,17250780164,17247634436,70910980,67765252,1130315204133888,4415294145536,70910976,67765248,289360691352765444,4415295259652,67830788,68879364,17247699968,17248748544,67830784,68879360,17247634436,17248683012,67765252,68813828,289360691352699904,4415295194112,67765248,68813824,1130315201053700,4415295259652,67830788,68879364,17247699968,17248748544,67830784,68879360,17247634436,17248683012,67765252,68813828,1130315200988160,4415295194112,67765248,68813824,289360691353814020,4415294211076,68879364,67830788,17248748544,17247699968,68879360,67830784,17248683012,17247634436,68813828,67765252,289360691353748480,4415294145536,68813824,67765248,1130315202102276,4415294211076,68879364,67830788,17248748544,17247699968,68879360,67830784,17248683012,17247634436,68813828,67765252,1130315202036736,4415294145536,68813824,67765248,289360691352765444,4415297356804,67830788,70976516,17247699968,17250845696,67830784,70976512,17247634436,17250780164,67765252,70910980,289360691352699904,4415297291264,67765248,70910976,1130315201053700,4415297356804,67830788,70976516,17247699968,17250845696,67830784,70976512,17247634436,17250780164,67765252,70910980,1130315200988160,4415297291264,67765248,70910976,17263428612,4415294211076,83559428,67830788,289360691368494080,17247699968,83559424,67830784,289360691368428548,17247634436,83493892,67765252,17263363072,4415294145536,83493888,67765248,1130315208393732,4415294211076,75170820,67830788,17255040000,17247699968,75170816,67830784,17254974468,17247634436,75105284,67765252,1130315208328192,4415294145536,75105280,67765248,17247699972,4415295259652,67830788,68879364,289360691352765440,17248748544,67830784,68879360,289360691352699908,17248683012,67765252,68813828,17247634432,4415295194112,67765248,68813824,1130315201053700,4415295259652,67830788,68879364,17247699968,17248748544,67830784,68879360,17247634436,17248683012,67765252,68813828,1130315200988160,4415295194112,67765248,68813824,17248748548,4415294211076,68879364,67830788,289360691353814016,17247699968,68879360,67830784,289360691353748484,17247634436,68813828,67765252,17248683008,4415294145536,68813824,67765248,1130315202102276,4415294211076,68879364,67830788,17248748544,17247699968,68879360,67830784,17248683012,17247634436,68813828,67765252,1130315202036736,4415294145536,68813824,67765248,17247699972,17263428612,67830788,83559428,289360691352765440,4415309939712,67830784,83559424,289360691352699908,4415309874180,67765252,83493892,17247634432,17263363072,67765248,83493888,1130315201053700,4415301551108,67830788,75170820,17247699968,17255040000,67830784,75170816,17247634436,17254974468,67765252,75105284,1130315200988160,4415301485568,67765248,75105280,17250845700,17247699972,70976516,67830788,289360691355911168,4415294211072,70976512,67830784,289360691355845636,4415294145540,70910980,67765252,17250780160,17247634432,70910976,67765248,1130315204199428,4415294211076,70976516,67830788,17250845696,17247699968,70976512,67830784,17250780164,17247634436,70910980,67765252,1130315204133888,4415294145536,70910976,67765248,17247699972,17248748548,67830788,68879364,289360691352765440,4415295259648,67830784,68879360,289360691352699908,4415295194116,67765252,68813828,17247634432,17248683008,67765248,68813824,1130315201053700,4415295259652,67830788,68879364,17247699968,17248748544,67830784,68879360,17247634436,17248683012,67765252,68813828,1130315200988160,4415295194112,67765248,68813824,17248748548,17247699972,68879364,67830788,289360691353814016,4415294211072,68879360,67830784,289360691353748484,4415294145540,68813828,67765252,17248683008,17247634432,68813824,67765248,1130315202102276,4415294211076,68879364,67830788,17248748544,17247699968,68879360,67830784,17248683012,17247634436,68813828,67765252,1130315202036736,4415294145536,68813824,67765248,17247699972,17250845700,67830788,70976516,289360691352765440,4415297356800,67830784,70976512,289360691352699908,4415297291268,67765252,70910980,17247634432,17250780160,67765248,70910976,1130315201053700,4415297356804,67830788,70976516,17247699968,17250845696,67830784,70976512,17247634436,17250780164,67765252,70910980,1130315200988160,4415297291264,67765248,70910976,17255040004,17247699972,75170820,67830788,289360691360105472,4415294211072,75170816,67830784,289360691360039940,4415294145540,75105284,67765252,17254974464,17247634432,75105280,67765248,17263428612,4415294211076,83559428,67830788,1130315216782336,17247699968,83559424,67830784,1130315216716804,17247634436,83493892,67765252,17263363072,4415294145536,83493888,67765248,17247699972,17248748548,67830788,68879364,289360691352765440,4415295259648,67830784,68879360,289360691352699908,4415295194116,67765252,68813828,17247634432,17248683008,67765248,68813824,17247699972,4415295259652,67830788,68879364,1130315201053696,17248748544,67830784,68879360,1130315200988164,17248683012,67765252,68813828,17247634432,4415295194112,67765248,68813824,17248748548,17247699972,68879364,67830788,289360691353814016,4415294211072,68879360,67830784,289360691353748484,4415294145540,68813828,67765252,17248683008,17247634432,68813824,67765248,17248748548,4415294211076,68879364,67830788,1130315202102272,17247699968,68879360,67830784,1130315202036740,17247634436,68813828,67765252,17248683008,4415294145536,68813824,67765248,17247699972,17255040004,67830788,75170820,289360691352765440,4415301551104,67830784,75170816,289360691352699908,4415301485572,67765252,75105284,17247634432,17254974464,67765248,75105280,17247699972,17263428612,67830788,83559428,1130315201053696,4415309939712,67830784,83559424,1130315200988164,4415309874180,67765252,83493892,17247634432,17263363072,67765248,83493888,17250845700,17247699972,70976516,67830788,289360691355911168,4415294211072,70976512,67830784,289360691355845636,4415294145540,70910980,67765252,17250780160,17247634432,70910976,67765248,17250845700,17247699972,70976516,67830788,1130315204199424,4415294211072,70976512,67830784,1130315204133892,4415294145540,70910980,67765252,17250780160,17247634432,70910976,67765248,17247699972,17248748548,67830788,68879364,289360691352765440,4415295259648,67830784,68879360,289360691352699908,4415295194116,67765252,68813828,17247634432,17248683008,67765248,68813824,17247699972,17248748548,67830788,68879364,1130315201053696,4415295259648,67830784,68879360,1130315200988164,4415295194116,67765252,68813828,17247634432,17248683008,67765248,68813824,17248748548,17247699972,68879364,67830788,289360691353814016,4415294211072,68879360,67830784,289360691353748484,4415294145540,68813828,67765252,17248683008,17247634432,68813824,67765248,17248748548,17247699972,68879364,67830788,1130315202102272,4415294211072,68879360,67830784,1130315202036740,4415294145540,68813828,67765252,17248683008,17247634432,68813824,67765248,17247699972,17250845700,67830788,70976516,289360691352765440,4415297356800,67830784,70976512,289360691352699908,4415297291268,67765252,70910980,17247634432,17250780160,67765248,70910976,17247699972,17250845700,67830788,70976516,1130315201053696,4415297356800,67830784,70976512,1130315200988164,4415297291268,67765252,70910980,17247634432,17250780160,67765248,70910976,0],[578721382720276488,578721382720276480,34510145544,34510145536,150407176,150407168,150407176,150407168,2260630416853000,2260630416852992,34510145544,34510145536,150407176,150407168,150407176,150407168,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,8830594779144,8830594779136,34501756936,34501756928,142018568,142018560,142018568,142018560,8830594779144,8830594779136,34501756936,34501756928,142018568,142018560,142018568,142018560,578721382720210952,578721382720210944,34510080008,34510080000,150341640,150341632,150341640,150341632,2260630416787464,2260630416787456,34510080008,34510080000,150341640,150341632,150341640,150341632,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705596424,578721382705596416,34495465480,34495465472,135727112,135727104,135727112,135727104,2260630402172936,2260630402172928,34495465480,34495465472,135727112,135727104,135727112,135727104,8830594713608,8830594713600,34501691400,34501691392,141953032,141953024,141953032,141953024,8830594713608,8830594713600,34501691400,34501691392,141953032,141953024,141953032,141953024,578721382720079880,578721382720079872,34509948936,34509948928,150210568,150210560,150210568,150210560,2260630416656392,2260630416656384,34509948936,34509948928,150210568,150210560,150210568,150210560,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,578721382705530888,578721382705530880,34495399944,34495399936,135661576,135661568,135661576,135661568,2260630402107400,2260630402107392,34495399944,34495399936,135661576,135661568,135661576,135661568,8830594582536,8830594582528,34501560328,34501560320,141821960,141821952,141821960,141821952,8830594582536,8830594582528,34501560328,34501560320,141821960,141821952,141821960,141821952,578721382720079880,578721382720079872,34509948936,34509948928,150210568,150210560,150210568,150210560,2260630416656392,2260630416656384,34509948936,34509948928,150210568,150210560,150210568,150210560,578721382707693576,578721382707693568,34497562632,34497562624,137824264,137824256,137824264,137824256,2260630404270088,2260630404270080,34497562632,34497562624,137824264,137824256,137824264,137824256,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,8830594582536,8830594582528,34501560328,34501560320,141821960,141821952,141821960,141821952,8830594582536,8830594582528,34501560328,34501560320,141821960,141821952,141821960,141821952,8830590584840,8830590584832,34497562632,34497562624,137824264,137824256,137824264,137824256,8830590584840,8830590584832,34497562632,34497562624,137824264,137824256,137824264,137824256,578721382707628040,578721382707628032,34497497096,34497497088,137758728,137758720,137758728,137758720,2260630404204552,2260630404204544,34497497096,34497497088,137758728,137758720,137758728,137758720,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705596424,578721382705596416,34495465480,34495465472,135727112,135727104,135727112,135727104,2260630402172936,2260630402172928,34495465480,34495465472,135727112,135727104,135727112,135727104,8830590519304,8830590519296,34497497096,34497497088,137758728,137758720,137758728,137758720,8830590519304,8830590519296,34497497096,34497497088,137758728,137758720,137758728,137758720,578721382707496968,578721382707496960,34497366024,34497366016,137627656,137627648,137627656,137627648,2260630404073480,2260630404073472,34497366024,34497366016,137627656,137627648,137627656,137627648,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,578721382705530888,578721382705530880,34495399944,34495399936,135661576,135661568,135661576,135661568,2260630402107400,2260630402107392,34495399944,34495399936,135661576,135661568,135661576,135661568,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,578721382707496968,578721382707496960,34497366024,34497366016,137627656,137627648,137627656,137627648,2260630404073480,2260630404073472,34497366024,34497366016,137627656,137627648,137627656,137627648,578721382711887880,578721382711887872,34501756936,34501756928,142018568,142018560,142018568,142018560,2260630408464392,2260630408464384,34501756936,34501756928,142018568,142018560,142018568,142018560,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,8830603167752,8830603167744,34510145544,34510145536,150407176,150407168,150407176,150407168,8830603167752,8830603167744,34510145544,34510145536,150407176,150407168,150407176,150407168,578721382711822344,578721382711822336,34501691400,34501691392,141953032,141953024,141953032,141953024,2260630408398856,2260630408398848,34501691400,34501691392,141953032,141953024,141953032,141953024,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705596424,578721382705596416,34495465480,34495465472,135727112,135727104,135727112,135727104,2260630402172936,2260630402172928,34495465480,34495465472,135727112,135727104,135727112,135727104,8830603102216,8830603102208,34510080008,34510080000,150341640,150341632,150341640,150341632,8830603102216,8830603102208,34510080008,34510080000,150341640,150341632,150341640,150341632,578721382711691272,578721382711691264,34501560328,34501560320,141821960,141821952,141821960,141821952,2260630408267784,2260630408267776,34501560328,34501560320,141821960,141821952,141821960,141821952,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,578721382705530888,578721382705530880,34495399944,34495399936,135661576,135661568,135661576,135661568,2260630402107400,2260630402107392,34495399944,34495399936,135661576,135661568,135661576,135661568,8830602971144,8830602971136,34509948936,34509948928,150210568,150210560,150210568,150210560,8830602971144,8830602971136,34509948936,34509948928,150210568,150210560,150210568,150210560,578721382711691272,578721382711691264,34501560328,34501560320,141821960,141821952,141821960,141821952,2260630408267784,2260630408267776,34501560328,34501560320,141821960,141821952,141821960,141821952,578721382707693576,578721382707693568,34497562632,34497562624,137824264,137824256,137824264,137824256,2260630404270088,2260630404270080,34497562632,34497562624,137824264,137824256,137824264,137824256,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,8830588422152,8830588422144,34495399944,34495399936,135661576,135661568,135661576,135661568,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,8830602971144,8830602971136,34509948936,34509948928,150210568,150210560,150210568,150210560,8830602971144,8830602971136,34509948936,34509948928,150210568,150210560,150210568,150210560,8830590584840,8830590584832,34497562632,34497562624,137824264,137824256,137824264,137824256,8830590584840,8830590584832,34497562632,34497562624,137824264,137824256,137824264,137824256,578721382707628040,578721382707628032,34497497096,34497497088,137758728,137758720,137758728,137758720,2260630404204552,2260630404204544,34497497096,34497497088,137758728,137758720,137758728,137758720,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705399816,578721382705399808,34495268872,34495268864,135530504,135530496,135530504,135530496,2260630401976328,2260630401976320,34495268872,34495268864,135530504,135530496,135530504,135530496,578721382705596424,578721382705596416,34495465480,34495465472,135727112,135727104,135727112,135727104,2260630402172936,2260630402172928,34495465480,34495465472,135727112,135727104,135727112,135727104,8830590519304,8830590519296,34497497096,34497497088,137758728,137758720,137758728,137758720,8830590519304,8830590519296,34497497096,34497497088,137758728,137758720,137758728,137758720,578721382707496968,578721382707496960,34497366024,34497366016,137627656,137627648,137627656,137627648,2260630404073480,2260630404073472,34497366024,34497366016,137627656,137627648,137627656,137627648,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588291080,8830588291072,34495268872,34495268864,135530504,135530496,135530504,135530496,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,8830588487688,8830588487680,34495465480,34495465472,135727112,135727104,135727112,135727104,578721382705530888,578721382705530880,34495399944,34495399936,135661576,135661568,135661576,135661568,2260630402107400,2260630402107392,34495399944,34495399936,135661576,135661568,135661576,135661568,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,8830590388232,8830590388224,34497366024,34497366016,137627656,137627648,137627656,137627648,578721382707496968,578721382707496960,34497366024,34497366016,137627656,137627648,137627656,137627648,2260630404073480,2260630404073472,34497366024,34497366016,137627656,137627648,137627656,137627648,0],[1157442765423841296,68995190800,284102672,275714064,1157442765423775760,68995125264,284037136,275648528,1157442765423644688,68994994192,283906064,275517456,1157442765423644688,68994994192,283906064,275517456,1157442765423382544,68994732048,283643920,275255312,1157442765423382544,68994732048,283643920,275255312,1157442765423382544,68994732048,283643920,275255312,1157442765423382544,68994732048,283643920,275255312,1157442765423841280,68995190784,284102656,275714048,1157442765423775744,68995125248,284037120,275648512,1157442765423644672,68994994176,283906048,275517440,1157442765423644672,68994994176,283906048,275517440,1157442765423382528,68994732032,283643904,275255296,1157442765423382528,68994732032,283643904,275255296,1157442765423382528,68994732032,283643904,275255296,1157442765423382528,68994732032,283643904,275255296,1157442765411258384,68990996496,271519760,271519760,1157442765411192848,68990930960,271454224,271454224,1157442765411061776,68990799888,271323152,271323152,1157442765411061776,68990799888,271323152,271323152,1157442765410799632,68990537744,271061008,271061008,1157442765410799632,68990537744,271061008,271061008,1157442765410799632,68990537744,271061008,271061008,1157442765410799632,68990537744,271061008,271061008,1157442765411258368,68990996480,271519744,271519744,1157442765411192832,68990930944,271454208,271454208,1157442765411061760,68990799872,271323136,271323136,1157442765411061760,68990799872,271323136,271323136,1157442765410799616,68990537728,271060992,271060992,1157442765410799616,68990537728,271060992,271060992,1157442765410799616,68990537728,271060992,271060992,1157442765410799616,68990537728,271060992,271060992,1157442765415452688,17661189623824,275714064,284102672,1157442765415387152,17661189558288,275648528,284037136,1157442765415256080,17661189427216,275517456,283906064,1157442765415256080,17661189427216,275517456,283906064,1157442765414993936,17661189165072,275255312,283643920,1157442765414993936,17661189165072,275255312,283643920,1157442765414993936,17661189165072,275255312,283643920,1157442765414993936,17661189165072,275255312,283643920,1157442765415452672,17661189623808,275714048,284102656,1157442765415387136,17661189558272,275648512,284037120,1157442765415256064,17661189427200,275517440,283906048,1157442765415256064,17661189427200,275517440,283906048,1157442765414993920,17661189165056,275255296,283643904,1157442765414993920,17661189165056,275255296,283643904,1157442765414993920,17661189165056,275255296,283643904,1157442765414993920,17661189165056,275255296,283643904,1157442765411258384,17661177040912,271519760,271519760,1157442765411192848,17661176975376,271454224,271454224,1157442765411061776,17661176844304,271323152,271323152,1157442765411061776,17661176844304,271323152,271323152,1157442765410799632,17661176582160,271061008,271061008,1157442765410799632,17661176582160,271061008,271061008,1157442765410799632,17661176582160,271061008,271061008,1157442765410799632,17661176582160,271061008,271061008,1157442765411258368,17661177040896,271519744,271519744,1157442765411192832,17661176975360,271454208,271454208,1157442765411061760,17661176844288,271323136,271323136,1157442765411061760,17661176844288,271323136,271323136,1157442765410799616,17661176582144,271060992,271060992,1157442765410799616,17661176582144,271060992,271060992,1157442765410799616,17661176582144,271060992,271060992,1157442765410799616,17661176582144,271060992,271060992,4521260816994320,17661181235216,284102672,275714064,4521260816928784,17661181169680,284037136,275648528,4521260816797712,17661181038608,283906064,275517456,4521260816797712,17661181038608,283906064,275517456,4521260816535568,17661180776464,283643920,275255312,4521260816535568,17661180776464,283643920,275255312,4521260816535568,17661180776464,283643920,275255312,4521260816535568,17661180776464,283643920,275255312,4521260816994304,17661181235200,284102656,275714048,4521260816928768,17661181169664,284037120,275648512,4521260816797696,17661181038592,283906048,275517440,4521260816797696,17661181038592,283906048,275517440,4521260816535552,17661180776448,283643904,275255296,4521260816535552,17661180776448,283643904,275255296,4521260816535552,17661180776448,283643904,275255296,4521260816535552,17661180776448,283643904,275255296,4521260804411408,17661177040912,271519760,271519760,4521260804345872,17661176975376,271454224,271454224,4521260804214800,17661176844304,271323152,271323152,4521260804214800,17661176844304,271323152,271323152,4521260803952656,17661176582160,271061008,271061008,4521260803952656,17661176582160,271061008,271061008,4521260803952656,17661176582160,271061008,271061008,4521260803952656,17661176582160,271061008,271061008,4521260804411392,17661177040896,271519744,271519744,4521260804345856,17661176975360,271454208,271454208,4521260804214784,17661176844288,271323136,271323136,4521260804214784,17661176844288,271323136,271323136,4521260803952640,17661176582144,271060992,271060992,4521260803952640,17661176582144,271060992,271060992,4521260803952640,17661176582144,271060992,271060992,4521260803952640,17661176582144,271060992,271060992,4521260808605712,17661189623824,275714064,284102672,4521260808540176,17661189558288,275648528,284037136,4521260808409104,17661189427216,275517456,283906064,4521260808409104,17661189427216,275517456,283906064,4521260808146960,17661189165072,275255312,283643920,4521260808146960,17661189165072,275255312,283643920,4521260808146960,17661189165072,275255312,283643920,4521260808146960,17661189165072,275255312,283643920,4521260808605696,17661189623808,275714048,284102656,4521260808540160,17661189558272,275648512,284037120,4521260808409088,17661189427200,275517440,283906048,4521260808409088,17661189427200,275517440,283906048,4521260808146944,17661189165056,275255296,283643904,4521260808146944,17661189165056,275255296,283643904,4521260808146944,17661189165056,275255296,283643904,4521260808146944,17661189165056,275255296,283643904,4521260804411408,17661177040912,271519760,271519760,4521260804345872,17661176975376,271454224,271454224,4521260804214800,17661176844304,271323152,271323152,4521260804214800,17661176844304,271323152,271323152,4521260803952656,17661176582160,271061008,271061008,4521260803952656,17661176582160,271061008,271061008,4521260803952656,17661176582160,271061008,271061008,4521260803952656,17661176582160,271061008,271061008,4521260804411392,17661177040896,271519744,271519744,4521260804345856,17661176975360,271454208,271454208,4521260804214784,17661176844288,271323136,271323136,4521260804214784,17661176844288,271323136,271323136,4521260803952640,17661176582144,271060992,271060992,4521260803952640,17661176582144,271060992,271060992,4521260803952640,17661176582144,271060992,271060992,4521260803952640,17661176582144,271060992,271060992,69003579408,17661181235216,284102672,275714064,69003513872,17661181169680,284037136,275648528,69003382800,17661181038608,283906064,275517456,69003382800,17661181038608,283906064,275517456,69003120656,17661180776464,283643920,275255312,69003120656,17661180776464,283643920,275255312,69003120656,17661180776464,283643920,275255312,69003120656,17661180776464,283643920,275255312,69003579392,17661181235200,284102656,275714048,69003513856,17661181169664,284037120,275648512,69003382784,17661181038592,283906048,275517440,69003382784,17661181038592,283906048,275517440,69003120640,17661180776448,283643904,275255296,69003120640,17661180776448,283643904,275255296,69003120640,17661180776448,283643904,275255296,69003120640,17661180776448,283643904,275255296,68990996496,17661177040912,271519760,271519760,68990930960,17661176975376,271454224,271454224,68990799888,17661176844304,271323152,271323152,68990799888,17661176844304,271323152,271323152,68990537744,17661176582160,271061008,271061008,68990537744,17661176582160,271061008,271061008,68990537744,17661176582160,271061008,271061008,68990537744,17661176582160,271061008,271061008,68990996480,17661177040896,271519744,271519744,68990930944,17661176975360,271454208,271454208,68990799872,17661176844288,271323136,271323136,68990799872,17661176844288,271323136,271323136,68990537728,17661176582144,271060992,271060992,68990537728,17661176582144,271060992,271060992,68990537728,17661176582144,271060992,271060992,68990537728,17661176582144,271060992,271060992,68995190800,69003579408,275714064,284102672,68995125264,69003513872,275648528,284037136,68994994192,69003382800,275517456,283906064,68994994192,69003382800,275517456,283906064,68994732048,69003120656,275255312,283643920,68994732048,69003120656,275255312,283643920,68994732048,69003120656,275255312,283643920,68994732048,69003120656,275255312,283643920,68995190784,69003579392,275714048,284102656,68995125248,69003513856,275648512,284037120,68994994176,69003382784,275517440,283906048,68994994176,69003382784,275517440,283906048,68994732032,69003120640,275255296,283643904,68994732032,69003120640,275255296,283643904,68994732032,69003120640,275255296,283643904,68994732032,69003120640,275255296,283643904,68990996496,68990996496,271519760,271519760,68990930960,68990930960,271454224,271454224,68990799888,68990799888,271323152,271323152,68990799888,68990799888,271323152,271323152,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990996480,68990996480,271519744,271519744,68990930944,68990930944,271454208,271454208,68990799872,68990799872,271323136,271323136,68990799872,68990799872,271323136,271323136,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,69003579408,68995190800,284102672,275714064,69003513872,68995125264,284037136,275648528,69003382800,68994994192,283906064,275517456,69003382800,68994994192,283906064,275517456,69003120656,68994732048,283643920,275255312,69003120656,68994732048,283643920,275255312,69003120656,68994732048,283643920,275255312,69003120656,68994732048,283643920,275255312,69003579392,68995190784,284102656,275714048,69003513856,68995125248,284037120,275648512,69003382784,68994994176,283906048,275517440,69003382784,68994994176,283906048,275517440,69003120640,68994732032,283643904,275255296,69003120640,68994732032,283643904,275255296,69003120640,68994732032,283643904,275255296,69003120640,68994732032,283643904,275255296,68990996496,68990996496,271519760,271519760,68990930960,68990930960,271454224,271454224,68990799888,68990799888,271323152,271323152,68990799888,68990799888,271323152,271323152,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990996480,68990996480,271519744,271519744,68990930944,68990930944,271454208,271454208,68990799872,68990799872,271323136,271323136,68990799872,68990799872,271323136,271323136,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68995190800,69003579408,275714064,284102672,68995125264,69003513872,275648528,284037136,68994994192,69003382800,275517456,283906064,68994994192,69003382800,275517456,283906064,68994732048,69003120656,275255312,283643920,68994732048,69003120656,275255312,283643920,68994732048,69003120656,275255312,283643920,68994732048,69003120656,275255312,283643920,68995190784,69003579392,275714048,284102656,68995125248,69003513856,275648512,284037120,68994994176,69003382784,275517440,283906048,68994994176,69003382784,275517440,283906048,68994732032,69003120640,275255296,283643904,68994732032,69003120640,275255296,283643904,68994732032,69003120640,275255296,283643904,68994732032,69003120640,275255296,283643904,68990996496,68990996496,271519760,271519760,68990930960,68990930960,271454224,271454224,68990799888,68990799888,271323152,271323152,68990799888,68990799888,271323152,271323152,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990537744,68990537744,271061008,271061008,68990996480,68990996480,271519744,271519744,68990930944,68990930944,271454208,271454208,68990799872,68990799872,271323136,271323136,68990799872,68990799872,271323136,271323136,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,68990537728,68990537728,271060992,271060992,0],[2314885530830970912,551493664,2314885530830905376,551428128,2314885530830774304,551297056,2314885530830774304,551297056,2314885530830512160,551034912,2314885530830512160,551034912,2314885530830512160,551034912,2314885530830512160,551034912,2314885530829987872,550510624,2314885530829987872,550510624,2314885530829987872,550510624,2314885530829987872,550510624,2314885530829987872,550510624,2314885530829987872,550510624,2314885530829987872,550510624,2314885530829987872,550510624,35322362535968,551493664,35322362470432,551428128,35322362339360,551297056,35322362339360,551297056,35322362077216,551034912,35322362077216,551034912,35322362077216,551034912,35322362077216,551034912,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,2314885530822582304,543105056,2314885530822516768,543039520,2314885530822385696,542908448,2314885530822385696,542908448,2314885530822123552,542646304,2314885530822123552,542646304,2314885530822123552,542646304,2314885530822123552,542646304,2314885530821599264,542122016,2314885530821599264,542122016,2314885530821599264,542122016,2314885530821599264,542122016,2314885530821599264,542122016,2314885530821599264,542122016,2314885530821599264,542122016,2314885530821599264,542122016,35322354147360,543105056,35322354081824,543039520,35322353950752,542908448,35322353950752,542908448,35322353688608,542646304,35322353688608,542646304,35322353688608,542646304,35322353688608,542646304,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,9042521617276960,551493664,9042521617211424,551428128,9042521617080352,551297056,9042521617080352,551297056,9042521616818208,551034912,9042521616818208,551034912,9042521616818208,551034912,9042521616818208,551034912,9042521616293920,550510624,9042521616293920,550510624,9042521616293920,550510624,9042521616293920,550510624,9042521616293920,550510624,9042521616293920,550510624,9042521616293920,550510624,9042521616293920,550510624,35322362535968,551493664,35322362470432,551428128,35322362339360,551297056,35322362339360,551297056,35322362077216,551034912,35322362077216,551034912,35322362077216,551034912,35322362077216,551034912,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,35322361552928,550510624,9042521608888352,543105056,9042521608822816,543039520,9042521608691744,542908448,9042521608691744,542908448,9042521608429600,542646304,9042521608429600,542646304,9042521608429600,542646304,9042521608429600,542646304,9042521607905312,542122016,9042521607905312,542122016,9042521607905312,542122016,9042521607905312,542122016,9042521607905312,542122016,9042521607905312,542122016,9042521607905312,542122016,9042521607905312,542122016,35322354147360,543105056,35322354081824,543039520,35322353950752,542908448,35322353950752,542908448,35322353688608,542646304,35322353688608,542646304,35322353688608,542646304,35322353688608,542646304,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,35322353164320,542122016,137990447136,551493664,137990381600,551428128,137990250528,551297056,137990250528,551297056,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137990447136,551493664,137990381600,551428128,137990250528,551297056,137990250528,551297056,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137982058528,543105056,137981992992,543039520,137981861920,542908448,137981861920,542908448,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137982058528,543105056,137981992992,543039520,137981861920,542908448,137981861920,542908448,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137990447136,551493664,137990381600,551428128,137990250528,551297056,137990250528,551297056,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137990447136,551493664,137990381600,551428128,137990250528,551297056,137990250528,551297056,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989988384,551034912,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137989464096,550510624,137982058528,543105056,137981992992,543039520,137981861920,542908448,137981861920,542908448,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137982058528,543105056,137981992992,543039520,137981861920,542908448,137981861920,542908448,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981599776,542646304,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,137981075488,542122016,2314885530830970880,551493632,2314885530830905344,551428096,2314885530830774272,551297024,2314885530830774272,551297024,2314885530830512128,551034880,2314885530830512128,551034880,2314885530830512128,551034880,2314885530830512128,551034880,2314885530829987840,550510592,2314885530829987840,550510592,2314885530829987840,550510592,2314885530829987840,550510592,2314885530829987840,550510592,2314885530829987840,550510592,2314885530829987840,550510592,2314885530829987840,550510592,35322362535936,551493632,35322362470400,551428096,35322362339328,551297024,35322362339328,551297024,35322362077184,551034880,35322362077184,551034880,35322362077184,551034880,35322362077184,551034880,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,2314885530822582272,543105024,2314885530822516736,543039488,2314885530822385664,542908416,2314885530822385664,542908416,2314885530822123520,542646272,2314885530822123520,542646272,2314885530822123520,542646272,2314885530822123520,542646272,2314885530821599232,542121984,2314885530821599232,542121984,2314885530821599232,542121984,2314885530821599232,542121984,2314885530821599232,542121984,2314885530821599232,542121984,2314885530821599232,542121984,2314885530821599232,542121984,35322354147328,543105024,35322354081792,543039488,35322353950720,542908416,35322353950720,542908416,35322353688576,542646272,35322353688576,542646272,35322353688576,542646272,35322353688576,542646272,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,9042521617276928,551493632,9042521617211392,551428096,9042521617080320,551297024,9042521617080320,551297024,9042521616818176,551034880,9042521616818176,551034880,9042521616818176,551034880,9042521616818176,551034880,9042521616293888,550510592,9042521616293888,550510592,9042521616293888,550510592,9042521616293888,550510592,9042521616293888,550510592,9042521616293888,550510592,9042521616293888,550510592,9042521616293888,550510592,35322362535936,551493632,35322362470400,551428096,35322362339328,551297024,35322362339328,551297024,35322362077184,551034880,35322362077184,551034880,35322362077184,551034880,35322362077184,551034880,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,35322361552896,550510592,9042521608888320,543105024,9042521608822784,543039488,9042521608691712,542908416,9042521608691712,542908416,9042521608429568,542646272,9042521608429568,542646272,9042521608429568,542646272,9042521608429568,542646272,9042521607905280,542121984,9042521607905280,542121984,9042521607905280,542121984,9042521607905280,542121984,9042521607905280,542121984,9042521607905280,542121984,9042521607905280,542121984,9042521607905280,542121984,35322354147328,543105024,35322354081792,543039488,35322353950720,542908416,35322353950720,542908416,35322353688576,542646272,35322353688576,542646272,35322353688576,542646272,35322353688576,542646272,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,35322353164288,542121984,137990447104,551493632,137990381568,551428096,137990250496,551297024,137990250496,551297024,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137990447104,551493632,137990381568,551428096,137990250496,551297024,137990250496,551297024,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137982058496,543105024,137981992960,543039488,137981861888,542908416,137981861888,542908416,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137982058496,543105024,137981992960,543039488,137981861888,542908416,137981861888,542908416,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137990447104,551493632,137990381568,551428096,137990250496,551297024,137990250496,551297024,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137990447104,551493632,137990381568,551428096,137990250496,551297024,137990250496,551297024,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989988352,551034880,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137989464064,550510592,137982058496,543105024,137981992960,543039488,137981861888,542908416,137981861888,542908416,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137982058496,543105024,137981992960,543039488,137981861888,542908416,137981861888,542908416,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981599744,542646272,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,137981075456,542121984,0],[4629771061645230144,275962150912,1084243968,1084243968,4629771061645164608,275962150912,1086275648,1084243968,4629771061645033536,275962150912,1086210112,1084243968,4629771061645033536,275962150912,1086079040,1084243968,4629771061644771392,275962150912,1086079040,1084243968,4629771061644771392,70644708360256,1085816896,1084243968,4629771061644771392,70644708294720,1085816896,1086275648,4629771061644771392,70644708163648,1085816896,1086210112,4629771061644247104,70644708163648,1085816896,1086079040,4629771061644247104,70644707901504,1085292608,1086079040,4629771061644247104,70644707901504,1085292608,1085816896,4629771061644247104,70644707901504,1085292608,1085816896,4629771061644247104,70644707901504,1085292608,1085816896,4629771061644247104,70644707377216,1085292608,1085816896,4629771061644247104,70644707377216,1085292608,1085292608,4629771061644247104,70644707377216,1085292608,1085292608,4629771061643198528,70644707377216,1085292608,1085292608,4629771061643198528,70644707377216,1084244032,1085292608,4629771061643198528,70644707377216,1084244032,1085292608,4629771061643198528,70644707377216,1084244032,1085292608,4629771061643198528,70644707377216,1084244032,1085292608,4629771061643198528,70644706328640,1084244032,1085292608,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,4629771061643198528,70644706328640,1084244032,1084244032,275964182528,70644706328640,1084244032,1084244032,275964116992,70644706328640,1086275584,1084244032,275963985920,70644706328640,1086210048,1084244032,275963985920,70644706328640,1086078976,1084244032,275963723776,70644706328640,1086078976,1084244032,275963723776,275964182528,1085816832,1084244032,275963723776,275964116992,1085816832,1086275584,275963723776,275963985920,1085816832,1086210048,275963199488,275963985920,1085816832,1086078976,275963199488,275963723776,1085292544,1086078976,275963199488,275963723776,1085292544,1085816832,275963199488,275963723776,1085292544,1085816832,275963199488,275963723776,1085292544,1085816832,275963199488,275963199488,1085292544,1085816832,275963199488,275963199488,1085292544,1085292544,275963199488,275963199488,1085292544,1085292544,275962150912,275963199488,1085292544,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275962150912,1084243968,1085292544,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,18085043217842240,275962150912,1084243968,1084243968,18085043217776704,275962150912,1086275648,1084243968,18085043217645632,275962150912,1086210112,1084243968,18085043217645632,275962150912,1086079040,1084243968,18085043217383488,275962150912,1086079040,1084243968,18085043217383488,70644708360256,1085816896,1084243968,18085043217383488,70644708294720,1085816896,1086275648,18085043217383488,70644708163648,1085816896,1086210112,18085043216859200,70644708163648,1085816896,1086079040,18085043216859200,70644707901504,1085292608,1086079040,18085043216859200,70644707901504,1085292608,1085816896,18085043216859200,70644707901504,1085292608,1085816896,18085043216859200,70644707901504,1085292608,1085816896,18085043216859200,70644707377216,1085292608,1085816896,18085043216859200,70644707377216,1085292608,1085292608,18085043216859200,70644707377216,1085292608,1085292608,18085043215810624,70644707377216,1085292608,1085292608,18085043215810624,70644707377216,1084244032,1085292608,18085043215810624,70644707377216,1084244032,1085292608,18085043215810624,70644707377216,1084244032,1085292608,18085043215810624,70644707377216,1084244032,1085292608,18085043215810624,70644706328640,1084244032,1085292608,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,18085043215810624,70644706328640,1084244032,1084244032,4629771061645230080,70644706328640,1084244032,1084244032,4629771061645164544,70644706328640,1086275584,1084244032,4629771061645033472,70644706328640,1086210048,1084244032,4629771061645033472,70644706328640,1086078976,1084244032,4629771061644771328,70644706328640,1086078976,1084244032,4629771061644771328,70644708360192,1085816832,1084244032,4629771061644771328,70644708294656,1085816832,1086275584,4629771061644771328,70644708163584,1085816832,1086210048,4629771061644247040,70644708163584,1085816832,1086078976,4629771061644247040,70644707901440,1085292544,1086078976,4629771061644247040,70644707901440,1085292544,1085816832,4629771061644247040,70644707901440,1085292544,1085816832,4629771061644247040,70644707901440,1085292544,1085816832,4629771061644247040,70644707377152,1085292544,1085816832,4629771061644247040,70644707377152,1085292544,1085292544,4629771061644247040,70644707377152,1085292544,1085292544,4629771061643198464,70644707377152,1085292544,1085292544,4629771061643198464,70644707377152,1084243968,1085292544,4629771061643198464,70644707377152,1084243968,1085292544,4629771061643198464,70644707377152,1084243968,1085292544,4629771061643198464,70644707377152,1084243968,1085292544,4629771061643198464,70644706328576,1084243968,1085292544,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,4629771061643198464,70644706328576,1084243968,1084243968,275964182592,70644706328576,1084243968,1084243968,275964117056,70644706328576,1086275648,1084243968,275963985984,70644706328576,1086210112,1084243968,275963985984,70644706328576,1086079040,1084243968,275963723840,70644706328576,1086079040,1084243968,275963723840,275964182592,1085816896,1084243968,275963723840,275964117056,1085816896,1086275648,275963723840,275963985984,1085816896,1086210112,275963199552,275963985984,1085816896,1086079040,275963199552,275963723840,1085292608,1086079040,275963199552,275963723840,1085292608,1085816896,275963199552,275963723840,1085292608,1085816896,275963199552,275963723840,1085292608,1085816896,275963199552,275963199552,1085292608,1085816896,275963199552,275963199552,1085292608,1085292608,275963199552,275963199552,1085292608,1085292608,275962150976,275963199552,1085292608,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275962150976,1084244032,1085292608,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,18085043217842176,275962150976,1084244032,1084244032,18085043217776640,275962150976,1086275584,1084244032,18085043217645568,275962150976,1086210048,1084244032,18085043217645568,275962150976,1086078976,1084244032,18085043217383424,275962150976,1086078976,1084244032,18085043217383424,70644708360192,1085816832,1084244032,18085043217383424,70644708294656,1085816832,1086275584,18085043217383424,70644708163584,1085816832,1086210048,18085043216859136,70644708163584,1085816832,1086078976,18085043216859136,70644707901440,1085292544,1086078976,18085043216859136,70644707901440,1085292544,1085816832,18085043216859136,70644707901440,1085292544,1085816832,18085043216859136,70644707901440,1085292544,1085816832,18085043216859136,70644707377152,1085292544,1085816832,18085043216859136,70644707377152,1085292544,1085292544,18085043216859136,70644707377152,1085292544,1085292544,18085043215810560,70644707377152,1085292544,1085292544,18085043215810560,70644707377152,1084243968,1085292544,18085043215810560,70644707377152,1084243968,1085292544,18085043215810560,70644707377152,1084243968,1085292544,18085043215810560,70644707377152,1084243968,1085292544,18085043215810560,70644706328576,1084243968,1085292544,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,18085043215810560,70644706328576,1084243968,1084243968,275964182592,70644706328576,1084243968,1084243968,275964117056,70644706328576,1086275648,1084243968,275963985984,70644706328576,1086210112,1084243968,275963985984,70644706328576,1086079040,1084243968,275963723840,70644706328576,1086079040,1084243968,275963723840,275964182592,1085816896,1084243968,275963723840,275964117056,1085816896,1086275648,275963723840,275963985984,1085816896,1086210112,275963199552,275963985984,1085816896,1086079040,275963199552,275963723840,1085292608,1086079040,275963199552,275963723840,1085292608,1085816896,275963199552,275963723840,1085292608,1085816896,275963199552,275963723840,1085292608,1085816896,275963199552,275963199552,1085292608,1085816896,275963199552,275963199552,1085292608,1085292608,275963199552,275963199552,1085292608,1085292608,275962150976,275963199552,1085292608,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275963199552,1084244032,1085292608,275962150976,275962150976,1084244032,1085292608,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275962150976,275962150976,1084244032,1084244032,275964182528,275962150976,1084244032,1084244032,275964116992,275962150976,1086275584,1084244032,275963985920,275962150976,1086210048,1084244032,275963985920,275962150976,1086078976,1084244032,275963723776,275962150976,1086078976,1084244032,275963723776,275964182528,1085816832,1084244032,275963723776,275964116992,1085816832,1086275584,275963723776,275963985920,1085816832,1086210048,275963199488,275963985920,1085816832,1086078976,275963199488,275963723776,1085292544,1086078976,275963199488,275963723776,1085292544,1085816832,275963199488,275963723776,1085292544,1085816832,275963199488,275963723776,1085292544,1085816832,275963199488,275963199488,1085292544,1085816832,275963199488,275963199488,1085292544,1085292544,275963199488,275963199488,1085292544,1085292544,275962150912,275963199488,1085292544,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275963199488,1084243968,1085292544,275962150912,275962150912,1084243968,1085292544,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,275962150912,275962150912,1084243968,1084243968,0],[9259542123273748608,141289399025792,551907524736,551907524736,2155839616,2154856576,2151710848,2151710848,9259542123269619712,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,36170086414844032,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,36170086414843904,141289395879936,551909621760,551909621760,2151710720,2151710720,2153807872,2153807872,9259542123269619840,141289395880064,551911587968,551909621888,2151710848,2151710848,2155774080,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911653376,2153807872,2151710720,2151710720,2155839488,9259542123273552000,141289397977216,551907524736,551907524736,2155643008,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289399943168,551909621760,551907524608,2151710720,2155773952,2153807872,2151710720,9259542123269619840,141289395880064,551911456896,551909621888,2151710848,2151710848,2155643008,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911456768,2153807872,2151710720,2151710720,2155642880,9259542123273289856,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289399812096,551909621760,551907524608,2151710720,2155642880,2153807872,2151710720,9259542123269619840,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,9259542123273289856,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,9259542123269619840,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273748480,141289399025664,551907524608,551907524608,2155839488,2154856448,2151710720,2151710720,36170086418972800,141289399025792,551907524736,551907524736,2155839616,2154856576,2151710848,2151710848,36170086414843904,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911587840,551909621760,2151710720,2151710720,2155773952,2153807872,36170086414844032,141289395880064,551911587968,551909621888,2151710848,2151710848,2155774080,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273551872,141289397977088,551907524608,551907524608,2155642880,2153807872,2151710720,2151710720,36170086418776192,141289397977216,551907524736,551907524736,2155643008,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911456768,551909621760,2151710720,2151710720,2155642880,2153807872,36170086414844032,141289395880064,551911456896,551909621888,2151710848,2151710848,2155643008,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273289728,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,36170086418514048,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,36170086414844032,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273289728,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,36170086418514048,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,36170086414844032,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123271716992,141289397977216,551907524736,551907524736,2153808000,2153808000,2151710848,2151710848,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418972672,141289399025664,551907524608,551907524608,2155839488,2154856448,2151710720,2151710720,9259542123269619840,141289400008832,551909621888,551907524736,2151710848,2155839616,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911587840,551909621760,2151710720,2151710720,2155773952,2153807872,9259542123271716992,141289395880064,551907524736,551911587968,2153808000,2151710848,2151710848,2155774080,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418776064,141289397977088,551907524608,551907524608,2155642880,2153807872,2151710720,2151710720,9259542123269619840,141289399812224,551909621888,551907524736,2151710848,2155643008,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911456768,551909621760,2151710720,2151710720,2155642880,2153807872,9259542123271716992,141289395880064,551907524736,551911456896,2153808000,2151710848,2151710848,2155643008,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418513920,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,9259542123269619840,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,9259542123271716992,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418513920,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,9259542123269619840,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,9259542123271716992,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,9259542123271716864,141289397977088,551907524608,551907524608,2153807872,2153807872,2151710720,2151710720,36170086416941184,141289397977216,551907524736,551907524736,2153808000,2153808000,2151710848,2151710848,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289400008704,551909621760,551907524608,2151710720,2155839488,2153807872,2151710720,36170086414844032,141289400008832,551909621888,551907524736,2151710848,2155839616,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911587840,2153807872,2151710720,2151710720,2155773952,36170086416941184,141289395880064,551907524736,551911587968,2153808000,2151710848,2151710848,2155774080,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289399812096,551909621760,551907524608,2151710720,2155642880,2153807872,2151710720,36170086414844032,141289399812224,551909621888,551907524736,2151710848,2155643008,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911456768,2153807872,2151710720,2151710720,2155642880,36170086416941184,141289395880064,551907524736,551911456896,2153808000,2151710848,2151710848,2155643008,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,36170086414844032,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,36170086416941184,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,36170086414844032,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123269619840,141289395880064,551911653504,551910670464,2151710848,2151710848,2155839616,2154856576,9259542123271716864,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,36170086416941184,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,36170086416941056,141289397977088,551907524608,551907524608,2153807872,2153807872,2151710720,2151710720,9259542123273683072,141289397977216,551907524736,551907524736,2155774080,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289400008704,551909621760,551907524608,2151710720,2155839488,2153807872,2151710720,9259542123269619840,141289395880064,551911456896,551909621888,2151710848,2151710848,2155643008,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911587840,2153807872,2151710720,2151710720,2155773952,9259542123273552000,141289397977216,551907524736,551907524736,2155643008,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289399812096,551909621760,551907524608,2151710720,2155642880,2153807872,2151710720,9259542123269619840,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911456768,2153807872,2151710720,2151710720,2155642880,9259542123273289856,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,9259542123269619840,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,9259542123271716864,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,36170086416941184,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,36170086416941056,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,9259542123273289856,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,9259542123269619712,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,36170086414844032,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,36170086414843904,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911653376,551910670336,2151710720,2151710720,2155839488,2154856448,36170086414844032,141289395880064,551911653504,551910670464,2151710848,2151710848,2155839616,2154856576,36170086416941056,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273682944,141289397977088,551907524608,551907524608,2155773952,2153807872,2151710720,2151710720,36170086418907264,141289397977216,551907524736,551907524736,2155774080,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911456768,551909621760,2151710720,2151710720,2155642880,2153807872,36170086414844032,141289395880064,551911456896,551909621888,2151710848,2151710848,2155643008,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273551872,141289397977088,551907524608,551907524608,2155642880,2153807872,2151710720,2151710720,36170086418776192,141289397977216,551907524736,551907524736,2155643008,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,36170086414844032,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273289728,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,36170086418514048,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,9259542123269619712,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,36170086414844032,141289395880064,551911194752,551909621888,2151710848,2151710848,2155380864,2153808000,36170086416941056,141289395879936,551907524608,551910670336,2153807872,2151710720,2151710720,2154856448,9259542123272765568,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,9259542123273289728,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,36170086418514048,141289397977216,551907524736,551907524736,2155380864,2153808000,2151710848,2151710848,36170086414843904,141289399025664,551909621760,551907524608,2151710720,2154856448,2153807872,2151710720,9259542123269619840,141289395880064,551909621888,551909621888,2151710848,2151710848,2153808000,2153808000,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911653376,551910670336,2151710720,2151710720,2155839488,2154856448,9259542123271716992,141289395880064,551907524736,551911653504,2153808000,2151710848,2151710848,2155839616,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418907136,141289397977088,551907524608,551907524608,2155773952,2153807872,2151710720,2151710720,9259542123269619840,141289399943296,551909621888,551907524736,2151710848,2155774080,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911456768,551909621760,2151710720,2151710720,2155642880,2153807872,9259542123271716992,141289395880064,551907524736,551911456896,2153808000,2151710848,2151710848,2155643008,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418776064,141289397977088,551907524608,551907524608,2155642880,2153807872,2151710720,2151710720,9259542123269619840,141289399812224,551909621888,551907524736,2151710848,2155643008,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,9259542123271716992,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418513920,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,9259542123269619840,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,9259542123269619712,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,36170086414844032,141289395880064,551910670464,551909621888,2151710848,2151710848,2154856576,2153808000,36170086414843904,141289395879936,551911194624,551909621760,2151710720,2151710720,2155380736,2153807872,9259542123271716992,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,9259542123272765440,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,36170086417989760,141289397977216,551907524736,551907524736,2154856576,2153808000,2151710848,2151710848,36170086418513920,141289397977088,551907524608,551907524608,2155380736,2153807872,2151710720,2151710720,9259542123269619840,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,9259542123269619712,141289395879936,551909621760,551909621760,2151710720,2151710720,2153807872,2153807872,36170086414844032,141289395880064,551909621888,551909621888,2151710848,2151710848,2153808000,2153808000,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911653376,2153807872,2151710720,2151710720,2155839488,36170086416941184,141289395880064,551907524736,551911653504,2153808000,2151710848,2151710848,2155839616,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289399943168,551909621760,551907524608,2151710720,2155773952,2153807872,2151710720,36170086414844032,141289399943296,551909621888,551907524736,2151710848,2155774080,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911456768,2153807872,2151710720,2151710720,2155642880,36170086416941184,141289395880064,551907524736,551911456896,2153808000,2151710848,2151710848,2155643008,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289399812096,551909621760,551907524608,2151710720,2155642880,2153807872,2151710720,36170086414844032,141289399812224,551909621888,551907524736,2151710848,2155643008,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,36170086416941184,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,9259542123269619840,141289399025792,551909621888,551907524736,2151710848,2154856576,2153808000,2151710848,9259542123269619712,141289399549952,551909621760,551907524608,2151710720,2155380736,2153807872,2151710720,36170086414844032,141289399550080,551909621888,551907524736,2151710848,2155380864,2153808000,2151710848,36170086414843904,141289395879936,551910670336,551909621760,2151710720,2151710720,2154856448,2153807872,9259542123271716992,141289395880064,551907524736,551910670464,2153808000,2151710848,2151710848,2154856576,9259542123271716864,141289395879936,551907524608,551911194624,2153807872,2151710720,2151710720,2155380736,36170086416941184,141289395880064,551907524736,551911194752,2153808000,2151710848,2151710848,2155380864,36170086417989632,141289397977088,551907524608,551907524608,2154856448,2153807872,2151710720,2151710720,0],[72340177082712321,1108068073729,4529913856,4529913856,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282580897300480,1105920589824,282579018252544,1104041541888,72340173056180481,1104041541889,72340177082712320,1108068073728,282578816925953,1103840215297,4328587264,4328587264,72340172854853889,1103840215297,4328587264,4328587264,4395696128,4395696128,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4529914113,4529914113,282580897300480,1105920589824,72340173324615680,1104309977088,72340173056180480,1104041541888,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,72340172854853888,1103840215296,282578884034817,1103907324161,4395696128,4395696128,72340172921962753,1103907324161,4395696128,4395696128,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4798349312,4798349312,4529914112,4529914112,4529914113,4529914113,72340173324615680,1104309977088,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,72340172921962752,1103907324160,282578816925953,1103840215297,4328587264,4328587264,72340172854853889,1103840215297,4328587264,4328587264,4529913856,4529913856,4798349312,4798349312,5335220224,5335220224,4529914112,4529914112,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,72340172854853888,1103840215296,282579823558913,1104846848257,4529913856,4529913856,72340173056180481,1104041541889,5335220224,5335220224,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252288,1104041541632,282579823558912,1104846848256,72340173324615937,1104309977345,72340173056180480,1104041541888,282578816925953,1103840215297,4328587264,4328587264,72340172854853889,1103840215297,4328587264,4328587264,4395696128,4395696128,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4798349569,4798349569,282579018252288,1104041541632,72340173056180224,1104041541632,72340173324615936,1104309977344,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,72340172854853888,1103840215296,282578884034817,1103907324161,4395696128,4395696128,72340172921962753,1103907324161,4395696128,4395696128,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4529913856,4529913856,4798349568,4798349568,6408962305,6408962305,72340173056180224,1104041541632,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,72340172921962752,1103907324160,282578816925953,1103840215297,4328587264,4328587264,72340172854853889,1103840215297,4328587264,4328587264,282583044784385,1108068073729,4529913856,4529913856,4529913856,4529913856,6408962304,6408962304,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,72340172854853888,1103840215296,282579018252545,1104041541889,282583044784384,1108068073728,72340173324615937,1104309977345,4529913856,4529913856,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579286687744,1104309977088,282579018252544,1104041541888,72340173056180481,1104041541889,72340173324615936,1104309977344,282578816925953,1103840215297,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4529914113,4529914113,282579286687744,1104309977088,72340173861486592,1104846848000,72340173056180480,1104041541888,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,72340172854853888,1103840215296,282578884034817,1103907324161,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,5335220224,5335220224,4529914112,4529914112,4529914113,4529914113,72340173861486592,1104846848000,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,72340172921962752,1103907324160,282578816925953,1103840215297,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579018252545,1104041541889,5335220224,5335220224,4798349312,4798349312,4529914112,4529914112,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,72340172854853888,1103840215296,282579286688001,1104309977345,282579018252544,1104041541888,72340173056180481,1104041541889,4798349312,4798349312,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252288,1104041541632,282579286688000,1104309977344,72340177082712064,1108068073472,72340173056180480,1104041541888,282578816925953,1103840215297,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,6408962305,6408962305,282579018252288,1104041541632,72340173056180224,1104041541632,72340177082712064,1108068073472,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034817,1103907324161,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4529913856,4529913856,6408962304,6408962304,4798349569,4798349569,72340173056180224,1104041541632,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853632,1103840215040,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925953,1103840215297,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579286688001,1104309977345,4529913856,4529913856,4529913856,4529913856,4798349568,4798349568,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962496,1103907323904,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252545,1104041541889,282579286688000,1104309977344,72340173861486849,1104846848257,4529913856,4529913856,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853632,1103840215040,282579823558656,1104846848000,282579018252544,1104041541888,72340173056180224,1104041541632,72340173861486848,1104846848256,282578816925953,1103840215297,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4529914113,4529914113,282579823558656,1104846848000,72340173324615680,1104309977088,72340173056180224,1104041541632,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034817,1103907324161,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4798349312,4798349312,4529914112,4529914112,4529914113,4529914113,72340173324615680,1104309977088,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853632,1103840215040,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925953,1103840215297,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579018252545,1104041541889,4798349312,4798349312,6408962048,6408962048,4529914112,4529914112,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962496,1103907323904,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853632,1103840215040,72340172854853888,1103840215296,282583044784128,1108068073472,282579018252544,1104041541888,72340173056180481,1104041541889,6408962048,6408962048,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853632,1103840215040,282579018252288,1104041541632,282583044784128,1108068073472,72340173324615680,1104309977088,72340173056180480,1104041541888,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4798349569,4798349569,282579018252288,1104041541632,72340173056180224,1104041541632,72340173324615680,1104309977088,282578816925696,1103840215040,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4529913856,4529913856,4798349568,4798349568,5335220481,5335220481,72340173056180224,1104041541632,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853632,1103840215040,282578884034560,1103907323904,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579823558913,1104846848257,4529913856,4529913856,4529913856,4529913856,5335220480,5335220480,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962496,1103907323904,282578816925696,1103840215040,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252288,1104041541632,282579823558912,1104846848256,72340173324615937,1104309977345,4529913856,4529913856,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853632,1103840215040,282579286687744,1104309977088,282579018252288,1104041541632,72340173056180224,1104041541632,72340173324615936,1104309977344,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4529914113,4529914113,282579286687744,1104309977088,8556445953,8556445953,72340173056180224,1104041541632,282578816925696,1103840215040,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,6408962048,6408962048,4529914112,4529914112,4529914113,4529914113,8556445952,8556445952,4328587521,4328587521,282578816925696,1103840215040,4328587521,4328587521,72340172854853632,1103840215040,282578884034560,1103907323904,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579018252545,1104041541889,6408962048,6408962048,4798349312,4798349312,4529914112,4529914112,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,4328587520,4328587520,4395696385,4395696385,282578884034560,1103907323904,4395696385,4395696385,72340172921962496,1103907323904,282578816925696,1103840215040,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579286687744,1104309977088,282579018252544,1104041541888,72340173056180481,1104041541889,4798349312,4798349312,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,4395696384,4395696384,4328587521,4328587521,282578816925696,1103840215040,4328587521,4328587521,72340172854853632,1103840215040,282579018252288,1104041541632,282579286687744,1104309977088,72340173861486592,1104846848000,72340173056180480,1104041541888,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,4328587520,4328587520,5335220481,5335220481,282579018252288,1104041541632,4529914113,4529914113,72340173861486592,1104846848000,282578816925696,1103840215040,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4529913856,4529913856,5335220480,5335220480,4798349569,4798349569,4529914112,4529914112,4328587521,4328587521,282578816925696,1103840215040,4328587521,4328587521,72340172854853632,1103840215040,282578884034560,1103907323904,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579286688001,1104309977345,4529913856,4529913856,4529913856,4529913856,4798349568,4798349568,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,4328587520,4328587520,4395696385,4395696385,282578884034560,1103907323904,4395696385,4395696385,72340172921962496,1103907323904,282578816925696,1103840215040,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252288,1104041541632,282579286688000,1104309977344,72340174935228673,1105920590081,4529913856,4529913856,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,4395696384,4395696384,4328587521,4328587521,282578816925696,1103840215040,4328587521,4328587521,72340172854853632,1103840215040,8556445953,8556445953,282579018252288,1104041541632,72340173056180224,1104041541632,72340174935228672,1105920590080,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,4328587520,4328587520,4529914113,4529914113,8556445952,8556445952,4798349569,4798349569,72340173056180224,1104041541632,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4798349312,4798349312,4529914112,4529914112,4529914113,4529914113,4798349568,4798349568,4328587521,4328587521,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579018252545,1104041541889,4798349312,4798349312,5335220224,5335220224,4529914112,4529914112,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,4328587520,4328587520,4395696385,4395696385,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579823558656,1104846848000,282579018252544,1104041541888,72340173056180481,1104041541889,5335220224,5335220224,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,4395696384,4395696384,4328587521,4328587521,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4529914113,4529914113,282579823558656,1104846848000,72340173324615680,1104309977088,72340173056180480,1104041541888,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,4328587520,4328587520,4798349569,4798349569,4529914112,4529914112,4529914113,4529914113,72340173324615680,1104309977088,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4529913856,4529913856,4798349568,4798349568,8556445696,8556445696,4529914112,4529914112,4328587521,4328587521,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282580897300737,1105920590081,4529913856,4529913856,4529913856,4529913856,8556445696,8556445696,4328587264,4328587264,4328587520,4328587520,4328587264,4328587264,4328587520,4328587520,4395696385,4395696385,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252288,1104041541632,282580897300736,1105920590080,72340173324615937,1104309977345,4529913856,4529913856,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4395696128,4395696128,4395696384,4395696384,4395696128,4395696128,4395696384,4395696384,4328587521,4328587521,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4798349569,4798349569,282579018252288,1104041541632,72340173056180224,1104041541632,72340173324615936,1104309977344,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696128,4395696128,4328587264,4328587264,4328587520,4328587520,4328587264,4328587264,4328587520,4328587520,4529914113,4529914113,4798349568,4798349568,5335220481,5335220481,72340173056180224,1104041541632,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,5335220224,5335220224,4529914112,4529914112,4529913856,4529913856,5335220480,5335220480,4328587521,4328587521,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579018252545,1104041541889,5335220224,5335220224,4798349312,4798349312,4529913856,4529913856,4328587264,4328587264,4328587520,4328587520,4328587264,4328587264,4328587520,4328587520,4395696385,4395696385,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579286687744,1104309977088,282579018252544,1104041541888,72340173056180481,1104041541889,4798349312,4798349312,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4395696128,4395696128,4395696384,4395696384,4395696128,4395696128,4395696384,4395696384,4328587521,4328587521,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4529914113,4529914113,282579286687744,1104309977088,72340174935228416,1105920589824,72340173056180480,1104041541888,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696128,4395696128,4328587264,4328587264,4328587520,4328587520,4328587264,4328587264,4328587520,4328587520,8556445696,8556445696,4529914112,4529914112,4529914113,4529914113,72340174935228416,1105920589824,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4529913856,4529913856,8556445696,8556445696,4798349312,4798349312,4529914112,4529914112,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579286688001,1104309977345,4529913856,4529913856,4529913856,4529913856,4798349312,4798349312,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4395696128,4395696128,4395696384,4395696384,4395696385,4395696385,72340172921962496,1103907323904,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282579018252288,1104041541632,282579286688000,1104309977344,72340173861486849,1104846848257,4529913856,4529913856,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4395696128,4395696128,4395696128,4395696128,4395696128,4395696128,4395696384,4395696384,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,5335220481,5335220481,282579018252288,1104041541632,72340173056180224,1104041541632,72340173861486848,1104846848256,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282578884034817,1103907324161,4395696128,4395696128,4395696128,4395696128,4395696128,4395696128,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4328587520,4328587520,4529913856,4529913856,5335220480,5335220480,4798349569,4798349569,72340173056180224,1104041541632,4328587521,4328587521,282578816925696,1103840215040,72340172854853632,1103840215040,72340172854853888,1103840215296,282578884034560,1103907323904,282578884034816,1103907324160,72340172921962753,1103907324161,4395696128,4395696128,282578816925953,1103840215297,4328587264,4328587264,4328587264,4328587264,4328587264,4328587264,4798349312,4798349312,4529913856,4529913856,4529913856,4529913856,4798349568,4798349568,4328587264,4328587264,4328587520,4328587520,4328587521,4328587521,72340172854853632,1103840215040,4395696385,4395696385,282578884034560,1103907323904,72340172921962496,1103907323904,72340172921962752,1103907324160,282578816925696,1103840215040,282578816925952,1103840215296,72340172854853889,1103840215297,4328587264,4328587264,282579018252545,1104041541889,4798349312,4798349312,0],[144680349887234562,12834701826,144680345726484480,8673951744,565158053281792,9076604928,565157650629120,8673952256,2207697207810,8673952258,144680349887234560,12834701824,565157650629122,8673952258,565158053281792,9076604928,2207831425024,8808169472,2207697207808,8673952256,565157784846336,8808169472,565157650629120,8673952256,2207697207810,8673952258,2207831425024,8808169472,2207697207296,8673951744,565157784846336,8808169472,2208099860480,9076604928,2207697207808,8673952256,2208636731906,9613476354,2207697207296,8673951744,144680345726484994,8673952258,2208099860480,9076604928,2207697207296,8673951744,2208636731904,9613476352,144680345860702208,8808169472,144680345726484992,8673952256,2207831425538,8808169986,2207697207296,8673951744,144680345726484994,8673952258,144680345860702208,8808169472,2207697207296,8673951744,2207831425536,8808169984,144680346666008576,9613475840,144680345726484992,8673952256,565158053282306,9076605442,2207697207296,8673951744,144680345726484994,8673952258,144680346666008576,9613475840,565157650628608,8673951744,565158053282304,9076605440,2207831425538,8808169986,144680345726484992,8673952256,565157784846850,8808169986,565157650628608,8673951744,2207697207296,8673951744,2207831425536,8808169984,565157650628608,8673951744,565157784846848,8808169984,2208099860994,9076605442,2207697207296,8673951744,565161811378690,12834701826,565157650628608,8673951744,2207697207296,8673951744,2208099860992,9076605440,2207697207810,8673952258,565161811378688,12834701824,144680345860702722,8808169986,2207697207296,8673951744,2207831425024,8808169472,2207697207808,8673952256,144680345726484480,8673951744,144680345860702720,8808169984,2207697207810,8673952258,2207831425024,8808169472,144680347739750914,10687218178,144680345726484480,8673951744,2208099860480,9076604928,2207697207808,8673952256,144680345726484480,8673951744,144680347739750912,10687218176,565157650629122,8673952258,2208099860480,9076604928,144680345860702722,8808169986,144680345726484480,8673951744,565157784846336,8808169472,565157650629120,8673952256,2207697207810,8673952258,144680345860702720,8808169984,565157650629122,8673952258,565157784846336,8808169472,2208099860480,9076604928,2207697207808,8673952256,565158590152704,9613475840,565157650629120,8673952256,2207697207810,8673952258,2208099860480,9076604928,565157650629122,8673952258,565158590152704,9613475840,2207831425024,8808169472,2207697207808,8673952256,2207831425538,8808169986,565157650629120,8673952256,144680345726484994,8673952258,2207831425024,8808169472,2207697207296,8673951744,2207831425536,8808169984,144680346666008576,9613475840,144680345726484992,8673952256,2208099860994,9076605442,2207697207296,8673951744,144680345726484994,8673952258,144680346666008576,9613475840,2207697207296,8673951744,2208099860992,9076605440,144680345860702208,8808169472,144680345726484992,8673952256,565157784846850,8808169986,2207697207296,8673951744,144680345726484994,8673952258,144680345860702208,8808169472,565157650628608,8673951744,565157784846848,8808169984,2208099860994,9076605442,144680345726484992,8673952256,565159663895042,10687218178,565157650628608,8673951744,2207697207296,8673951744,2208099860992,9076605440,565157650628608,8673951744,565159663895040,10687218176,2207831425538,8808169986,2207697207296,8673951744,565157784846850,8808169986,565157650628608,8673951744,2207697207296,8673951744,2207831425536,8808169984,2207697207810,8673952258,565157784846848,8808169984,2211857957378,12834701826,2207697207296,8673951744,2208099860480,9076604928,2207697207808,8673952256,144680345726484480,8673951744,2211857957376,12834701824,2207697207810,8673952258,2208099860480,9076604928,144680345860702722,8808169986,144680345726484480,8673951744,2207831425024,8808169472,2207697207808,8673952256,144680345726484480,8673951744,144680345860702720,8808169984,565157650629122,8673952258,2207831425024,8808169472,144680346129138178,9076605442,144680345726484480,8673951744,565158590152704,9613475840,565157650629120,8673952256,2207697207810,8673952258,144680346129138176,9076605440,565157650629122,8673952258,565158590152704,9613475840,2207831425024,8808169472,2207697207808,8673952256,565157784846336,8808169472,565157650629120,8673952256,2207697207810,8673952258,2207831425024,8808169472,565157650629122,8673952258,565157784846336,8808169472,2208636731392,9613475840,2207697207808,8673952256,2208099860994,9076605442,565157650629120,8673952256,2207697207810,8673952258,2208636731392,9613475840,2207697207296,8673951744,2208099860992,9076605440,144680345860702208,8808169472,2207697207808,8673952256,2207831425538,8808169986,2207697207296,8673951744,144680345726484994,8673952258,144680345860702208,8808169472,2207697207296,8673951744,2207831425536,8808169984,144680346129137664,9076604928,144680345726484992,8673952256,2211857957378,12834701826,2207697207296,8673951744,144680345726484994,8673952258,144680346129137664,9076604928,565157650628608,8673951744,2211857957376,12834701824,2207831425538,8808169986,144680345726484992,8673952256,565157784846850,8808169986,565157650628608,8673951744,2207697207296,8673951744,2207831425536,8808169984,565157650628608,8673951744,565157784846848,8808169984,2209710473730,10687218178,2207697207296,8673951744,565158053282306,9076605442,565157650628608,8673951744,2207697207296,8673951744,2209710473728,10687218176,2207697207810,8673952258,565158053282304,9076605440,2207831425538,8808169986,2207697207296,8673951744,2207831425024,8808169472,2207697207808,8673952256,144680345726484480,8673951744,2207831425536,8808169984,2207697207810,8673952258,2207831425024,8808169472,144680346129138178,9076605442,144680345726484480,8673951744,2208636731392,9613475840,2207697207808,8673952256,144680345726484480,8673951744,144680346129138176,9076605440,2207697207810,8673952258,2208636731392,9613475840,144680345860702722,8808169986,144680345726484480,8673951744,565157784846336,8808169472,2207697207808,8673952256,2207697207810,8673952258,144680345860702720,8808169984,565157650629122,8673952258,565157784846336,8808169472,2208636731392,9613475840,2207697207808,8673952256,565158053281792,9076604928,565157650629120,8673952256,2207697207810,8673952258,2208636731392,9613475840,565157650629122,8673952258,565158053281792,9076604928,2207831425024,8808169472,2207697207808,8673952256,2207831425538,8808169986,565157650629120,8673952256,2207697207810,8673952258,2207831425024,8808169472,2207697207296,8673951744,2207831425536,8808169984,144680346129137664,9076604928,2207697207808,8673952256,2209710473730,10687218178,2207697207296,8673951744,144680345726484994,8673952258,144680346129137664,9076604928,2207697207296,8673951744,2209710473728,10687218176,144680345860702208,8808169472,144680345726484992,8673952256,2207831425538,8808169986,2207697207296,8673951744,144680345726484994,8673952258,144680345860702208,8808169472,565157650628608,8673951744,2207831425536,8808169984,144680349887234048,12834701312,144680345726484992,8673952256,565158053282306,9076605442,565157650628608,8673951744,2207697207296,8673951744,144680349887234048,12834701312,565157650628608,8673951744,565158053282304,9076605440,2207831425538,8808169986,2207697207296,8673951744,565157784846850,8808169986,565157650628608,8673951744,2207697207296,8673951744,2207831425536,8808169984,2207697207810,8673952258,565157784846848,8808169984,2208099860994,9076605442,2207697207296,8673951744,2208636731392,9613475840,2207697207808,8673952256,144680345726484480,8673951744,2208099860992,9076605440,2207697207810,8673952258,2208636731392,9613475840,144680345860702722,8808169986,144680345726484480,8673951744,2207831425024,8808169472,2207697207808,8673952256,144680345726484480,8673951744,144680345860702720,8808169984,2207697207810,8673952258,2207831425024,8808169472,144680346666009090,9613476354,144680345726484480,8673951744,565158053281792,9076604928,2207697207808,8673952256,144680345726484480,8673951744,144680346666009088,9613476352,565157650629122,8673952258,565158053281792,9076604928,2207831425024,8808169472,144680345726484480,8673951744,565157784846336,8808169472,565157650629120,8673952256,2207697207810,8673952258,2207831425024,8808169472,565157650629122,8673952258,565157784846336,8808169472,2208099860480,9076604928,2207697207808,8673952256,565161811378176,12834701312,565157650629120,8673952256,2207697207810,8673952258,2208099860480,9076604928,2207697207296,8673951744,565161811378176,12834701312,144680345860702208,8808169472,2207697207808,8673952256,2207831425538,8808169986,2207697207296,8673951744,144680345726484994,8673952258,144680345860702208,8808169472,2207697207296,8673951744,2207831425536,8808169984,144680347739750400,10687217664,144680345726484992,8673952256,2208099860994,9076605442,2207697207296,8673951744,144680345726484994,8673952258,144680347739750400,10687217664,565157650628608,8673951744,2208099860992,9076605440,144680345860702208,8808169472,144680345726484992,8673952256,565157784846850,8808169986,565157650628608,8673951744,2207697207296,8673951744,144680345860702208,8808169472,565157650628608,8673951744,565157784846848,8808169984,2208099860994,9076605442,2207697207296,8673951744,565158590153218,9613476354,565157650628608,8673951744,2207697207296,8673951744,2208099860992,9076605440,565157650628608,8673951744,565158590153216,9613476352,2207831425538,8808169986,2207697207296,8673951744,2207831425024,8808169472,565157650628608,8673951744,144680345726484480,8673951744,2207831425536,8808169984,2207697207810,8673952258,2207831425024,8808169472,144680346666009090,9613476354,144680345726484480,8673951744,2208099860480,9076604928,2207697207808,8673952256,144680345726484480,8673951744,144680346666009088,9613476352,2207697207810,8673952258,2208099860480,9076604928,144680345860702722,8808169986,144680345726484480,8673951744,565157784846336,8808169472,2207697207808,8673952256,144680345726484480,8673951744,144680345860702720,8808169984,565157650629122,8673952258,565157784846336,8808169472,2208099860480,9076604928,144680345726484480,8673951744,565159663894528,10687217664,565157650629120,8673952256,2207697207810,8673952258,2208099860480,9076604928,565157650629122,8673952258,565159663894528,10687217664,2207831425024,8808169472,2207697207808,8673952256,565157784846336,8808169472,565157650629120,8673952256,2207697207810,8673952258,2207831425024,8808169472,2207697207296,8673951744,565157784846336,8808169472,2211857956864,12834701312,2207697207808,8673952256,2208099860994,9076605442,2207697207296,8673951744,144680345726484994,8673952258,2211857956864,12834701312,2207697207296,8673951744,2208099860992,9076605440,144680345860702208,8808169472,144680345726484992,8673952256,2207831425538,8808169986,2207697207296,8673951744,144680345726484994,8673952258,144680345860702208,8808169472,565157650628608,8673951744,2207831425536,8808169984,144680346129137664,9076604928,144680345726484992,8673952256,565158590153218,9613476354,565157650628608,8673951744,2207697207296,8673951744,144680346129137664,9076604928,565157650628608,8673951744,565158590153216,9613476352,2207831425538,8808169986,2207697207296,8673951744,565157784846850,8808169986,565157650628608,8673951744,2207697207296,8673951744,2207831425536,8808169984,565157650628608,8673951744,565157784846848,8808169984,2208636731906,9613476354,2207697207296,8673951744,2208099860480,9076604928,565157650628608,8673951744,2207697207296,8673951744,2208636731904,9613476352,2207697207810,8673952258,2208099860480,9076604928,144680345860702722,8808169986,2207697207296,8673951744,2207831425024,8808169472,2207697207808,8673952256,144680345726484480,8673951744,144680345860702720,8808169984,2207697207810,8673952258,2207831425024,8808169472,144680346129138178,9076605442,144680345726484480,8673951744,2211857956864,12834701312,2207697207808,8673952256,144680345726484480,8673951744,144680346129138176,9076605440,565157650629122,8673952258,2211857956864,12834701312,2207831425024,8808169472,144680345726484480,8673951744,565157784846336,8808169472,565157650629120,8673952256,2207697207810,8673952258,2207831425024,8808169472,565157650629122,8673952258,565157784846336,8808169472,2209710473216,10687217664,2207697207808,8673952256,565158053281792,9076604928,565157650629120,8673952256,2207697207810,8673952258,2209710473216,10687217664,2207697207296,8673951744,565158053281792,9076604928,2207831425024,8808169472,2207697207808,8673952256,2207831425538,8808169986,2207697207296,8673951744,144680345726484994,8673952258,2207831425024,8808169472,2207697207296,8673951744,2207831425536,8808169984,144680346129137664,9076604928,144680345726484992,8673952256,2208636731906,9613476354,2207697207296,8673951744,144680345726484994,8673952258,144680346129137664,9076604928,2207697207296,8673951744,2208636731904,9613476352,144680345860702208,8808169472,144680345726484992,8673952256,565157784846850,8808169986,2207697207296,8673951744,2207697207296,8673951744,144680345860702208,8808169472,565157650628608,8673951744,565157784846848,8808169984,2208636731906,9613476354,2207697207296,8673951744,565158053282306,9076605442,565157650628608,8673951744,2207697207296,8673951744,2208636731904,9613476352,565157650628608,8673951744,565158053282304,9076605440,2207831425538,8808169986,2207697207296,8673951744,2207831425024,8808169472,565157650628608,8673951744,2207697207296,8673951744,2207831425536,8808169984,2207697207810,8673952258,2207831425024,8808169472,144680346129138178,9076605442,2207697207296,8673951744,2209710473216,10687217664,2207697207808,8673952256,144680345726484480,8673951744,144680346129138176,9076605440,2207697207810,8673952258,2209710473216,10687217664,144680345860702722,8808169986,144680345726484480,8673951744,2207831425024,8808169472,2207697207808,8673952256,144680345726484480,8673951744,144680345860702720,8808169984,565157650629122,8673952258,2207831425024,8808169472,0],[289360695496279044,4415394414592,21391213572,17347903488,1130316123341828,4415394414592,18169988100,17347903488,289360695496278016,4417290241028,21391212544,19243729924,1130316123340800,4416216499204,18169987072,18169988100,289360695479501828,4417290240000,21374436356,19243728896,1130316106564612,4416216498176,18153210884,18169987072,289360695479500800,4417273463812,21374435328,19226952708,1130316106563584,4416199721988,18153209856,18153210884,289360691738182656,4417273462784,17633117184,19226951680,1130315586470912,4416199720960,17633117184,18153209856,289360691738181632,4415679628288,17633116160,17633117184,1130315586469888,4415679628288,17633116160,17633117184,289360691721405440,4415679627264,17616339968,17633116160,1130315569693696,4415679627264,17616339968,17633116160,289360691721404416,4415662851072,17616338944,17616339968,1130315569692672,4415662851072,17616338944,17616339968,289360691469747204,4415662850048,17364681732,17616338944,1130315318035460,4415662850048,17364681732,17616338944,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360691738182660,4415394414592,17633117188,17347903488,1130315586470916,4415394414592,17633117188,17347903488,289360691738181632,4415679628292,17633116160,17633117188,1130315586469888,4415679628292,17633116160,17633117188,289360691721405444,4415679627264,17616339972,17633116160,1130315569693700,4415679627264,17616339972,17633116160,289360691721404416,4415662851076,17616338944,17616339972,1130315569692672,4415662851076,17616338944,17616339972,289360695496279040,4415662850048,21391213568,17616338944,1130316123341824,4415662850048,18169988096,17616338944,289360695496278016,4417290241024,21391212544,19243729920,1130316123340800,4416216499200,18169987072,18169988096,289360695479501824,4417290240000,21374436352,19243728896,1130316106564608,4416216498176,18153210880,18169987072,289360695479500800,4417273463808,21374435328,19226952704,1130316106563584,4416199721984,18153209856,18153210880,289360691469747204,4417273462784,17364681732,19226951680,1130315318035460,4416199720960,17364681732,18153209856,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360692275053572,4415394414592,18169988100,17347903488,1130319344567300,4415394414592,21391213572,17347903488,289360692275052544,4416216499204,18169987072,18169988100,1130319344566272,4417290241028,21391212544,19243729924,289360692258276356,4416216498176,18153210884,18169987072,1130319327790084,4417290240000,21374436356,19243728896,289360692258275328,4416199721988,18153209856,18153210884,1130319327789056,4417273463812,21374435328,19226952708,289360691738182656,4416199720960,17633117184,18153209856,1130315586470912,4417273462784,17633117184,19226951680,289360691738181632,4415679628288,17633116160,17633117184,1130315586469888,4415679628288,17633116160,17633117184,289360691721405440,4415679627264,17616339968,17633116160,1130315569693696,4415679627264,17616339968,17633116160,289360691721404416,4415662851072,17616338944,17616339968,1130315569692672,4415662851072,17616338944,17616339968,289360691469747204,4415662850048,17364681732,17616338944,1130315318035460,4415662850048,17364681732,17616338944,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360691738182660,4415394414592,17633117188,17347903488,1130315586470916,4415394414592,17633117188,17347903488,289360691738181632,4415679628292,17633116160,17633117188,1130315586469888,4415679628292,17633116160,17633117188,289360691721405444,4415679627264,17616339972,17633116160,1130315569693700,4415679627264,17616339972,17633116160,289360691721404416,4415662851076,17616338944,17616339972,1130315569692672,4415662851076,17616338944,17616339972,289360692275053568,4415662850048,18169988096,17616338944,1130319344567296,4415662850048,21391213568,17616338944,289360692275052544,4416216499200,18169987072,18169988096,1130319344566272,4417290241024,21391212544,19243729920,289360692258276352,4416216498176,18153210880,18169987072,1130319327790080,4417290240000,21374436352,19243728896,289360692258275328,4416199721984,18153209856,18153210880,1130319327789056,4417273463808,21374435328,19226952704,289360691469747204,4416199720960,17364681732,18153209856,1130315318035460,4417273462784,17364681732,19226951680,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360693348795396,4415394414592,19243729924,17347903488,1130316123341828,4415394414592,18169988100,17347903488,289360693348794368,4419437724676,19243728896,21391213572,1130316123340800,4416216499204,18169987072,18169988100,289360693332018180,4419437723648,19226952708,21391212544,1130316106564612,4416216498176,18153210884,18169987072,289360693332017152,4419420947460,19226951680,21374436356,1130316106563584,4416199721988,18153209856,18153210884,289360691738182656,4419420946432,17633117184,21374435328,1130315586470912,4416199720960,17633117184,18153209856,289360691738181632,4415679628288,17633116160,17633117184,1130315586469888,4415679628288,17633116160,17633117184,289360691721405440,4415679627264,17616339968,17633116160,1130315569693696,4415679627264,17616339968,17633116160,289360691721404416,4415662851072,17616338944,17616339968,1130315569692672,4415662851072,17616338944,17616339968,289360691469747204,4415662850048,17364681732,17616338944,1130315318035460,4415662850048,17364681732,17616338944,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360691738182660,4415394414592,17633117188,17347903488,1130315586470916,4415394414592,17633117188,17347903488,289360691738181632,4415679628292,17633116160,17633117188,1130315586469888,4415679628292,17633116160,17633117188,289360691721405444,4415679627264,17616339972,17633116160,1130315569693700,4415679627264,17616339972,17633116160,289360691721404416,4415662851076,17616338944,17616339972,1130315569692672,4415662851076,17616338944,17616339972,289360693348795392,4415662850048,19243729920,17616338944,1130316123341824,4415662850048,18169988096,17616338944,289360693348794368,4419437724672,19243728896,21391213568,1130316123340800,4416216499200,18169987072,18169988096,289360693332018176,4419437723648,19226952704,21391212544,1130316106564608,4416216498176,18153210880,18169987072,289360693332017152,4419420947456,19226951680,21374436352,1130316106563584,4416199721984,18153209856,18153210880,289360691469747204,4419420946432,17364681732,21374435328,1130315318035460,4416199720960,17364681732,18153209856,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360692275053572,4415394414592,18169988100,17347903488,1130317197083652,4415394414592,19243729924,17347903488,289360692275052544,4416216499204,18169987072,18169988100,1130317197082624,4419437724676,19243728896,21391213572,289360692258276356,4416216498176,18153210884,18169987072,1130317180306436,4419437723648,19226952708,21391212544,289360692258275328,4416199721988,18153209856,18153210884,1130317180305408,4419420947460,19226951680,21374436356,289360691738182656,4416199720960,17633117184,18153209856,1130315586470912,4419420946432,17633117184,21374435328,289360691738181632,4415679628288,17633116160,17633117184,1130315586469888,4415679628288,17633116160,17633117184,289360691721405440,4415679627264,17616339968,17633116160,1130315569693696,4415679627264,17616339968,17633116160,289360691721404416,4415662851072,17616338944,17616339968,1130315569692672,4415662851072,17616338944,17616339968,289360691469747204,4415662850048,17364681732,17616338944,1130315318035460,4415662850048,17364681732,17616338944,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,289360691738182660,4415394414592,17633117188,17347903488,1130315586470916,4415394414592,17633117188,17347903488,289360691738181632,4415679628292,17633116160,17633117188,1130315586469888,4415679628292,17633116160,17633117188,289360691721405444,4415679627264,17616339972,17633116160,1130315569693700,4415679627264,17616339972,17633116160,289360691721404416,4415662851076,17616338944,17616339972,1130315569692672,4415662851076,17616338944,17616339972,289360692275053568,4415662850048,18169988096,17616338944,1130317197083648,4415662850048,19243729920,17616338944,289360692275052544,4416216499200,18169987072,18169988096,1130317197082624,4419437724672,19243728896,21391213568,289360692258276352,4416216498176,18153210880,18169987072,1130317180306432,4419437723648,19226952704,21391212544,289360692258275328,4416199721984,18153209856,18153210880,1130317180305408,4419420947456,19226951680,21374436352,289360691469747204,4416199720960,17364681732,18153209856,1130315318035460,4419420946432,17364681732,21374435328,289360691469746176,4415411192836,17364680704,17364681732,1130315318034432,4415411192836,17364680704,17364681732,289360691452969988,4415411191808,17347904516,17364680704,1130315301258244,4415411191808,17347904516,17364680704,289360691452968960,4415394415620,17347903488,17347904516,1130315301257216,4415394415620,17347903488,17347904516,289360691469747200,4415394414592,17364681728,17347903488,1130315318035456,4415394414592,17364681728,17347903488,289360691469746176,4415411192832,17364680704,17364681728,1130315318034432,4415411192832,17364680704,17364681728,289360691452969984,4415411191808,17347904512,17364680704,1130315301258240,4415411191808,17347904512,17364680704,289360691452968960,4415394415616,17347903488,17347904512,1130315301257216,4415394415616,17347903488,17347904512,0],[578721386714368008,38504237064,8830839160832,34746138624,578721386714368000,38504237056,8830839160832,34746138624,578721386697590792,38487459848,8830822383616,34729361408,578721386697590784,38487459840,8830822383616,34729361408,578721386664036360,38453905416,8830788829184,34695806976,578721386664036352,38453905408,8830788829184,34695806976,578721386664036360,38453905416,8830788829184,34695806976,578721386664036352,38453905408,8830788829184,34695806976,578721386714365952,38504235008,8832449775624,36356753416,578721386714365952,38504235008,8832449775616,36356753408,578721386697588736,38487457792,8832432998408,36339976200,578721386697588736,38487457792,8832432998400,36339976192,578721386664034304,38453903360,8832399443976,36306421768,578721386664034304,38453903360,8832399443968,36306421760,578721386664034304,38453903360,8832399443976,36306421768,578721386664034304,38453903360,8832399443968,36306421760,578721382956271624,34746140680,8832449773568,36356751360,578721382956271616,34746140672,8832449773568,36356751360,578721382939494408,34729363464,8832432996352,36339974144,578721382939494400,34729363456,8832432996352,36339974144,578721382905939976,34695809032,8832399441920,36306419712,578721382905939968,34695809024,8832399441920,36306419712,578721382905939976,34695809032,8832399441920,36306419712,578721382905939968,34695809024,8832399441920,36306419712,578721382956269568,34746138624,8830839162888,34746140680,578721382956269568,34746138624,8830839162880,34746140672,578721382939492352,34729361408,8830822385672,34729363464,578721382939492352,34729361408,8830822385664,34729363456,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721383493142536,35283011592,8830839160832,34746138624,578721383493142528,35283011584,8830839160832,34746138624,578721383476365320,35266234376,8830822383616,34729361408,578721383476365312,35266234368,8830822383616,34729361408,578721383442810888,35232679944,8830788829184,34695806976,578721383442810880,35232679936,8830788829184,34695806976,578721383442810888,35232679944,8830788829184,34695806976,578721383442810880,35232679936,8830788829184,34695806976,578721383493140480,35283009536,8831376033800,35283011592,578721383493140480,35283009536,8831376033792,35283011584,578721383476363264,35266232320,8831359256584,35266234376,578721383476363264,35266232320,8831359256576,35266234368,578721383442808832,35232677888,8831325702152,35232679944,578721383442808832,35232677888,8831325702144,35232679936,578721383442808832,35232677888,8831325702152,35232679944,578721383442808832,35232677888,8831325702144,35232679936,578721382956271624,34746140680,8831376031744,35283009536,578721382956271616,34746140672,8831376031744,35283009536,578721382939494408,34729363464,8831359254528,35266232320,578721382939494400,34729363456,8831359254528,35266232320,578721382905939976,34695809032,8831325700096,35232677888,578721382905939968,34695809024,8831325700096,35232677888,578721382905939976,34695809032,8831325700096,35232677888,578721382905939968,34695809024,8831325700096,35232677888,578721382956269568,34746138624,8830839162888,34746140680,578721382956269568,34746138624,8830839162880,34746140672,578721382939492352,34729361408,8830822385672,34729363464,578721382939492352,34729361408,8830822385664,34729363456,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721384566884360,36356753416,8830839160832,34746138624,578721384566884352,36356753408,8830839160832,34746138624,578721384550107144,36339976200,8830822383616,34729361408,578721384550107136,36339976192,8830822383616,34729361408,578721384516552712,36306421768,8830788829184,34695806976,578721384516552704,36306421760,8830788829184,34695806976,578721384516552712,36306421768,8830788829184,34695806976,578721384516552704,36306421760,8830788829184,34695806976,578721384566882304,36356751360,8834597259272,38504237064,578721384566882304,36356751360,8834597259264,38504237056,578721384550105088,36339974144,8834580482056,38487459848,578721384550105088,36339974144,8834580482048,38487459840,578721384516550656,36306419712,8834546927624,38453905416,578721384516550656,36306419712,8834546927616,38453905408,578721384516550656,36306419712,8834546927624,38453905416,578721384516550656,36306419712,8834546927616,38453905408,578721382956271624,34746140680,8834597257216,38504235008,578721382956271616,34746140672,8834597257216,38504235008,578721382939494408,34729363464,8834580480000,38487457792,578721382939494400,34729363456,8834580480000,38487457792,578721382905939976,34695809032,8834546925568,38453903360,578721382905939968,34695809024,8834546925568,38453903360,578721382905939976,34695809032,8834546925568,38453903360,578721382905939968,34695809024,8834546925568,38453903360,578721382956269568,34746138624,8830839162888,34746140680,578721382956269568,34746138624,8830839162880,34746140672,578721382939492352,34729361408,8830822385672,34729363464,578721382939492352,34729361408,8830822385664,34729363456,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721383493142536,35283011592,8830839160832,34746138624,578721383493142528,35283011584,8830839160832,34746138624,578721383476365320,35266234376,8830822383616,34729361408,578721383476365312,35266234368,8830822383616,34729361408,578721383442810888,35232679944,8830788829184,34695806976,578721383442810880,35232679936,8830788829184,34695806976,578721383442810888,35232679944,8830788829184,34695806976,578721383442810880,35232679936,8830788829184,34695806976,578721383493140480,35283009536,8831376033800,35283011592,578721383493140480,35283009536,8831376033792,35283011584,578721383476363264,35266232320,8831359256584,35266234376,578721383476363264,35266232320,8831359256576,35266234368,578721383442808832,35232677888,8831325702152,35232679944,578721383442808832,35232677888,8831325702144,35232679936,578721383442808832,35232677888,8831325702152,35232679944,578721383442808832,35232677888,8831325702144,35232679936,578721382956271624,34746140680,8831376031744,35283009536,578721382956271616,34746140672,8831376031744,35283009536,578721382939494408,34729363464,8831359254528,35266232320,578721382939494400,34729363456,8831359254528,35266232320,578721382905939976,34695809032,8831325700096,35232677888,578721382905939968,34695809024,8831325700096,35232677888,578721382905939976,34695809032,8831325700096,35232677888,578721382905939968,34695809024,8831325700096,35232677888,578721382956269568,34746138624,8830839162888,34746140680,578721382956269568,34746138624,8830839162880,34746140672,578721382939492352,34729361408,8830822385672,34729363464,578721382939492352,34729361408,8830822385664,34729363456,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,578721382905937920,34695806976,8830788831240,34695809032,578721382905937920,34695806976,8830788831232,34695809024,2260634410944520,38504237064,8830839160832,34746138624,2260634410944512,38504237056,8830839160832,34746138624,2260634394167304,38487459848,8830822383616,34729361408,2260634394167296,38487459840,8830822383616,34729361408,2260634360612872,38453905416,8830788829184,34695806976,2260634360612864,38453905408,8830788829184,34695806976,2260634360612872,38453905416,8830788829184,34695806976,2260634360612864,38453905408,8830788829184,34695806976,2260634410942464,38504235008,8832449775624,36356753416,2260634410942464,38504235008,8832449775616,36356753408,2260634394165248,38487457792,8832432998408,36339976200,2260634394165248,38487457792,8832432998400,36339976192,2260634360610816,38453903360,8832399443976,36306421768,2260634360610816,38453903360,8832399443968,36306421760,2260634360610816,38453903360,8832399443976,36306421768,2260634360610816,38453903360,8832399443968,36306421760,2260630652848136,34746140680,8832449773568,36356751360,2260630652848128,34746140672,8832449773568,36356751360,2260630636070920,34729363464,8832432996352,36339974144,2260630636070912,34729363456,8832432996352,36339974144,2260630602516488,34695809032,8832399441920,36306419712,2260630602516480,34695809024,8832399441920,36306419712,2260630602516488,34695809032,8832399441920,36306419712,2260630602516480,34695809024,8832399441920,36306419712,2260630652846080,34746138624,8830839162888,34746140680,2260630652846080,34746138624,8830839162880,34746140672,2260630636068864,34729361408,8830822385672,34729363464,2260630636068864,34729361408,8830822385664,34729363456,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260631189719048,35283011592,8830839160832,34746138624,2260631189719040,35283011584,8830839160832,34746138624,2260631172941832,35266234376,8830822383616,34729361408,2260631172941824,35266234368,8830822383616,34729361408,2260631139387400,35232679944,8830788829184,34695806976,2260631139387392,35232679936,8830788829184,34695806976,2260631139387400,35232679944,8830788829184,34695806976,2260631139387392,35232679936,8830788829184,34695806976,2260631189716992,35283009536,8831376033800,35283011592,2260631189716992,35283009536,8831376033792,35283011584,2260631172939776,35266232320,8831359256584,35266234376,2260631172939776,35266232320,8831359256576,35266234368,2260631139385344,35232677888,8831325702152,35232679944,2260631139385344,35232677888,8831325702144,35232679936,2260631139385344,35232677888,8831325702152,35232679944,2260631139385344,35232677888,8831325702144,35232679936,2260630652848136,34746140680,8831376031744,35283009536,2260630652848128,34746140672,8831376031744,35283009536,2260630636070920,34729363464,8831359254528,35266232320,2260630636070912,34729363456,8831359254528,35266232320,2260630602516488,34695809032,8831325700096,35232677888,2260630602516480,34695809024,8831325700096,35232677888,2260630602516488,34695809032,8831325700096,35232677888,2260630602516480,34695809024,8831325700096,35232677888,2260630652846080,34746138624,8830839162888,34746140680,2260630652846080,34746138624,8830839162880,34746140672,2260630636068864,34729361408,8830822385672,34729363464,2260630636068864,34729361408,8830822385664,34729363456,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260632263460872,36356753416,8830839160832,34746138624,2260632263460864,36356753408,8830839160832,34746138624,2260632246683656,36339976200,8830822383616,34729361408,2260632246683648,36339976192,8830822383616,34729361408,2260632213129224,36306421768,8830788829184,34695806976,2260632213129216,36306421760,8830788829184,34695806976,2260632213129224,36306421768,8830788829184,34695806976,2260632213129216,36306421760,8830788829184,34695806976,2260632263458816,36356751360,8834597259272,38504237064,2260632263458816,36356751360,8834597259264,38504237056,2260632246681600,36339974144,8834580482056,38487459848,2260632246681600,36339974144,8834580482048,38487459840,2260632213127168,36306419712,8834546927624,38453905416,2260632213127168,36306419712,8834546927616,38453905408,2260632213127168,36306419712,8834546927624,38453905416,2260632213127168,36306419712,8834546927616,38453905408,2260630652848136,34746140680,8834597257216,38504235008,2260630652848128,34746140672,8834597257216,38504235008,2260630636070920,34729363464,8834580480000,38487457792,2260630636070912,34729363456,8834580480000,38487457792,2260630602516488,34695809032,8834546925568,38453903360,2260630602516480,34695809024,8834546925568,38453903360,2260630602516488,34695809032,8834546925568,38453903360,2260630602516480,34695809024,8834546925568,38453903360,2260630652846080,34746138624,8830839162888,34746140680,2260630652846080,34746138624,8830839162880,34746140672,2260630636068864,34729361408,8830822385672,34729363464,2260630636068864,34729361408,8830822385664,34729363456,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260631189719048,35283011592,8830839160832,34746138624,2260631189719040,35283011584,8830839160832,34746138624,2260631172941832,35266234376,8830822383616,34729361408,2260631172941824,35266234368,8830822383616,34729361408,2260631139387400,35232679944,8830788829184,34695806976,2260631139387392,35232679936,8830788829184,34695806976,2260631139387400,35232679944,8830788829184,34695806976,2260631139387392,35232679936,8830788829184,34695806976,2260631189716992,35283009536,8831376033800,35283011592,2260631189716992,35283009536,8831376033792,35283011584,2260631172939776,35266232320,8831359256584,35266234376,2260631172939776,35266232320,8831359256576,35266234368,2260631139385344,35232677888,8831325702152,35232679944,2260631139385344,35232677888,8831325702144,35232679936,2260631139385344,35232677888,8831325702152,35232679944,2260631139385344,35232677888,8831325702144,35232679936,2260630652848136,34746140680,8831376031744,35283009536,2260630652848128,34746140672,8831376031744,35283009536,2260630636070920,34729363464,8831359254528,35266232320,2260630636070912,34729363456,8831359254528,35266232320,2260630602516488,34695809032,8831325700096,35232677888,2260630602516480,34695809024,8831325700096,35232677888,2260630602516488,34695809032,8831325700096,35232677888,2260630602516480,34695809024,8831325700096,35232677888,2260630652846080,34746138624,8830839162888,34746140680,2260630652846080,34746138624,8830839162880,34746140672,2260630636068864,34729361408,8830822385672,34729363464,2260630636068864,34729361408,8830822385664,34729363456,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,2260630602514432,34695806976,8830788831240,34695809032,2260630602514432,34695806976,8830788831232,34695809024,0],[1157442769150545936,4521261205032960,72730284048,69391618048,1157442769150541824,4521261205028864,72730279936,69391613952,17661678325776,4521264426258432,69492281360,72612843520,17661678321664,4521264426254336,69492277248,72612839424,17662718513168,4521264543698960,70532468752,72730284048,17662718509056,4521264543694848,70532464640,72730279936,17661644771344,17661678325776,69458726928,69492281360,17661644767232,17661678321664,69458722816,69492277248,17664798887952,17662718513168,72612843536,70532468752,17664798883840,17662718509056,72612839424,70532464640,1157442765811879952,17661644771344,69391618064,69458726928,1157442765811875840,17661644767232,69391613952,69458722816,1157442766885621776,17664798887952,70465359888,72612843536,1157442766885617664,17664798883840,70465355776,72612839424,1157442765811879952,4521261205032976,69391618064,69391618064,1157442765811875840,4521261205028864,69391613952,69391613952,1157442769150545920,4521262278774800,72730284032,70465359888,1157442769150541824,4521262278770688,72730279936,70465355776,17661678325760,4521261205032976,69492281344,69391618064,17661678321664,4521261205028864,69492277248,69391613952,17662718513152,4521264543698944,70532468736,72730284032,17662718509056,4521264543694848,70532464640,72730279936,17661644771328,17661678325760,69458726912,69492281344,17661644767232,17661678321664,69458722816,69492277248,17664798887936,17662718513152,72612843520,70532468736,17664798883840,17662718509056,72612839424,70532464640,1157442765811879936,17661644771328,69391618048,69458726912,1157442765811875840,17661644767232,69391613952,69458722816,1157442766885621760,17664798887936,70465359872,72612843520,1157442766885617664,17664798883840,70465355776,72612839424,1157442765811879936,4521261205032960,69391618048,69391618048,1157442765811875840,4521261205028864,69391613952,69391613952,1157442765929320464,4521262278774784,69509058576,70465359872,1157442765929316352,4521262278770688,69509054464,70465355776,1157442769133768720,4521261205032960,72713506832,69391618048,1157442769133764608,4521261205028864,72713502720,69391613952,17661644771344,4521261322473488,69458726928,69509058576,17661644767232,4521261322469376,69458722816,69509054464,17662718513168,4521264526921744,70532468752,72713506832,17662718509056,4521264526917632,70532464640,72713502720,17661577662480,17661644771344,69391618064,69458726928,17661577658368,17661644767232,69391613952,69458722816,17664798887952,17662718513168,72612843536,70532468752,17664798883840,17662718509056,72612839424,70532464640,1157442765811879952,17661577662480,69391618064,69391618064,1157442765811875840,17661577658368,69391613952,69391613952,1157442766885621776,17664798887952,70465359888,72612843536,1157442766885617664,17664798883840,70465355776,72612839424,1157442765929320448,4521261205032976,69509058560,69391618064,1157442765929316352,4521261205028864,69509054464,69391613952,1157442769133768704,4521262278774800,72713506816,70465359888,1157442769133764608,4521262278770688,72713502720,70465355776,17661644771328,4521261322473472,69458726912,69509058560,17661644767232,4521261322469376,69458722816,69509054464,17662718513152,4521264526921728,70532468736,72713506816,17662718509056,4521264526917632,70532464640,72713502720,17661577662464,17661644771328,69391618048,69458726912,17661577658368,17661644767232,69391613952,69458722816,17664798887936,17662718513152,72612843520,70532468736,17664798883840,17662718509056,72612839424,70532464640,1157442765811879936,17661577662464,69391618048,69391618048,1157442765811875840,17661577658368,69391613952,69391613952,1157442766885621760,17664798887936,70465359872,72612843520,1157442766885617664,17664798883840,70465355776,72612839424,1157442767003062288,4521261205032960,70582800400,69391618048,1157442767003058176,4521261205028864,70582796288,69391613952,1157442765912543248,4521262278774784,69492281360,70465359872,1157442765912539136,4521262278770688,69492277248,70465355776,1157442769100214288,4521262396215312,72679952400,70582800400,1157442769100210176,4521262396211200,72679948288,70582796288,17661644771344,4521261305696272,69458726928,69492281360,17661644767232,4521261305692160,69458722816,69492277248,17662651404304,4521264493367312,70465359888,72679952400,17662651400192,4521264493363200,70465355776,72679948288,17661577662480,17661644771344,69391618064,69458726928,17661577658368,17661644767232,69391613952,69458722816,17664798887952,17662651404304,72612843536,70465359888,17664798883840,17662651400192,72612839424,70465355776,1157442765811879952,17661577662480,69391618064,69391618064,1157442765811875840,17661577658368,69391613952,69391613952,1157442767003062272,17664798887952,70582800384,72612843536,1157442767003058176,17664798883840,70582796288,72612839424,1157442765912543232,4521261205032976,69492281344,69391618064,1157442765912539136,4521261205028864,69492277248,69391613952,1157442769100214272,4521262396215296,72679952384,70582800384,1157442769100210176,4521262396211200,72679948288,70582796288,17661644771328,4521261305696256,69458726912,69492281344,17661644767232,4521261305692160,69458722816,69492277248,17662651404288,4521264493367296,70465359872,72679952384,17662651400192,4521264493363200,70465355776,72679948288,17661577662464,17661644771328,69391618048,69458726912,17661577658368,17661644767232,69391613952,69458722816,17664798887936,17662651404288,72612843520,70465359872,17664798883840,17662651400192,72612839424,70465355776,1157442765811879936,17661577662464,69391618048,69391618048,1157442765811875840,17661577658368,69391613952,69391613952,1157442765929320464,17664798887936,69509058576,72612843520,1157442765929316352,17664798883840,69509054464,72612839424,1157442766986285072,4521261205032960,70566023184,69391618048,1157442766986280960,4521261205028864,70566019072,69391613952,1157442765878988816,4521261322473488,69458726928,69509058576,1157442765878984704,4521261322469376,69458722816,69509054464,1157442769100214288,4521262379438096,72679952400,70566023184,1157442769100210176,4521262379433984,72679948288,70566019072,17661577662480,4521261272141840,69391618064,69458726928,17661577658368,4521261272137728,69391613952,69458722816,17662651404304,4521264493367312,70465359888,72679952400,17662651400192,4521264493363200,70465355776,72679948288,17661577662480,17661577662480,69391618064,69391618064,17661577658368,17661577658368,69391613952,69391613952,17664798887952,17662651404304,72612843536,70465359888,17664798883840,17662651400192,72612839424,70465355776,1157442765929320448,17661577662480,69509058560,69391618064,1157442765929316352,17661577658368,69509054464,69391613952,1157442766986285056,17664798887952,70566023168,72612843536,1157442766986280960,17664798883840,70566019072,72612839424,1157442765878988800,4521261322473472,69458726912,69509058560,1157442765878984704,4521261322469376,69458722816,69509054464,1157442769100214272,4521262379438080,72679952384,70566023168,1157442769100210176,4521262379433984,72679948288,70566019072,17661577662464,4521261272141824,69391618048,69458726912,17661577658368,4521261272137728,69391613952,69458722816,17662651404288,4521264493367296,70465359872,72679952384,17662651400192,4521264493363200,70465355776,72679948288,17661577662464,17661577662464,69391618048,69391618048,17661577658368,17661577658368,69391613952,69391613952,17664798887936,17662651404288,72612843520,70465359872,17664798883840,17662651400192,72612839424,70465355776,17664916328464,17661577662464,72730284048,69391618048,17664916324352,17661577658368,72730279936,69391613952,1157442765912543248,17664798887936,69492281360,72612843520,1157442765912539136,17664798883840,69492277248,72612839424,1157442766952730640,17664916328464,70532468752,72730284048,1157442766952726528,17664916324352,70532464640,72730279936,1157442765878988816,4521261305696272,69458726928,69492281360,1157442765878984704,4521261305692160,69458722816,69492277248,1157442769033105424,4521262345883664,72612843536,70532468752,1157442769033101312,4521262345879552,72612839424,70532464640,17661577662480,4521261272141840,69391618064,69458726928,17661577658368,4521261272137728,69391613952,69458722816,17662651404304,4521264426258448,70465359888,72612843536,17662651400192,4521264426254336,70465355776,72612839424,17661577662480,17661577662480,69391618064,69391618064,17661577658368,17661577658368,69391613952,69391613952,17664916328448,17662651404304,72730284032,70465359888,17664916324352,17662651400192,72730279936,70465355776,1157442765912543232,17661577662480,69492281344,69391618064,1157442765912539136,17661577658368,69492277248,69391613952,1157442766952730624,17664916328448,70532468736,72730284032,1157442766952726528,17664916324352,70532464640,72730279936,1157442765878988800,4521261305696256,69458726912,69492281344,1157442765878984704,4521261305692160,69458722816,69492277248,1157442769033105408,4521262345883648,72612843520,70532468736,1157442769033101312,4521262345879552,72612839424,70532464640,17661577662464,4521261272141824,69391618048,69458726912,17661577658368,4521261272137728,69391613952,69458722816,17662651404288,4521264426258432,70465359872,72612843520,17662651400192,4521264426254336,70465355776,72612839424,17661577662464,17661577662464,69391618048,69391618048,17661577658368,17661577658368,69391613952,69391613952,17661695102992,17662651404288,69509058576,70465359872,17661695098880,17662651400192,69509054464,70465355776,17664899551248,17661577662464,72713506832,69391618048,17664899547136,17661577658368,72713502720,69391613952,1157442765878988816,17661695102992,69458726928,69509058576,1157442765878984704,17661695098880,69458722816,69509054464,1157442766952730640,17664899551248,70532468752,72713506832,1157442766952726528,17664899547136,70532464640,72713502720,1157442765811879952,4521261272141840,69391618064,69458726928,1157442765811875840,4521261272137728,69391613952,69458722816,1157442769033105424,4521262345883664,72612843536,70532468752,1157442769033101312,4521262345879552,72612839424,70532464640,17661577662480,4521261205032976,69391618064,69391618064,17661577658368,4521261205028864,69391613952,69391613952,17662651404304,4521264426258448,70465359888,72612843536,17662651400192,4521264426254336,70465355776,72612839424,17661695102976,17661577662480,69509058560,69391618064,17661695098880,17661577658368,69509054464,69391613952,17664899551232,17662651404304,72713506816,70465359888,17664899547136,17662651400192,72713502720,70465355776,1157442765878988800,17661695102976,69458726912,69509058560,1157442765878984704,17661695098880,69458722816,69509054464,1157442766952730624,17664899551232,70532468736,72713506816,1157442766952726528,17664899547136,70532464640,72713502720,1157442765811879936,4521261272141824,69391618048,69458726912,1157442765811875840,4521261272137728,69391613952,69458722816,1157442769033105408,4521262345883648,72612843520,70532468736,1157442769033101312,4521262345879552,72612839424,70532464640,17661577662464,4521261205032960,69391618048,69391618048,17661577658368,4521261205028864,69391613952,69391613952,17662651404288,4521264426258432,70465359872,72612843520,17662651400192,4521264426254336,70465355776,72612839424,17662768844816,17661577662464,70582800400,69391618048,17662768840704,17661577658368,70582796288,69391613952,17661678325776,17662651404288,69492281360,70465359872,17661678321664,17662651400192,69492277248,70465355776,17664865996816,17662768844816,72679952400,70582800400,17664865992704,17662768840704,72679948288,70582796288,1157442765878988816,17661678325776,69458726928,69492281360,1157442765878984704,17661678321664,69458722816,69492277248,1157442766885621776,17664865996816,70465359888,72679952400,1157442766885617664,17664865992704,70465355776,72679948288,1157442765811879952,4521261272141840,69391618064,69458726928,1157442765811875840,4521261272137728,69391613952,69458722816,1157442769033105424,4521262278774800,72612843536,70465359888,1157442769033101312,4521262278770688,72612839424,70465355776,17661577662480,4521261205032976,69391618064,69391618064,17661577658368,4521261205028864,69391613952,69391613952,17662768844800,4521264426258448,70582800384,72612843536,17662768840704,4521264426254336,70582796288,72612839424,17661678325760,17661577662480,69492281344,69391618064,17661678321664,17661577658368,69492277248,69391613952,17664865996800,17662768844800,72679952384,70582800384,17664865992704,17662768840704,72679948288,70582796288,1157442765878988800,17661678325760,69458726912,69492281344,1157442765878984704,17661678321664,69458722816,69492277248,1157442766885621760,17664865996800,70465359872,72679952384,1157442766885617664,17664865992704,70465355776,72679948288,1157442765811879936,4521261272141824,69391618048,69458726912,1157442765811875840,4521261272137728,69391613952,69458722816,1157442769033105408,4521262278774784,72612843520,70465359872,1157442769033101312,4521262278770688,72612839424,70465355776,17661577662464,4521261205032960,69391618048,69391618048,17661577658368,4521261205028864,69391613952,69391613952,17661695102992,4521264426258432,69509058576,72612843520,17661695098880,4521264426254336,69509054464,72612839424,17662752067600,17661577662464,70566023184,69391618048,17662752063488,17661577658368,70566019072,69391613952,17661644771344,17661695102992,69458726928,69509058576,17661644767232,17661695098880,69458722816,69509054464,17664865996816,17662752067600,72679952400,70566023184,17664865992704,17662752063488,72679948288,70566019072,1157442765811879952,17661644771344,69391618064,69458726928,1157442765811875840,17661644767232,69391613952,69458722816,1157442766885621776,17664865996816,70465359888,72679952400,1157442766885617664,17664865992704,70465355776,72679948288,1157442765811879952,4521261205032976,69391618064,69391618064,1157442765811875840,4521261205028864,69391613952,69391613952,1157442769033105424,4521262278774800,72612843536,70465359888,1157442769033101312,4521262278770688,72612839424,70465355776,17661695102976,4521261205032976,69509058560,69391618064,17661695098880,4521261205028864,69509054464,69391613952,17662752067584,4521264426258448,70566023168,72612843536,17662752063488,4521264426254336,70566019072,72612839424,17661644771328,17661695102976,69458726912,69509058560,17661644767232,17661695098880,69458722816,69509054464,17664865996800,17662752067584,72679952384,70566023168,17664865992704,17662752063488,72679948288,70566019072,1157442765811879936,17661644771328,69391618048,69458726912,1157442765811875840,17661644767232,69391613952,69458722816,1157442766885621760,17664865996800,70465359872,72679952384,1157442766885617664,17664865992704,70465355776,72679948288,1157442765811879936,4521261205032960,69391618048,69391618048,1157442765811875840,4521261205028864,69391613952,69391613952,1157442769033105408,4521262278774784,72612843520,70465359872,1157442769033101312,4521262278770688,72612839424,70465355776,0],[2314885534022901792,141182378016,2314885534022901760,141182377984,2314885534006124576,141165600800,2314885534006124544,141165600768,2314885533972570144,141132046368,2314885533972570112,141132046336,2314885533972570144,141132046368,2314885533972570112,141132046336,2314885533905461280,141064937504,2314885533905461248,141064937472,2314885533905461280,141064937504,2314885533905461248,141064937472,2314885533905461280,141064937504,2314885533905461248,141064937472,2314885533905461280,141064937504,2314885533905461248,141064937472,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,2314885533771243552,140930719776,2314885533771243520,140930719744,9042524809207840,141182378016,9042524809207808,141182377984,9042524792430624,141165600800,9042524792430592,141165600768,9042524758876192,141132046368,9042524758876160,141132046336,9042524758876192,141132046368,9042524758876160,141132046336,9042524691767328,141064937504,9042524691767296,141064937472,9042524691767328,141064937504,9042524691767296,141064937472,9042524691767328,141064937504,9042524691767296,141064937472,9042524691767328,141064937504,9042524691767296,141064937472,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,9042524557549600,140930719776,9042524557549568,140930719744,2314885531875418144,139034894368,2314885531875418112,139034894336,2314885531858640928,139018117152,2314885531858640896,139018117120,2314885531825086496,138984562720,2314885531825086464,138984562688,2314885531825086496,138984562720,2314885531825086464,138984562688,2314885531757977632,138917453856,2314885531757977600,138917453824,2314885531757977632,138917453856,2314885531757977600,138917453824,2314885531757977632,138917453856,2314885531757977600,138917453824,2314885531757977632,138917453856,2314885531757977600,138917453824,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,2314885531623759904,138783236128,2314885531623759872,138783236096,9042522661724192,139034894368,9042522661724160,139034894336,9042522644946976,139018117152,9042522644946944,139018117120,9042522611392544,138984562720,9042522611392512,138984562688,9042522611392544,138984562720,9042522611392512,138984562688,9042522544283680,138917453856,9042522544283648,138917453824,9042522544283680,138917453856,9042522544283648,138917453824,9042522544283680,138917453856,9042522544283648,138917453824,9042522544283680,138917453856,9042522544283648,138917453824,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,9042522410065952,138783236128,9042522410065920,138783236096,35325554466848,141182378016,35325554466816,141182377984,35325537689632,141165600800,35325537689600,141165600768,35325504135200,141132046368,35325504135168,141132046336,35325504135200,141132046368,35325504135168,141132046336,35325437026336,141064937504,35325437026304,141064937472,35325437026336,141064937504,35325437026304,141064937472,35325437026336,141064937504,35325437026304,141064937472,35325437026336,141064937504,35325437026304,141064937472,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325554466848,141182378016,35325554466816,141182377984,35325537689632,141165600800,35325537689600,141165600768,35325504135200,141132046368,35325504135168,141132046336,35325504135200,141132046368,35325504135168,141132046336,35325437026336,141064937504,35325437026304,141064937472,35325437026336,141064937504,35325437026304,141064937472,35325437026336,141064937504,35325437026304,141064937472,35325437026336,141064937504,35325437026304,141064937472,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35325302808608,140930719776,35325302808576,140930719744,35323406983200,139034894368,35323406983168,139034894336,35323390205984,139018117152,35323390205952,139018117120,35323356651552,138984562720,35323356651520,138984562688,35323356651552,138984562720,35323356651520,138984562688,35323289542688,138917453856,35323289542656,138917453824,35323289542688,138917453856,35323289542656,138917453824,35323289542688,138917453856,35323289542656,138917453824,35323289542688,138917453856,35323289542656,138917453824,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323406983200,139034894368,35323406983168,139034894336,35323390205984,139018117152,35323390205952,139018117120,35323356651552,138984562720,35323356651520,138984562688,35323356651552,138984562720,35323356651520,138984562688,35323289542688,138917453856,35323289542656,138917453824,35323289542688,138917453856,35323289542656,138917453824,35323289542688,138917453856,35323289542656,138917453824,35323289542688,138917453856,35323289542656,138917453824,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,35323155324960,138783236128,35323155324928,138783236096,2314885534022893568,141182369792,2314885534022893568,141182369792,2314885534006116352,141165592576,2314885534006116352,141165592576,2314885533972561920,141132038144,2314885533972561920,141132038144,2314885533972561920,141132038144,2314885533972561920,141132038144,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533905453056,141064929280,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,2314885533771235328,140930711552,9042524809199616,141182369792,9042524809199616,141182369792,9042524792422400,141165592576,9042524792422400,141165592576,9042524758867968,141132038144,9042524758867968,141132038144,9042524758867968,141132038144,9042524758867968,141132038144,9042524691759104,141064929280,9042524691759104,141064929280,9042524691759104,141064929280,9042524691759104,141064929280,9042524691759104,141064929280,9042524691759104,141064929280,9042524691759104,141064929280,9042524691759104,141064929280,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,9042524557541376,140930711552,2314885531875409920,139034886144,2314885531875409920,139034886144,2314885531858632704,139018108928,2314885531858632704,139018108928,2314885531825078272,138984554496,2314885531825078272,138984554496,2314885531825078272,138984554496,2314885531825078272,138984554496,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531757969408,138917445632,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,2314885531623751680,138783227904,9042522661715968,139034886144,9042522661715968,139034886144,9042522644938752,139018108928,9042522644938752,139018108928,9042522611384320,138984554496,9042522611384320,138984554496,9042522611384320,138984554496,9042522611384320,138984554496,9042522544275456,138917445632,9042522544275456,138917445632,9042522544275456,138917445632,9042522544275456,138917445632,9042522544275456,138917445632,9042522544275456,138917445632,9042522544275456,138917445632,9042522544275456,138917445632,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,9042522410057728,138783227904,35325554458624,141182369792,35325554458624,141182369792,35325537681408,141165592576,35325537681408,141165592576,35325504126976,141132038144,35325504126976,141132038144,35325504126976,141132038144,35325504126976,141132038144,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325554458624,141182369792,35325554458624,141182369792,35325537681408,141165592576,35325537681408,141165592576,35325504126976,141132038144,35325504126976,141132038144,35325504126976,141132038144,35325504126976,141132038144,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325437018112,141064929280,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35325302800384,140930711552,35323406974976,139034886144,35323406974976,139034886144,35323390197760,139018108928,35323390197760,139018108928,35323356643328,138984554496,35323356643328,138984554496,35323356643328,138984554496,35323356643328,138984554496,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323406974976,139034886144,35323406974976,139034886144,35323390197760,139018108928,35323390197760,139018108928,35323356643328,138984554496,35323356643328,138984554496,35323356643328,138984554496,35323356643328,138984554496,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323289534464,138917445632,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,35323155316736,138783227904,0],[4629771063767613504,4629771063767597056,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,4629771063750836288,4629771063750819840,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,4629771063717281856,4629771063717265408,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,4629771063717281856,4629771063717265408,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,4629771063650172992,4629771063650156544,70646830743616,70646830727168,277566472192,277566455808,277566472192,277566455808,4629771063650172992,4629771063650156544,70646813966400,70646813949952,277566472192,277566455808,277566472192,277566455808,4629771063650172992,4629771063650156544,70646780411968,70646780395520,277566472192,277566455808,277566472192,277566455808,4629771063650172992,4629771063650156544,70646780411968,70646780395520,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,4629771063515955264,4629771063515938816,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,4629771063247519808,4629771063247503360,70646579085376,70646579068928,278086565952,278086549504,277566472192,277566455808,4629771063247519808,4629771063247503360,70646579085376,70646579068928,278069788736,278069772288,277566472192,277566455808,4629771063247519808,4629771063247503360,70646579085376,70646579068928,278036234304,278036217856,277566472192,277566455808,4629771063247519808,4629771063247503360,70646579085376,70646579068928,278036234304,278036217856,277566472192,277566455808,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277969125440,277969108992,278086565952,278086549504,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277969125440,277969108992,278069788736,278069772288,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277969125440,277969108992,278036234304,278036217856,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277969125440,277969108992,278036234304,278036217856,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,4629771063247519808,4629771063247503360,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,4629771063767613440,4629771063767597056,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,4629771063750836224,4629771063750819840,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,4629771063717281792,4629771063717265408,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,4629771063717281792,4629771063717265408,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,4629771063650172928,4629771063650156544,70646830743552,70646830727168,277566472256,277566455808,277566472256,277566455808,4629771063650172928,4629771063650156544,70646813966336,70646813949952,277566472256,277566455808,277566472256,277566455808,4629771063650172928,4629771063650156544,70646780411904,70646780395520,277566472256,277566455808,277566472256,277566455808,4629771063650172928,4629771063650156544,70646780411904,70646780395520,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,4629771063515955200,4629771063515938816,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,4629771063247519744,4629771063247503360,70646579085312,70646579068928,278086565888,278086549504,277566472256,277566455808,4629771063247519744,4629771063247503360,70646579085312,70646579068928,278069788672,278069772288,277566472256,277566455808,4629771063247519744,4629771063247503360,70646579085312,70646579068928,278036234240,278036217856,277566472256,277566455808,4629771063247519744,4629771063247503360,70646579085312,70646579068928,278036234240,278036217856,277566472256,277566455808,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277969125376,277969108992,278086565888,278086549504,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277969125376,277969108992,278069788672,278069772288,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277969125376,277969108992,278036234240,278036217856,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277969125376,277969108992,278036234240,278036217856,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,4629771063247519744,4629771063247503360,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,18085045340225600,18085045340209152,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,18085045323448384,18085045323431936,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,18085045289893952,18085045289877504,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,18085045289893952,18085045289877504,70646310649856,70646310633472,277566472192,277566455808,277834907648,277834891264,18085045222785088,18085045222768640,70646830743616,70646830727168,277566472192,277566455808,277566472192,277566455808,18085045222785088,18085045222768640,70646813966400,70646813949952,277566472192,277566455808,277566472192,277566455808,18085045222785088,18085045222768640,70646780411968,70646780395520,277566472192,277566455808,277566472192,277566455808,18085045222785088,18085045222768640,70646780411968,70646780395520,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646713303104,70646713286656,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,18085045088567360,18085045088550912,70646579085376,70646579068928,277566472192,277566455808,277566472192,277566455808,18085044820131904,18085044820115456,70646579085376,70646579068928,278086565952,278086549504,277566472192,277566455808,18085044820131904,18085044820115456,70646579085376,70646579068928,278069788736,278069772288,277566472192,277566455808,18085044820131904,18085044820115456,70646579085376,70646579068928,278036234304,278036217856,277566472192,277566455808,18085044820131904,18085044820115456,70646579085376,70646579068928,278036234304,278036217856,277566472192,277566455808,18085044820131904,18085044820115456,70646310649920,70646310633472,277969125440,277969108992,278086565952,278086549504,18085044820131904,18085044820115456,70646310649920,70646310633472,277969125440,277969108992,278069788736,278069772288,18085044820131904,18085044820115456,70646310649920,70646310633472,277969125440,277969108992,278036234304,278036217856,18085044820131904,18085044820115456,70646310649920,70646310633472,277969125440,277969108992,278036234304,278036217856,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277969125440,277969108992,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,18085044820131904,18085044820115456,70646310649920,70646310633472,277834907712,277834891264,277834907712,277834891264,18085045340225536,18085045340209152,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,18085045323448320,18085045323431936,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,18085045289893888,18085045289877504,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,18085045289893888,18085045289877504,70646310649920,70646310633472,277566472256,277566455808,277834907712,277834891264,18085045222785024,18085045222768640,70646830743552,70646830727168,277566472256,277566455808,277566472256,277566455808,18085045222785024,18085045222768640,70646813966336,70646813949952,277566472256,277566455808,277566472256,277566455808,18085045222785024,18085045222768640,70646780411904,70646780395520,277566472256,277566455808,277566472256,277566455808,18085045222785024,18085045222768640,70646780411904,70646780395520,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646713303040,70646713286656,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,18085045088567296,18085045088550912,70646579085312,70646579068928,277566472256,277566455808,277566472256,277566455808,18085044820131840,18085044820115456,70646579085312,70646579068928,278086565888,278086549504,277566472256,277566455808,18085044820131840,18085044820115456,70646579085312,70646579068928,278069788672,278069772288,277566472256,277566455808,18085044820131840,18085044820115456,70646579085312,70646579068928,278036234240,278036217856,277566472256,277566455808,18085044820131840,18085044820115456,70646579085312,70646579068928,278036234240,278036217856,277566472256,277566455808,18085044820131840,18085044820115456,70646310649856,70646310633472,277969125376,277969108992,278086565888,278086549504,18085044820131840,18085044820115456,70646310649856,70646310633472,277969125376,277969108992,278069788672,278069772288,18085044820131840,18085044820115456,70646310649856,70646310633472,277969125376,277969108992,278036234240,278036217856,18085044820131840,18085044820115456,70646310649856,70646310633472,277969125376,277969108992,278036234240,278036217856,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277969125376,277969108992,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,18085044820131840,18085044820115456,70646310649856,70646310633472,277834907648,277834891264,277834907648,277834891264,0],[9259542123257036928,551844577280,9259542123257036800,551894941824,141288326332544,551894941696,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170086150569984,551643283456,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289265823744,551374815232,141289265823744,551777468416,36170085882167424,551777468416,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542123005345792,551643283456,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170086351929472,550837944320,36170086351929344,551844610176,141288326332544,551844610048,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289265823744,551374815232,141289265823744,551777468416,9259542123139596416,551777468416,9259542123139596288,551777501312,141288326332544,551777501184,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170085882134528,551643283456,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122200039424,551374848000,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170086385451008,550837977088,36170086385451008,551878131712,141288326299648,551878131712,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542122736910336,551643283456,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086284820608,550837944320,36170086284820480,551777501312,141288326332544,551777501184,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542123206672384,550837977088,9259542123206672384,551844577280,141288326299648,551844577280,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085345263616,551374848000,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123005378688,551643250688,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141289366519936,551374848000,141289366519808,551878164608,36170086284787712,551878164480,36170086284787712,551777468416,141288326299648,551777468416,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086150602880,550837944320,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141289332965504,551374848000,141289332965376,551844610176,9259542123139563520,551844610048,9259542123139563520,551777468416,141288326299648,551777468416,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123005378688,551643250688,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289383264256,551374815232,141289383264256,551894908928,9259542122200072320,551894908928,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085882167424,551374815232,36170085882167296,551374848128,141289265856640,551374848000,141289265856512,551777501312,36170086150569984,551777501184,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289332932608,551374815232,141289332932608,551844577280,36170086150602880,551844577280,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122736943232,550837944320,9259542122736943104,551374848128,141289265856640,551374848000,141289265856512,551777501312,9259542123005345792,551777501184,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289265823744,551374815232,141289265823744,551777468416,9259542123240259712,551777468416,9259542123240259584,551878164608,141288326332544,551878164480,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170086150569984,551643283456,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289265823744,551374815232,141289265823744,551777468416,36170085882167424,551777468416,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542123005345792,551643283456,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170086351929472,550837944320,36170086351929344,551844610176,141288326332544,551844610048,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542123257004032,550837977088,9259542123257004032,551894908928,141288326299648,551894908928,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085345263616,551374848000,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123139596416,551643250688,9259542123139596288,551777501312,141288326332544,551777501184,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170085882134528,551643283456,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122200039424,551374848000,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170086351896576,550837977088,36170086351896576,551844577280,141288326299648,551844577280,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542122736910336,551643283456,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086284820608,550837944320,36170086284820480,551777501312,141288326332544,551777501184,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141289383297152,551374848000,141289383297024,551894941824,9259542123139563520,551894941696,9259542123139563520,551777468416,141288326299648,551777468416,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123005378688,551643250688,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141289332965504,551374848000,141289332965376,551844610176,36170086284787712,551844610048,36170086284787712,551777468416,141288326299648,551777468416,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086150602880,550837944320,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141289265856640,551374848000,141289265856512,551777501312,9259542123005345792,551777501184,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542123005378688,551374815232,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289366487040,551374815232,141289366487040,551878131712,9259542122200072320,551878131712,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085882167424,551374815232,36170085882167296,551374848128,141289265856640,551374848000,141289265856512,551777501312,36170086150569984,551777501184,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289332932608,551374815232,141289332932608,551844577280,36170086150602880,551844577280,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542123005345792,551643283456,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170086402261120,550837944320,36170086402260992,551894941824,141288326332544,551894941696,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289265823744,551374815232,141289265823744,551777468416,9259542123206705280,551777468416,9259542123206705152,551844610176,141288326332544,551844610048,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170086150569984,551643283456,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289265823744,551374815232,141289265823744,551777468416,36170085882167424,551777468416,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542122736910336,551643283456,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086284820608,550837944320,36170086284820480,551777501312,141288326332544,551777501184,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542123240226816,550837977088,9259542123240226816,551878131712,141288326299648,551878131712,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085345263616,551374848000,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123139596416,551643250688,9259542123139596288,551777501312,141288326332544,551777501184,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170085882134528,551643283456,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122200039424,551374848000,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170086351896576,550837977088,36170086351896576,551844577280,141288326299648,551844577280,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086150602880,550837944320,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141289366519936,551374848000,141289366519808,551878164608,9259542123139563520,551878164480,9259542123139563520,551777468416,141288326299648,551777468416,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123005378688,551643250688,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141289332965504,551374848000,141289332965376,551844610176,36170086284787712,551844610048,36170086284787712,551777468416,141288326299648,551777468416,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289383264256,551374815232,141289383264256,551894908928,36170086150602880,551894908928,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122736943232,550837944320,9259542122736943104,551374848128,141289265856640,551374848000,141289265856512,551777501312,9259542123005345792,551777501184,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542123005378688,551374815232,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289332932608,551374815232,141289332932608,551844577280,9259542122200072320,551844577280,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085882167424,551374815232,36170085882167296,551374848128,141289265856640,551374848000,141289265856512,551777501312,36170086150569984,551777501184,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289265823744,551374815232,141289265823744,551777468416,36170085882167424,551777468416,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542123005345792,551643283456,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170086385483904,550837944320,36170086385483776,551878164608,141288326332544,551878164480,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289265823744,551374815232,141289265823744,551777468416,9259542123206705280,551777468416,9259542123206705152,551844610176,141288326332544,551844610048,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170086150569984,551643283456,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122200039424,551374848000,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141288326332544,551374848000,141288326332416,550837977216,36170086402228224,550837977088,36170086402228224,551894908928,141288326299648,551894908928,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141289131638912,550837977088,141289131638784,551643283584,9259542122736910336,551643283456,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086284820608,550837944320,36170086284820480,551777501312,141288326332544,551777501184,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141288326332544,551374848000,141288326332416,550837977216,9259542123206672384,550837977088,9259542123206672384,551844577280,141288326299648,551844577280,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085345263616,551374848000,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123139596416,551643250688,9259542123139596288,551777501312,141288326332544,551777501184,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141289131638912,550837977088,141289131638784,551643283584,36170085882134528,551643283456,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141289131606016,550837944320,141289131606016,551643250688,36170085882167424,551643250688,36170085882167296,551374848128,141289383297152,551374848000,141289383297024,551894941824,36170086284787712,551894941696,36170086284787712,551777468416,141288326299648,551777468416,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141288326299648,551374815232,141288326299648,550837944320,36170086150602880,550837944320,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542122736943232,551374815232,9259542122736943104,551374848128,141289332965504,551374848000,141289332965376,551844610176,9259542123139563520,551844610048,9259542123139563520,551777468416,141288326299648,551777468416,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141289131606016,550837944320,141289131606016,551643250688,9259542123005378688,551643250688,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085345296512,551374815232,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141288326299648,551374815232,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288326332544,550837977088,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288863170560,550837944320,141288863170560,551374815232,36170085882167424,551374815232,36170085882167296,551374848128,141289265856640,551374848000,141289265856512,551777501312,36170086150569984,551777501184,36170086150569984,551643250688,141288326299648,551643250688,141288326299648,550837944320,9259542122200072320,550837944320,9259542122200072192,550837977216,141288863203456,550837977088,141288863203328,551374848128,9259542122736910336,551374848000,9259542122736910336,551374815232,141289366487040,551374815232,141289366487040,551878131712,36170086150602880,551878131712,36170086150602752,551643283584,141288326332544,551643283456,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288326299648,550837944320,141288326299648,550837944320,9259542122736943232,550837944320,9259542122736943104,551374848128,141289265856640,551374848000,141289265856512,551777501312,9259542123005345792,551777501184,9259542123005345792,551643250688,141288326299648,551643250688,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288326332544,550837977088,141288326332416,550837977216,36170085345263616,550837977088,36170085345263616,550837944320,141288863170560,550837944320,141288863170560,551374815232,9259542123005378688,551374815232,9259542123005378560,551643283584,141288326332544,551643283456,141288326332416,550837977216,9259542122200039424,550837977088,9259542122200039424,550837944320,141288326299648,550837944320,141288326299648,550837944320,36170085345296512,550837944320,36170085345296384,550837977216,141288863203456,550837977088,141288863203328,551374848128,36170085882134528,551374848000,36170085882134528,551374815232,141289332932608,551374815232,141289332932608,551844577280,0],[72341259464802561,1159657947136,1365816442880,1159657947136,1125298208768,1108118405120,1125298208768,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,1108118339584,1365816442880,1108118339584,1640694349824,72340194312913153,1125298208768,1125298274304,1125298208768,72341259464736768,1108118405120,1365816377344,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1125298274304,1108118339584,1125298274304,72340228672651521,1365816377344,1159658012672,1640694284288,72340194312847360,1108118405120,1125298208768,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1159658012672,1108118339584,1159658012672,72340194312913153,1125298208768,1125298274304,1125298208768,72340228672585728,1108118405120,1159657947136,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1125298274304,1108118339584,1125298274304,72340297392128257,1159657947136,1228377489408,1159657947136,72340194312847360,1108118405120,1125298208768,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1228377489408,1108118339584,1228377489408,72340194312913153,1125298208768,1125298274304,1125298208768,72340297392062464,1108118405120,1228377423872,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1125298274304,1108118339584,1125298274304,72340228672651521,1228377423872,1159658012672,1228377423872,72340194312847360,1108118405120,1125298208768,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1159658012672,1108118339584,1159658012672,72340194312913153,1125298208768,1125298274304,1125298208768,72340228672585728,1108118405120,1159657947136,1108118405120,72340177133043969,1108118339584,1108118405120,1108118339584,72340177132978176,1125298274304,1108118339584,1125298274304,72340434831081729,1159657947136,72341259464802560,1159657947136,72340194312847360,1108118405120,1125298208768,1108118405120,72340177133043969,1108118339584,72340177133043968,1108118339584,72340177132978176,283665426874625,1108118339584,1365816442880,72340194312913153,1125298208768,72340194312913152,1125298208768,72340434831015936,282583095116033,72341259464736768,1108118405120,72340177133043969,1108118339584,72340177133043968,1108118339584,72340177132978176,282600274985217,72340177132978176,1125298274304,72340228672651521,283665426808832,72340228672651520,1365816377344,72340194312847360,282583095116033,72340194312847360,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282634634723585,72340177132978176,1159658012672,72340194312913153,282600274919424,72340194312913152,1125298208768,72340228672585728,282583095116033,72340228672585728,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282600274985217,72340177132978176,1125298274304,72340297392128257,282634634657792,72340297392128256,1159657947136,72340194312847360,282583095116033,72340194312847360,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282703354200321,72340177132978176,1228377489408,72340194312913153,282600274919424,72340194312913152,1125298208768,72340297392062464,282583095116033,72340297392062464,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282600274985217,72340177132978176,1125298274304,72340228672651521,282703354134528,72340228672651520,1228377423872,72340194312847360,282583095116033,72340194312847360,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282634634723585,72340177132978176,1159658012672,72340194312913153,282600274919424,72340194312913152,1125298208768,72340228672585728,282583095116033,72340228672585728,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282600274985217,72340177132978176,1125298274304,72340709708988673,282634634657792,72340434831081728,1159657947136,72340194312847360,282583095116033,72340194312847360,1108118405120,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282840793153793,72340177132978176,283665426874624,72340194312913153,282600274919424,72340194312913152,1125298208768,72340709708922880,282583095116033,72340434831015936,282583095116032,72340177133043969,282583095050240,72340177133043968,1108118339584,72340177132978176,282600274985217,72340177132978176,282600274985216,72340228672651521,282840793088000,72340228672651520,283665426808832,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282634634723585,72340177132978176,282634634723584,72340194312913153,282600274919424,72340194312913152,282600274919424,72340228672585728,282583095116033,72340228672585728,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340297392128257,282634634657792,72340297392128256,282634634657792,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282703354200321,72340177132978176,282703354200320,72340194312913153,282600274919424,72340194312913152,282600274919424,72340297392062464,282583095116033,72340297392062464,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340228672651521,282703354134528,72340228672651520,282703354134528,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282634634723585,72340177132978176,282634634723584,72340194312913153,282600274919424,72340194312913152,282600274919424,72340228672585728,282583095116033,72340228672585728,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340434831081729,282634634657792,72340709708988672,282634634657792,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,283115671060737,72340177132978176,282840793153792,72340194312913153,282600274919424,72340194312913152,282600274919424,72340434831015936,282583095116033,72340709708922880,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340228672651521,283115670994944,72340228672651520,282840793088000,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282634634723585,72340177132978176,282634634723584,72340194312913153,282600274919424,72340194312913152,282600274919424,72340228672585728,282583095116033,72340228672585728,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340297392128257,282634634657792,72340297392128256,282634634657792,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282703354200321,72340177132978176,282703354200320,72340194312913153,282600274919424,72340194312913152,282600274919424,72340297392062464,282583095116033,72340297392062464,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340228672651521,282703354134528,72340228672651520,282703354134528,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282634634723585,72340177132978176,282634634723584,72340194312913153,282600274919424,72340194312913152,282600274919424,72340228672585728,282583095116033,72340228672585728,282583095116032,72340177133043969,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72341259464802304,282634634657792,72340434831081728,282634634657792,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282840793153793,72340177132978176,283115671060736,72340194312912896,282600274919424,72340194312913152,282600274919424,72341259464736768,282583095116033,72340434831015936,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340228672651264,282840793088000,72340228672651520,283115670994944,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282634634723585,72340177132978176,282634634723584,72340194312912896,282600274919424,72340194312913152,282600274919424,72340228672585728,282583095116033,72340228672585728,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340297392128000,282634634657792,72340297392128256,282634634657792,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282703354200321,72340177132978176,282703354200320,72340194312912896,282600274919424,72340194312913152,282600274919424,72340297392062464,282583095116033,72340297392062464,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340228672651264,282703354134528,72340228672651520,282703354134528,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282634634723585,72340177132978176,282634634723584,72340194312912896,282600274919424,72340194312913152,282600274919424,72340228672585728,282583095116033,72340228672585728,282583095116032,72340177133043712,282583095050240,72340177133043968,282583095050240,72340177132978176,282600274985217,72340177132978176,282600274985216,72340434831081472,282634634657792,72341259464802304,282634634657792,72340194312847360,282583095116033,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,283665426874368,72340177132978176,282840793153792,72340194312912896,282600274919424,72340194312912896,282600274919424,72340434831015936,282583095115776,72341259464736768,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274985216,72340228672651264,283665426808832,72340228672651264,282840793088000,72340194312847360,282583095115776,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282634634723328,72340177132978176,282634634723584,72340194312912896,282600274919424,72340194312912896,282600274919424,72340228672585728,282583095115776,72340228672585728,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274985216,72340297392128000,282634634657792,72340297392128000,282634634657792,72340194312847360,282583095115776,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282703354200064,72340177132978176,282703354200320,72340194312912896,282600274919424,72340194312912896,282600274919424,72340297392062464,282583095115776,72340297392062464,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274985216,72340228672651264,282703354134528,72340228672651264,282703354134528,72340194312847360,282583095115776,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282634634723328,72340177132978176,282634634723584,72340194312912896,282600274919424,72340194312912896,282600274919424,72340228672585728,282583095115776,72340228672585728,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274985216,72340709708988416,282634634657792,72340434831081472,282634634657792,72340194312847360,282583095115776,72340194312847360,282583095116032,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282840793153536,72340177132978176,283665426874368,72340194312912896,282600274919424,72340194312912896,282600274919424,72340709708922880,282583095115776,72340434831015936,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340228672651264,282840793088000,72340228672651264,283665426808832,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282634634723328,72340177132978176,282634634723328,72340194312912896,282600274919424,72340194312912896,282600274919424,72340228672585728,282583095115776,72340228672585728,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340297392128000,282634634657792,72340297392128000,282634634657792,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282703354200064,72340177132978176,282703354200064,72340194312912896,282600274919424,72340194312912896,282600274919424,72340297392062464,282583095115776,72340297392062464,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340228672651264,282703354134528,72340228672651264,282703354134528,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282634634723328,72340177132978176,282634634723328,72340194312912896,282600274919424,72340194312912896,282600274919424,72340228672585728,282583095115776,72340228672585728,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340434831081472,282634634657792,72340709708988416,282634634657792,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,283115671060480,72340177132978176,282840793153536,72340194312912896,282600274919424,72340194312912896,282600274919424,72340434831015936,282583095115776,72340709708922880,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340228672651264,283115670994944,72340228672651264,282840793088000,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282634634723328,72340177132978176,282634634723328,72340194312912896,282600274919424,72340194312912896,282600274919424,72340228672585728,282583095115776,72340228672585728,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340297392128000,282634634657792,72340297392128000,282634634657792,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282703354200064,72340177132978176,282703354200064,72340194312912896,282600274919424,72340194312912896,282600274919424,72340297392062464,282583095115776,72340297392062464,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,72340228672651264,282703354134528,72340228672651264,282703354134528,72340194312847360,282583095115776,72340194312847360,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282634634723328,72340177132978176,282634634723328,72340194312912896,282600274919424,72340194312912896,282600274919424,72340228672585728,282583095115776,72340228672585728,282583095115776,72340177133043712,282583095050240,72340177133043712,282583095050240,72340177132978176,282600274984960,72340177132978176,282600274984960,2190450163969,282634634657792,72340434831081472,282634634657792,72340194312847360,282583095115776,72340194312847360,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,72340177132978176,282840793153536,72340177132978176,283115671060480,1125298274561,282600274919424,72340194312912896,282600274919424,2190450098176,282583095115776,72340434831015936,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282600274984960,72340177132978176,282600274984960,1159658012929,282840793088000,72340228672651264,283115670994944,1125298208768,282583095115776,72340194312847360,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282634634723328,72340177132978176,282634634723328,1125298274561,282600274919424,72340194312912896,282600274919424,1159657947136,282583095115776,72340228672585728,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282600274984960,72340177132978176,282600274984960,1228377489665,282634634657792,72340297392128000,282634634657792,1125298208768,282583095115776,72340194312847360,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282703354200064,72340177132978176,282703354200064,1125298274561,282600274919424,72340194312912896,282600274919424,1228377423872,282583095115776,72340297392062464,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282600274984960,72340177132978176,282600274984960,1159658012929,282703354134528,72340228672651264,282703354134528,1125298208768,282583095115776,72340194312847360,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282634634723328,72340177132978176,282634634723328,1125298274561,282600274919424,72340194312912896,282600274919424,1159657947136,282583095115776,72340228672585728,282583095115776,1108118405377,282583095050240,72340177133043712,282583095050240,1108118339584,282600274984960,72340177132978176,282600274984960,1365816443137,282634634657792,2190450163968,282634634657792,1125298208768,282583095115776,72340194312847360,282583095115776,1108118405377,282583095050240,1108118405376,282583095050240,1108118339584,2190450163969,72340177132978176,282840793153536,1125298274561,282600274919424,1125298274560,282600274919424,1365816377344,1108118405377,2190450098176,282583095115776,1108118405377,282583095050240,1108118405376,282583095050240,1108118339584,1125298274561,1108118339584,282600274984960,1159658012929,2190450098176,1159658012928,282840793088000,1125298208768,1108118405377,1125298208768,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1159658012929,1108118339584,282634634723328,1125298274561,1125298208768,1125298274560,282600274919424,1159657947136,1108118405377,1159657947136,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1125298274561,1108118339584,282600274984960,1228377489665,1159657947136,1228377489664,282634634657792,1125298208768,1108118405377,1125298208768,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1228377489665,1108118339584,282703354200064,1125298274561,1125298208768,1125298274560,282600274919424,1228377423872,1108118405377,1228377423872,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1125298274561,1108118339584,282600274984960,1159658012929,1228377423872,1159658012928,282703354134528,1125298208768,1108118405377,1125298208768,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1159658012929,1108118339584,282634634723328,1125298274561,1125298208768,1125298274560,282600274919424,1159657947136,1108118405377,1159657947136,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1125298274561,1108118339584,282600274984960,1640694350081,1159657947136,1365816443136,282634634657792,1125298208768,1108118405377,1125298208768,282583095115776,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1365816443137,1108118339584,2190450163968,1125298274561,1125298208768,1125298274560,282600274919424,1640694284288,1108118405377,1365816377344,1108118405376,1108118405377,1108118339584,1108118405376,282583095050240,1108118339584,1125298274561,1108118339584,1125298274560,1159658012929,1365816377344,1159658012928,2190450098176,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1159658012929,1108118339584,1159658012928,1125298274561,1125298208768,1125298274560,1125298208768,1159657947136,1108118405377,1159657947136,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1228377489665,1159657947136,1228377489664,1159657947136,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1228377489665,1108118339584,1228377489664,1125298274561,1125298208768,1125298274560,1125298208768,1228377423872,1108118405377,1228377423872,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1159658012929,1228377423872,1159658012928,1228377423872,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1159658012929,1108118339584,1159658012928,1125298274561,1125298208768,1125298274560,1125298208768,1159657947136,1108118405377,1159657947136,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1365816443137,1159657947136,1640694350080,1159657947136,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1640694350081,1108118339584,1365816443136,1125298274561,1125298208768,1125298274560,1125298208768,1365816377344,1108118405377,1640694284288,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1159658012929,1640694284288,1159658012928,1365816377344,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1159658012929,1108118339584,1159658012928,1125298274561,1125298208768,1125298274560,1125298208768,1159657947136,1108118405377,1159657947136,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1228377489665,1159657947136,1228377489664,1159657947136,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1228377489665,1108118339584,1228377489664,1125298274561,1125298208768,1125298274560,1125298208768,1228377423872,1108118405377,1228377423872,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1159658012929,1228377423872,1159658012928,1228377423872,1125298208768,1108118405377,1125298208768,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1159658012929,1108118339584,1159658012928,1125298274561,1125298208768,1125298274560,1125298208768,1159657947136,1108118405377,1159657947136,1108118405376,1108118405377,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,2190450163712,1159657947136,1365816443136,1159657947136,1125298208768,1108118405377,1125298208768,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1365816443137,1108118339584,1640694350080,1125298274304,1125298208768,1125298274560,1125298208768,2190450098176,1108118405377,1365816377344,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1159658012672,1365816377344,1159658012928,1640694284288,1125298208768,1108118405377,1125298208768,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1159658012929,1108118339584,1159658012928,1125298274304,1125298208768,1125298274560,1125298208768,1159657947136,1108118405377,1159657947136,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1228377489408,1159657947136,1228377489664,1159657947136,1125298208768,1108118405377,1125298208768,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1228377489665,1108118339584,1228377489664,1125298274304,1125298208768,1125298274560,1125298208768,1228377423872,1108118405377,1228377423872,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1159658012672,1228377423872,1159658012928,1228377423872,1125298208768,1108118405377,1125298208768,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1159658012929,1108118339584,1159658012928,1125298274304,1125298208768,1125298274560,1125298208768,1159657947136,1108118405377,1159657947136,1108118405376,1108118405120,1108118339584,1108118405376,1108118339584,1108118339584,1125298274561,1108118339584,1125298274560,1365816442880,1159657947136,2190450163712,1159657947136,1125298208768,1108118405377,1125298208768,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,2190450163712,1108118339584,1365816443136,1125298274304,1125298208768,1125298274304,1125298208768,1365816377344,1108118405120,2190450098176,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274560,1159658012672,2190450098176,1159658012672,1365816377344,1125298208768,1108118405120,1125298208768,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1159658012672,1108118339584,1159658012928,1125298274304,1125298208768,1125298274304,1125298208768,1159657947136,1108118405120,1159657947136,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274560,1228377489408,1159657947136,1228377489408,1159657947136,1125298208768,1108118405120,1125298208768,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1228377489408,1108118339584,1228377489664,1125298274304,1125298208768,1125298274304,1125298208768,1228377423872,1108118405120,1228377423872,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274560,1159658012672,1228377423872,1159658012672,1228377423872,1125298208768,1108118405120,1125298208768,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1159658012672,1108118339584,1159658012928,1125298274304,1125298208768,1125298274304,1125298208768,1159657947136,1108118405120,1159657947136,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274560,1640694349824,1159657947136,1365816442880,1159657947136,1125298208768,1108118405120,1125298208768,1108118405376,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1365816442880,1108118339584,2190450163712,1125298274304,1125298208768,1125298274304,1125298208768,1640694284288,1108118405120,1365816377344,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1159658012672,1365816377344,1159658012672,2190450098176,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1159658012672,1108118339584,1159658012672,1125298274304,1125298208768,1125298274304,1125298208768,1159657947136,1108118405120,1159657947136,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1228377489408,1159657947136,1228377489408,1159657947136,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1228377489408,1108118339584,1228377489408,1125298274304,1125298208768,1125298274304,1125298208768,1228377423872,1108118405120,1228377423872,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1159658012672,1228377423872,1159658012672,1228377423872,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1159658012672,1108118339584,1159658012672,1125298274304,1125298208768,1125298274304,1125298208768,1159657947136,1108118405120,1159657947136,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1365816442880,1159657947136,1640694349824,1159657947136,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1640694349824,1108118339584,1365816442880,1125298274304,1125298208768,1125298274304,1125298208768,1365816377344,1108118405120,1640694284288,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1159658012672,1640694284288,1159658012672,1365816377344,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1159658012672,1108118339584,1159658012672,1125298274304,1125298208768,1125298274304,1125298208768,1159657947136,1108118405120,1159657947136,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1228377489408,1159657947136,1228377489408,1159657947136,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1228377489408,1108118339584,1228377489408,1125298274304,1125298208768,1125298274304,1125298208768,1228377423872,1108118405120,1228377423872,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,1159658012672,1228377423872,1159658012672,1228377423872,1125298208768,1108118405120,1125298208768,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1159658012672,1108118339584,1159658012672,1125298274304,1125298208768,1125298274304,1125298208768,1159657947136,1108118405120,1159657947136,1108118405120,1108118405120,1108118339584,1108118405120,1108118339584,1108118339584,1125298274304,1108118339584,1125298274304,0],[144681423712944642,144681423712944128,566235637088770,566235637088256,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2323610993154,2323610992640,2323610993154,2323610992640,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680599079223810,144680599079223296,565411003367938,565411003367424,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2323610993154,2323610992640,2323610993154,2323610992640,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680873957130754,144680873957130240,565685881274882,565685881274368,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2323610993154,2323610992640,2323610993154,2323610992640,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680599079223810,144680599079223296,565411003367938,565411003367424,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2323610993154,2323610992640,2323610993154,2323610992640,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144681423712944640,144681423712944128,566235637088768,566235637088256,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2323610993152,2323610992640,2323610993152,2323610992640,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680599079223808,144680599079223296,565411003367936,565411003367424,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2323610993152,2323610992640,2323610993152,2323610992640,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680873957130752,144680873957130240,565685881274880,565685881274368,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2323610993152,2323610992640,2323610993152,2323610992640,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680599079223808,144680599079223296,565411003367936,565411003367424,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2323610993152,2323610992640,2323610993152,2323610992640,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144681423712813056,144681423712813056,566235636957184,566235636957184,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2323610861568,2323610861568,2323610861568,2323610861568,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680599079092224,144680599079092224,565411003236352,565411003236352,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2323610861568,2323610861568,2323610861568,2323610861568,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680873956999168,144680873956999168,565685881143296,565685881143296,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2323610861568,2323610861568,2323610861568,2323610861568,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680599079092224,144680599079092224,565411003236352,565411003236352,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2323610861568,2323610861568,2323610861568,2323610861568,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144681423712813056,144681423712813056,566235636957184,566235636957184,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2323610861568,2323610861568,2323610861568,2323610861568,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680599079092224,144680599079092224,565411003236352,565411003236352,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2323610861568,2323610861568,2323610861568,2323610861568,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680873956999168,144680873956999168,565685881143296,565685881143296,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2323610861568,2323610861568,2323610861568,2323610861568,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680599079092224,144680599079092224,565411003236352,565411003236352,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2323610861568,2323610861568,2323610861568,2323610861568,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,3285683667458,3285683666944,3285683667458,3285683666944,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680461640270338,144680461640269824,565273564414466,565273564413952,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2461049946626,2461049946112,2461049946626,2461049946112,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680461640270338,144680461640269824,565273564414466,565273564413952,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2735927853570,2735927853056,2735927853570,2735927853056,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680461640270338,144680461640269824,565273564414466,565273564413952,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,2461049946626,2461049946112,2461049946626,2461049946112,144680358561055232,144680358561054720,565170485199360,565170485198848,2254891384832,2254891384832,2254891384832,2254891384832,144680358560923648,144680358560923648,565170485067776,565170485067776,144680461640270338,144680461640269824,565273564414466,565273564413952,2220531778048,2220531777536,2220531778048,2220531777536,144680392920662016,144680392920662016,565204844806144,565204844806144,2220531646464,2220531646464,2220531646464,2220531646464,3285683667456,3285683666944,3285683667456,3285683666944,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680461640270336,144680461640269824,565273564414464,565273564413952,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2461049946624,2461049946112,2461049946624,2461049946112,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680461640270336,144680461640269824,565273564414464,565273564413952,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2735927853568,2735927853056,2735927853568,2735927853056,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680461640270336,144680461640269824,565273564414464,565273564413952,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,2461049946624,2461049946112,2461049946624,2461049946112,144680358560923648,144680358560923648,565170485067776,565170485067776,2254891384832,2254891384832,2254891384832,2254891384832,2220531778050,2220531777536,2220531778050,2220531777536,144680461640270336,144680461640269824,565273564414464,565273564413952,2220531646464,2220531646464,2220531646464,2220531646464,144680392920662016,144680392920662016,565204844806144,565204844806144,144680358561055234,144680358561054720,565170485199362,565170485198848,3285683535872,3285683535872,3285683535872,3285683535872,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680461640138752,144680461640138752,565273564282880,565273564282880,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2461049815040,2461049815040,2461049815040,2461049815040,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680461640138752,144680461640138752,565273564282880,565273564282880,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2735927721984,2735927721984,2735927721984,2735927721984,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680461640138752,144680461640138752,565273564282880,565273564282880,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,2461049815040,2461049815040,2461049815040,2461049815040,144680358560923648,144680358560923648,565170485067776,565170485067776,144680392920793602,144680392920793088,565204844937730,565204844937216,2220531778048,2220531777536,2220531778048,2220531777536,144680461640138752,144680461640138752,565273564282880,565273564282880,2220531646464,2220531646464,2220531646464,2220531646464,2254891516418,2254891515904,2254891516418,2254891515904,144680358561055232,144680358561054720,565170485199360,565170485198848,3285683535872,3285683535872,3285683535872,3285683535872,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680461640138752,144680461640138752,565273564282880,565273564282880,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2461049815040,2461049815040,2461049815040,2461049815040,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680461640138752,144680461640138752,565273564282880,565273564282880,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2735927721984,2735927721984,2735927721984,2735927721984,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680461640138752,144680461640138752,565273564282880,565273564282880,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,2461049815040,2461049815040,2461049815040,2461049815040,2220531778050,2220531777536,2220531778050,2220531777536,144680392920793600,144680392920793088,565204844937728,565204844937216,2220531646464,2220531646464,2220531646464,2220531646464,144680461640138752,144680461640138752,565273564282880,565273564282880,144680358561055234,144680358561054720,565170485199362,565170485198848,2254891516416,2254891515904,2254891516416,2254891515904,144680358560923648,144680358560923648,565170485067776,565170485067776,0],[289361752209228804,1130340970397696,1130345265102848,1130345265102848,5476150674436,4441063555072,4445358260224,4445358260224,289360927575506944,289361752209228800,1130340970135552,1130345265102848,4651516952576,5476150674432,4441063292928,4445358260224,289360923280540676,289360927575506944,1130340970135552,1130340970135552,4647221986308,4651516952576,4441063292928,4441063292928,289361198158446592,289360923280540672,289361752208965632,1130340970135552,4922099892224,4647221986304,5476150411264,4441063292928,1131376057517060,289361198158446592,289360927575244800,289361752208965632,5476150674436,4922099892224,4651516690432,5476150411264,1130551423795200,1131376057517056,289360923280277504,289360927575244800,4651516952576,5476150674432,4647221723136,4651516690432,1130547128828932,1130551423795200,289361198158184448,289360923280277504,4647221986308,4651516952576,4922099630080,4647221723136,1130822006734848,1130547128828928,1131376057253888,289361198158184448,4922099892224,4647221986304,5476150411264,4922099630080,289360721417077764,1130822006734848,1130551423533056,1131376057253888,4445358523396,4922099892224,4651516690432,5476150411264,289360721417076736,289360721417077760,1130547128565760,1130551423533056,4445358522368,4445358523392,4647221723136,4651516690432,289360717122110468,289360721417076736,1130822006472704,1130547128565760,4441063556100,4445358522368,4922099630080,4647221723136,289360717122109440,289360717122110464,289360721416814592,1130822006472704,4441063555072,4441063556096,4445358260224,4922099630080,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289360790136554500,1130340970397696,1130345265102848,1130345265102848,4514078000132,4441063555072,4445358260224,4445358260224,289360790136553472,289360790136554496,1130340970135552,1130345265102848,4514077999104,4514078000128,4441063292928,4445358260224,289360785841587204,289360790136553472,1130340970135552,1130340970135552,4509783032836,4514077999104,4441063292928,4441063292928,289360785841586176,289360785841587200,289360790136291328,1130340970135552,4509783031808,4509783032832,4514077736960,4441063292928,1130413984842756,289360785841586176,289360790136291328,289360790136291328,4514078000132,4509783031808,4514077736960,4514077736960,1130413984841728,1130413984842752,289360785841324032,289360790136291328,4514077999104,4514078000128,4509782769664,4514077736960,1130409689875460,1130413984841728,289360785841324032,289360785841324032,4509783032836,4514077999104,4509782769664,4509782769664,1130409689874432,1130409689875456,1130413984579584,289360785841324032,4509783031808,4509783032832,4514077736960,4509782769664,289360721417077764,1130409689874432,1130413984579584,1130413984579584,4445358523396,4509783031808,4514077736960,4514077736960,289360721417076736,289360721417077760,1130409689612288,1130413984579584,4445358522368,4445358523392,4509782769664,4514077736960,289360717122110468,289360721417076736,1130409689612288,1130409689612288,4441063556100,4445358522368,4509782769664,4509782769664,289360717122109440,289360717122110464,289360721416814592,1130409689612288,4441063555072,4441063556096,4445358260224,4509782769664,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289360927575507972,1130340970397696,1130345265102848,1130345265102848,4651516953604,4441063555072,4445358260224,4445358260224,289361752209227776,289360927575507968,1130340970135552,1130345265102848,5476150673408,4651516953600,4441063292928,4445358260224,289361747914261508,289361752209227776,1130340970135552,1130340970135552,5471855707140,5476150673408,4441063292928,4441063292928,289360923280539648,289361747914261504,289360927575244800,1130340970135552,4647221985280,5471855707136,4651516690432,4441063292928,1130551423796228,289360923280539648,289361752208965632,289360927575244800,4651516953604,4647221985280,5476150411264,4651516690432,1131376057516032,1130551423796224,289361747913998336,289361752208965632,5476150673408,4651516953600,5471855443968,5476150411264,1131371762549764,1131376057516032,289360923280277504,289361747913998336,5471855707140,5476150673408,4647221723136,5471855443968,1130547128827904,1131371762549760,1130551423533056,289360923280277504,4647221985280,5471855707136,4651516690432,4647221723136,289360721417077764,1130547128827904,1131376057253888,1130551423533056,4445358523396,4647221985280,5476150411264,4651516690432,289360721417076736,289360721417077760,1131371762286592,1131376057253888,4445358522368,4445358523392,5471855443968,5476150411264,289360717122110468,289360721417076736,1130547128565760,1131371762286592,4441063556100,4445358522368,4647221723136,5471855443968,289360717122109440,289360717122110464,289360721416814592,1130547128565760,4441063555072,4441063556096,4445358260224,4647221723136,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289360790136554500,1130340970397696,1130345265102848,1130345265102848,4514078000132,4441063555072,4445358260224,4445358260224,289360790136553472,289360790136554496,1130340970135552,1130345265102848,4514077999104,4514078000128,4441063292928,4445358260224,289360785841587204,289360790136553472,1130340970135552,1130340970135552,4509783032836,4514077999104,4441063292928,4441063292928,289360785841586176,289360785841587200,289360790136291328,1130340970135552,4509783031808,4509783032832,4514077736960,4441063292928,1130413984842756,289360785841586176,289360790136291328,289360790136291328,4514078000132,4509783031808,4514077736960,4514077736960,1130413984841728,1130413984842752,289360785841324032,289360790136291328,4514077999104,4514078000128,4509782769664,4514077736960,1130409689875460,1130413984841728,289360785841324032,289360785841324032,4509783032836,4514077999104,4509782769664,4509782769664,1130409689874432,1130409689875456,1130413984579584,289360785841324032,4509783031808,4509783032832,4514077736960,4509782769664,289360721417077764,1130409689874432,1130413984579584,1130413984579584,4445358523396,4509783031808,4514077736960,4514077736960,289360721417076736,289360721417077760,1130409689612288,1130413984579584,4445358522368,4445358523392,4509782769664,4514077736960,289360717122110468,289360721417076736,1130409689612288,1130409689612288,4441063556100,4445358522368,4509782769664,4509782769664,289360717122109440,289360717122110464,289360721416814592,1130409689612288,4441063555072,4441063556096,4445358260224,4509782769664,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289361202453414916,1130340970397696,1130345265102848,1130345265102848,4926394860548,4441063555072,4445358260224,4445358260224,289360927575506944,289361202453414912,1130340970135552,1130345265102848,4651516952576,4926394860544,4441063292928,4445358260224,289360923280540676,289360927575506944,1130340970135552,1130340970135552,4647221986308,4651516952576,4441063292928,4441063292928,289361747914260480,289360923280540672,289361202453151744,1130340970135552,5471855706112,4647221986304,4926394597376,4441063292928,1130826301703172,289361747914260480,289360927575244800,289361202453151744,4926394860548,5471855706112,4651516690432,4926394597376,1130551423795200,1130826301703168,289360923280277504,289360927575244800,4651516952576,4926394860544,4647221723136,4651516690432,1130547128828932,1130551423795200,289361747913998336,289360923280277504,4647221986308,4651516952576,5471855443968,4647221723136,1131371762548736,1130547128828928,1130826301440000,289361747913998336,5471855706112,4647221986304,4926394597376,5471855443968,289360721417077764,1131371762548736,1130551423533056,1130826301440000,4445358523396,5471855706112,4651516690432,4926394597376,289360721417076736,289360721417077760,1130547128565760,1130551423533056,4445358522368,4445358523392,4647221723136,4651516690432,289360717122110468,289360721417076736,1131371762286592,1130547128565760,4441063556100,4445358522368,5471855443968,4647221723136,289360717122109440,289360717122110464,289360721416814592,1131371762286592,4441063555072,4441063556096,4445358260224,5471855443968,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289360790136554500,1130340970397696,1130345265102848,1130345265102848,4514078000132,4441063555072,4445358260224,4445358260224,289360790136553472,289360790136554496,1130340970135552,1130345265102848,4514077999104,4514078000128,4441063292928,4445358260224,289360785841587204,289360790136553472,1130340970135552,1130340970135552,4509783032836,4514077999104,4441063292928,4441063292928,289360785841586176,289360785841587200,289360790136291328,1130340970135552,4509783031808,4509783032832,4514077736960,4441063292928,1130413984842756,289360785841586176,289360790136291328,289360790136291328,4514078000132,4509783031808,4514077736960,4514077736960,1130413984841728,1130413984842752,289360785841324032,289360790136291328,4514077999104,4514078000128,4509782769664,4514077736960,1130409689875460,1130413984841728,289360785841324032,289360785841324032,4509783032836,4514077999104,4509782769664,4509782769664,1130409689874432,1130409689875456,1130413984579584,289360785841324032,4509783031808,4509783032832,4514077736960,4509782769664,289360721417077764,1130409689874432,1130413984579584,1130413984579584,4445358523396,4509783031808,4514077736960,4514077736960,289360721417076736,289360721417077760,1130409689612288,1130413984579584,4445358522368,4445358523392,4509782769664,4514077736960,289360717122110468,289360721417076736,1130409689612288,1130409689612288,4441063556100,4445358522368,4509782769664,4509782769664,289360717122109440,289360717122110464,289360721416814592,1130409689612288,4441063555072,4441063556096,4445358260224,4509782769664,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289360927575507972,1130340970397696,1130345265102848,1130345265102848,4651516953604,4441063555072,4445358260224,4445358260224,289361202453413888,289360927575507968,1130340970135552,1130345265102848,4926394859520,4651516953600,4441063292928,4445358260224,289361198158447620,289361202453413888,1130340970135552,1130340970135552,4922099893252,4926394859520,4441063292928,4441063292928,289360923280539648,289361198158447616,289360927575244800,1130340970135552,4647221985280,4922099893248,4651516690432,4441063292928,1130551423796228,289360923280539648,289361202453151744,289360927575244800,4651516953604,4647221985280,4926394597376,4651516690432,1130826301702144,1130551423796224,289361198158184448,289361202453151744,4926394859520,4651516953600,4922099630080,4926394597376,1130822006735876,1130826301702144,289360923280277504,289361198158184448,4922099893252,4926394859520,4647221723136,4922099630080,1130547128827904,1130822006735872,1130551423533056,289360923280277504,4647221985280,4922099893248,4651516690432,4647221723136,289360721417077764,1130547128827904,1130826301440000,1130551423533056,4445358523396,4647221985280,4926394597376,4651516690432,289360721417076736,289360721417077760,1130822006472704,1130826301440000,4445358522368,4445358523392,4922099630080,4926394597376,289360717122110468,289360721417076736,1130547128565760,1130822006472704,4441063556100,4445358522368,4647221723136,4922099630080,289360717122109440,289360717122110464,289360721416814592,1130547128565760,4441063555072,4441063556096,4445358260224,4647221723136,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,289360790136554500,1130340970397696,1130345265102848,1130345265102848,4514078000132,4441063555072,4445358260224,4445358260224,289360790136553472,289360790136554496,1130340970135552,1130345265102848,4514077999104,4514078000128,4441063292928,4445358260224,289360785841587204,289360790136553472,1130340970135552,1130340970135552,4509783032836,4514077999104,4441063292928,4441063292928,289360785841586176,289360785841587200,289360790136291328,1130340970135552,4509783031808,4509783032832,4514077736960,4441063292928,1130413984842756,289360785841586176,289360790136291328,289360790136291328,4514078000132,4509783031808,4514077736960,4514077736960,1130413984841728,1130413984842752,289360785841324032,289360790136291328,4514077999104,4514078000128,4509782769664,4514077736960,1130409689875460,1130413984841728,289360785841324032,289360785841324032,4509783032836,4514077999104,4509782769664,4509782769664,1130409689874432,1130409689875456,1130413984579584,289360785841324032,4509783031808,4509783032832,4514077736960,4509782769664,289360721417077764,1130409689874432,1130413984579584,1130413984579584,4445358523396,4509783031808,4514077736960,4514077736960,289360721417076736,289360721417077760,1130409689612288,1130413984579584,4445358522368,4445358523392,4509782769664,4514077736960,289360717122110468,289360721417076736,1130409689612288,1130409689612288,4441063556100,4445358522368,4509782769664,4509782769664,289360717122109440,289360717122110464,289360721416814592,1130409689612288,4441063555072,4441063556096,4445358260224,4509782769664,1130345265366020,289360717122109440,289360721416814592,289360721416814592,4445358523396,4441063555072,4445358260224,4445358260224,1130345265364992,1130345265366016,289360717121847296,289360721416814592,4445358522368,4445358523392,4441063292928,4445358260224,1130340970398724,1130345265364992,289360717121847296,289360717121847296,4441063556100,4445358522368,4441063292928,4441063292928,1130340970397696,1130340970398720,1130345265102848,289360717121847296,4441063555072,4441063556096,4445358260224,4441063292928,0],[578722409201797128,578722409201270784,9857084688392,9857084162048,2261107142559752,2261107142033408,9307328874504,9307328348160,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721442834155520,578721442833629184,8890717046784,8890716520448,2260690530732032,2260690530205696,8890717046784,8890716520448,578721580273106944,578721580272582656,9028155998208,9028155473920,2260827969683456,2260827969159168,9028155998208,9028155473920,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721571683174400,578721571682648064,9019566065664,9019565539328,2260819379750912,2260819379224576,9019566065664,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578722409201797120,578722409201270784,9857084688384,9857084162048,2261107142559744,2261107142033408,9307328874496,9307328348160,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578722404906829832,578722404906303488,9852789721096,9852789194752,2261102847592456,2261102847066112,9303033907208,9303033380864,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721447129122824,578721447128596480,8895012014088,8895011487744,2260694825699336,2260694825172992,8895012014088,8895011487744,578722409201795072,578722409201270784,9857084686336,9857084162048,2261107142557696,2261107142033408,9307328872448,9307328348160,578722404906829824,578722404906303488,9852789721088,9852789194752,2261102847592448,2261102847066112,9303033907200,9303033380864,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578722396316895240,578722396316368896,9844199786504,9844199260160,2261094257657864,2261094257131520,9294443972616,9294443446272,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721447129122816,578721447128596480,8895012014080,8895011487744,2260694825699328,2260694825172992,8895012014080,8895011487744,578722409201795072,578722409201270784,9857084686336,9857084162048,2261107142557696,2261107142033408,9307328872448,9307328348160,578721442834155528,578721442833629184,8890717046792,8890716520448,2260690530732040,2260690530205696,8890717046792,8890716520448,578722404906827776,578722404906303488,9852789719040,9852789194752,2261102847590400,2261102847066112,9303033905152,9303033380864,578722396316895232,578722396316368896,9844199786496,9844199260160,2261094257657856,2261094257131520,9294443972608,9294443446272,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578722396316895240,578722396316368896,9844199786504,9844199260160,2261094257657864,2261094257131520,9294443972616,9294443446272,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721584568076296,578721584567549952,9032450967560,9032450441216,2260832264652808,2260832264126464,9032450967560,9032450441216,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721442834155520,578721442833629184,8890717046784,8890716520448,2260690530732032,2260690530205696,8890717046784,8890716520448,578722404906827776,578722404906303488,9852789719040,9852789194752,2261102847590400,2261102847066112,9303033905152,9303033380864,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578722396316893184,578722396316368896,9844199784448,9844199260160,2261094257655808,2261094257131520,9294443970560,9294443446272,578722396316895232,578722396316368896,9844199786496,9844199260160,2261094257657856,2261094257131520,9294443972608,9294443446272,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721584568076288,578721584567549952,9032450967552,9032450441216,2260832264652800,2260832264126464,9032450967552,9032450441216,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721580273109000,578721580272582656,9028156000264,9028155473920,2260827969685512,2260827969159168,9028156000264,9028155473920,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578722396316893184,578722396316368896,9844199784448,9844199260160,2261094257655808,2261094257131520,9294443970560,9294443446272,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578722396316893184,578722396316368896,9844199784448,9844199260160,2261094257655808,2261094257131520,9294443970560,9294443446272,578721447129122824,578721447128596480,8895012014088,8895011487744,2260694825699336,2260694825172992,8895012014088,8895011487744,578721584568074240,578721584567549952,9032450965504,9032450441216,2260832264650752,2260832264126464,9032450965504,9032450441216,578721580273108992,578721580272582656,9028156000256,9028155473920,2260827969685504,2260827969159168,9028156000256,9028155473920,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721571683174408,578721571682648064,9019566065672,9019565539328,2260819379750920,2260819379224576,9019566065672,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578722396316893184,578722396316368896,9844199784448,9844199260160,2261094257655808,2261094257131520,9294443970560,9294443446272,578721447129122816,578721447128596480,8895012014080,8895011487744,2260694825699328,2260694825172992,8895012014080,8895011487744,578721584568074240,578721584567549952,9032450965504,9032450441216,2260832264650752,2260832264126464,9032450965504,9032450441216,578721442834155528,578721442833629184,8890717046792,8890716520448,2260690530732040,2260690530205696,8890717046792,8890716520448,578721580273106944,578721580272582656,9028155998208,9028155473920,2260827969683456,2260827969159168,9028155998208,9028155473920,578721571683174400,578721571682648064,9019566065664,9019565539328,2260819379750912,2260819379224576,9019566065664,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721571683174408,578721571682648064,9019566065672,9019565539328,2260819379750920,2260819379224576,9019566065672,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721859445983240,578721859445456896,9307328874504,9307328348160,2261656898373640,2261656897847296,9857084688392,9857084162048,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721442834155520,578721442833629184,8890717046784,8890716520448,2260690530732032,2260690530205696,8890717046784,8890716520448,578721580273106944,578721580272582656,9028155998208,9028155473920,2260827969683456,2260827969159168,9028155998208,9028155473920,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721571683174400,578721571682648064,9019566065664,9019565539328,2260819379750912,2260819379224576,9019566065664,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721859445983232,578721859445456896,9307328874496,9307328348160,2261656898373632,2261656897847296,9857084688384,9857084162048,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721855151015944,578721855150489600,9303033907208,9303033380864,2261652603406344,2261652602880000,9852789721096,9852789194752,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721447129122824,578721447128596480,8895012014088,8895011487744,2260694825699336,2260694825172992,8895012014088,8895011487744,578721859445981184,578721859445456896,9307328872448,9307328348160,2261656898371584,2261656897847296,9857084686336,9857084162048,578721855151015936,578721855150489600,9303033907200,9303033380864,2261652603406336,2261652602880000,9852789721088,9852789194752,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721846561081352,578721846560555008,9294443972616,9294443446272,2261644013471752,2261644012945408,9844199786504,9844199260160,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578721571683172352,578721571682648064,9019566063616,9019565539328,2260819379748864,2260819379224576,9019566063616,9019565539328,578721447129122816,578721447128596480,8895012014080,8895011487744,2260694825699328,2260694825172992,8895012014080,8895011487744,578721859445981184,578721859445456896,9307328872448,9307328348160,2261656898371584,2261656897847296,9857084686336,9857084162048,578721442834155528,578721442833629184,8890717046792,8890716520448,2260690530732040,2260690530205696,8890717046792,8890716520448,578721855151013888,578721855150489600,9303033905152,9303033380864,2261652603404288,2261652602880000,9852789719040,9852789194752,578721846561081344,578721846560555008,9294443972608,9294443446272,2261644013471744,2261644012945408,9844199786496,9844199260160,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721846561081352,578721846560555008,9294443972616,9294443446272,2261644013471752,2261644012945408,9844199786504,9844199260160,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721584568076296,578721584567549952,9032450967560,9032450441216,2260832264652808,2260832264126464,9032450967560,9032450441216,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721442834155520,578721442833629184,8890717046784,8890716520448,2260690530732032,2260690530205696,8890717046784,8890716520448,578721855151013888,578721855150489600,9303033905152,9303033380864,2261652603404288,2261652602880000,9852789719040,9852789194752,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578721846561079296,578721846560555008,9294443970560,9294443446272,2261644013469696,2261644012945408,9844199784448,9844199260160,578721846561081344,578721846560555008,9294443972608,9294443446272,2261644013471744,2261644012945408,9844199786496,9844199260160,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721584568076288,578721584567549952,9032450967552,9032450441216,2260832264652800,2260832264126464,9032450967552,9032450441216,578721447129120768,578721447128596480,8895012012032,8895011487744,2260694825697280,2260694825172992,8895012012032,8895011487744,578721580273109000,578721580272582656,9028156000264,9028155473920,2260827969685512,2260827969159168,9028156000264,9028155473920,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578721846561079296,578721846560555008,9294443970560,9294443446272,2261644013469696,2261644012945408,9844199784448,9844199260160,578721434244220936,578721434243694592,8882127112200,8882126585856,2260681940797448,2260681940271104,8882127112200,8882126585856,578721846561079296,578721846560555008,9294443970560,9294443446272,2261644013469696,2261644012945408,9844199784448,9844199260160,578721447129122824,578721447128596480,8895012014088,8895011487744,2260694825699336,2260694825172992,8895012014088,8895011487744,578721584568074240,578721584567549952,9032450965504,9032450441216,2260832264650752,2260832264126464,9032450965504,9032450441216,578721580273108992,578721580272582656,9028156000256,9028155473920,2260827969685504,2260827969159168,9028156000256,9028155473920,578721442834153472,578721442833629184,8890717044736,8890716520448,2260690530729984,2260690530205696,8890717044736,8890716520448,578721571683174408,578721571682648064,9019566065672,9019565539328,2260819379750920,2260819379224576,9019566065672,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721434244220928,578721434243694592,8882127112192,8882126585856,2260681940797440,2260681940271104,8882127112192,8882126585856,578721846561079296,578721846560555008,9294443970560,9294443446272,2261644013469696,2261644012945408,9844199784448,9844199260160,578721447129122816,578721447128596480,8895012014080,8895011487744,2260694825699328,2260694825172992,8895012014080,8895011487744,578721584568074240,578721584567549952,9032450965504,9032450441216,2260832264650752,2260832264126464,9032450965504,9032450441216,578721442834155528,578721442833629184,8890717046792,8890716520448,2260690530732040,2260690530205696,8890717046792,8890716520448,578721580273106944,578721580272582656,9028155998208,9028155473920,2260827969683456,2260827969159168,9028155998208,9028155473920,578721571683174400,578721571682648064,9019566065664,9019565539328,2260819379750912,2260819379224576,9019566065664,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,578721571683174408,578721571682648064,9019566065672,9019565539328,2260819379750920,2260819379224576,9019566065672,9019565539328,578721434244218880,578721434243694592,8882127110144,8882126585856,2260681940795392,2260681940271104,8882127110144,8882126585856,0],[1157443723186933776,18618952716304,1157443723186929664,18618952712192,1157443718891966480,18614657749008,1157443718891962368,18614657744896,1157443710302031888,18606067814416,1157443710302027776,18606067810304,1157443710302031888,18606067814416,1157443710302027776,18606067810304,1157443693122162704,18588887945232,1157443693122158592,18588887941120,1157443693122162704,18588887945232,1157443693122158592,18588887941120,1157443693122162704,18588887945232,1157443693122158592,18588887941120,1157443693122162704,18588887945232,1157443693122158592,18588887941120,1157443723186933760,18618952716288,1157443723186929664,18618952712192,1157443718891966464,18614657748992,1157443718891962368,18614657744896,1157443710302031872,18606067814400,1157443710302027776,18606067810304,1157443710302031872,18606067814400,1157443710302027776,18606067810304,1157443693122162688,18588887945216,1157443693122158592,18588887941120,1157443693122162688,18588887945216,1157443693122158592,18588887941120,1157443693122162688,18588887945216,1157443693122158592,18588887941120,1157443693122162688,18588887945216,1157443693122158592,18588887941120,1157442898553212944,17794318995472,1157442898553208832,17794318991360,1157442894258245648,17790024028176,1157442894258241536,17790024024064,1157442885668311056,17781434093584,1157442885668306944,17781434089472,1157442885668311056,17781434093584,1157442885668306944,17781434089472,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442898553212928,17794318995456,1157442898553208832,17794318991360,1157442894258245632,17790024028160,1157442894258241536,17790024024064,1157442885668311040,17781434093568,1157442885668306944,17781434089472,1157442885668311040,17781434093568,1157442885668306944,17781434089472,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157443173431119888,18069196902416,1157443173431115776,18069196898304,1157443169136152592,18064901935120,1157443169136148480,18064901931008,1157443160546218000,18056312000528,1157443160546213888,18056311996416,1157443160546218000,18056312000528,1157443160546213888,18056311996416,1157443143366348816,18039132131344,1157443143366344704,18039132127232,1157443143366348816,18039132131344,1157443143366344704,18039132127232,1157443143366348816,18039132131344,1157443143366344704,18039132127232,1157443143366348816,18039132131344,1157443143366344704,18039132127232,1157443173431119872,18069196902400,1157443173431115776,18069196898304,1157443169136152576,18064901935104,1157443169136148480,18064901931008,1157443160546217984,18056312000512,1157443160546213888,18056311996416,1157443160546217984,18056312000512,1157443160546213888,18056311996416,1157443143366348800,18039132131328,1157443143366344704,18039132127232,1157443143366348800,18039132131328,1157443143366344704,18039132127232,1157443143366348800,18039132131328,1157443143366344704,18039132127232,1157443143366348800,18039132131328,1157443143366344704,18039132127232,1157442898553212944,17794318995472,1157442898553208832,17794318991360,1157442894258245648,17790024028176,1157442894258241536,17790024024064,1157442885668311056,17781434093584,1157442885668306944,17781434089472,1157442885668311056,17781434093584,1157442885668306944,17781434089472,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442868488441872,17764254224400,1157442868488437760,17764254220288,1157442898553212928,17794318995456,1157442898553208832,17794318991360,1157442894258245632,17790024028160,1157442894258241536,17790024024064,1157442885668311040,17781434093568,1157442885668306944,17781434089472,1157442885668311040,17781434093568,1157442885668306944,17781434089472,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,1157442868488441856,17764254224384,1157442868488437760,17764254220288,4522218580086800,18618952716304,4522218580082688,18618952712192,4522214285119504,18614657749008,4522214285115392,18614657744896,4522205695184912,18606067814416,4522205695180800,18606067810304,4522205695184912,18606067814416,4522205695180800,18606067810304,4522188515315728,18588887945232,4522188515311616,18588887941120,4522188515315728,18588887945232,4522188515311616,18588887941120,4522188515315728,18588887945232,4522188515311616,18588887941120,4522188515315728,18588887945232,4522188515311616,18588887941120,4522218580086784,18618952716288,4522218580082688,18618952712192,4522214285119488,18614657748992,4522214285115392,18614657744896,4522205695184896,18606067814400,4522205695180800,18606067810304,4522205695184896,18606067814400,4522205695180800,18606067810304,4522188515315712,18588887945216,4522188515311616,18588887941120,4522188515315712,18588887945216,4522188515311616,18588887941120,4522188515315712,18588887945216,4522188515311616,18588887941120,4522188515315712,18588887945216,4522188515311616,18588887941120,4521393946365968,17794318995472,4521393946361856,17794318991360,4521389651398672,17790024028176,4521389651394560,17790024024064,4521381061464080,17781434093584,4521381061459968,17781434089472,4521381061464080,17781434093584,4521381061459968,17781434089472,4521363881594896,17764254224400,4521363881590784,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,4521393946365952,17794318995456,4521393946361856,17794318991360,4521389651398656,17790024028160,4521389651394560,17790024024064,4521381061464064,17781434093568,4521381061459968,17781434089472,4521381061464064,17781434093568,4521381061459968,17781434089472,4521363881594880,17764254224384,4521363881590784,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,4521668824272912,18069196902416,4521668824268800,18069196898304,4521664529305616,18064901935120,4521664529301504,18064901931008,4521655939371024,18056312000528,4521655939366912,18056311996416,4521655939371024,18056312000528,4521655939366912,18056311996416,4521638759501840,18039132131344,4521638759497728,18039132127232,4521638759501840,18039132131344,4521638759497728,18039132127232,4521638759501840,18039132131344,4521638759497728,18039132127232,4521638759501840,18039132131344,4521638759497728,18039132127232,4521668824272896,18069196902400,4521668824268800,18069196898304,4521664529305600,18064901935104,4521664529301504,18064901931008,4521655939371008,18056312000512,4521655939366912,18056311996416,4521655939371008,18056312000512,4521655939366912,18056311996416,4521638759501824,18039132131328,4521638759497728,18039132127232,4521638759501824,18039132131328,4521638759497728,18039132127232,4521638759501824,18039132131328,4521638759497728,18039132127232,4521638759501824,18039132131328,4521638759497728,18039132127232,4521393946365968,17794318995472,4521393946361856,17794318991360,4521389651398672,17790024028176,4521389651394560,17790024024064,4521381061464080,17781434093584,4521381061459968,17781434089472,4521381061464080,17781434093584,4521381061459968,17781434089472,4521363881594896,17764254224400,4521363881590784,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,4521363881594896,17764254224400,4521363881590784,17764254220288,4521393946365952,17794318995456,4521393946361856,17794318991360,4521389651398656,17790024028160,4521389651394560,17790024024064,4521381061464064,17781434093568,4521381061459968,17781434089472,4521381061464064,17781434093568,4521381061459968,17781434089472,4521363881594880,17764254224384,4521363881590784,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,4521363881594880,17764254224384,4521363881590784,17764254220288,1157443723185881088,18618951663616,1157443723185881088,18618951663616,1157443718890913792,18614656696320,1157443718890913792,18614656696320,1157443710300979200,18606066761728,1157443710300979200,18606066761728,1157443710300979200,18606066761728,1157443710300979200,18606066761728,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443723185881088,18618951663616,1157443723185881088,18618951663616,1157443718890913792,18614656696320,1157443718890913792,18614656696320,1157443710300979200,18606066761728,1157443710300979200,18606066761728,1157443710300979200,18606066761728,1157443710300979200,18606066761728,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157443693121110016,18588886892544,1157442898552160256,17794317942784,1157442898552160256,17794317942784,1157442894257192960,17790022975488,1157442894257192960,17790022975488,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442898552160256,17794317942784,1157442898552160256,17794317942784,1157442894257192960,17790022975488,1157442894257192960,17790022975488,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157443173430067200,18069195849728,1157443173430067200,18069195849728,1157443169135099904,18064900882432,1157443169135099904,18064900882432,1157443160545165312,18056310947840,1157443160545165312,18056310947840,1157443160545165312,18056310947840,1157443160545165312,18056310947840,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443173430067200,18069195849728,1157443173430067200,18069195849728,1157443169135099904,18064900882432,1157443169135099904,18064900882432,1157443160545165312,18056310947840,1157443160545165312,18056310947840,1157443160545165312,18056310947840,1157443160545165312,18056310947840,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157443143365296128,18039131078656,1157442898552160256,17794317942784,1157442898552160256,17794317942784,1157442894257192960,17790022975488,1157442894257192960,17790022975488,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442898552160256,17794317942784,1157442898552160256,17794317942784,1157442894257192960,17790022975488,1157442894257192960,17790022975488,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442885667258368,17781433040896,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,1157442868487389184,17764253171712,4522218579034112,18618951663616,4522218579034112,18618951663616,4522214284066816,18614656696320,4522214284066816,18614656696320,4522205694132224,18606066761728,4522205694132224,18606066761728,4522205694132224,18606066761728,4522205694132224,18606066761728,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522218579034112,18618951663616,4522218579034112,18618951663616,4522214284066816,18614656696320,4522214284066816,18614656696320,4522205694132224,18606066761728,4522205694132224,18606066761728,4522205694132224,18606066761728,4522205694132224,18606066761728,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4522188514263040,18588886892544,4521393945313280,17794317942784,4521393945313280,17794317942784,4521389650345984,17790022975488,4521389650345984,17790022975488,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521393945313280,17794317942784,4521393945313280,17794317942784,4521389650345984,17790022975488,4521389650345984,17790022975488,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521668823220224,18069195849728,4521668823220224,18069195849728,4521664528252928,18064900882432,4521664528252928,18064900882432,4521655938318336,18056310947840,4521655938318336,18056310947840,4521655938318336,18056310947840,4521655938318336,18056310947840,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521668823220224,18069195849728,4521668823220224,18069195849728,4521664528252928,18064900882432,4521664528252928,18064900882432,4521655938318336,18056310947840,4521655938318336,18056310947840,4521655938318336,18056310947840,4521655938318336,18056310947840,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521638758449152,18039131078656,4521393945313280,17794317942784,4521393945313280,17794317942784,4521389650345984,17790022975488,4521389650345984,17790022975488,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521393945313280,17794317942784,4521393945313280,17794317942784,4521389650345984,17790022975488,4521389650345984,17790022975488,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521381060411392,17781433040896,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,4521363880542208,17764253171712,0],[2314886351157207072,36078262157312,9042727763189792,2314886351155101696,36142688772128,9042727761084416,35528508448800,36142686666752,2314886351157198848,35528506343424,9042727763181568,2314886351155101696,36142688763904,9042727761084416,35528508440576,36142686666752,2314885736976883744,35528506343424,9042762122928128,2314885736974778368,35528508448800,9042762120822784,35562868187136,35528506343424,2314885736976875520,35562866081792,9042762122919936,2314885736974778368,35528508440576,9042762120822784,35562868178944,35528506343424,2314885771336622080,35562866081792,9043341943513120,2314885771334516736,35562868187136,9043341941407744,36142688772128,35562866081792,2314885771336613888,36142686666752,9043341943504896,2314885771334516736,35562868178944,9043341941407744,36142688763904,35562866081792,2314886346862239776,36142686666752,9042727763189792,2314886346860134400,36138393804832,9042727761084416,35528508448800,36138391699456,2314886346862231552,35528506343424,9042727763181568,2314886346860134400,36138393796608,9042727761084416,35528508440576,36138391699456,2314885736976883744,35528506343424,9042762122928128,2314885736974778368,35528508448800,9042762120822784,35562868187136,35528506343424,2314885736976875520,35562866081792,9042762122919936,2314885736974778368,35528508440576,9042762120822784,35562868178944,35528506343424,2314885771336622080,35562866081792,9043337648545824,2314885771334516736,35562868187136,9043337646440448,36138393804832,35562866081792,2314885771336613888,36138391699456,9043337648537600,2314885771334516736,35562868178944,9043337646440448,36138393796608,35562866081792,2314886338272305184,36138391699456,9042727763189792,2314886338270199808,36129803870240,9042727761084416,35528508448800,36129801764864,2314886338272296960,35528506343424,9042727763181568,2314886338270199808,36129803862016,9042727761084416,35528508440576,36129801764864,2314885736976883744,35528506343424,9042762122928128,2314885736974778368,35528508448800,9042762120822784,35562868187136,35528506343424,2314885736976875520,35562866081792,9042762122919936,2314885736974778368,35528508440576,9042762120822784,35562868178944,35528506343424,2314885736976883712,35562866081792,9043329058611232,2314885736974778368,35528508448768,9043329056505856,36129803870240,35528506343424,2314885736976875520,36129801764864,9043329058603008,2314885736974778368,35528508440576,9043329056505856,36129803862016,35528506343424,2314886338272305184,36129801764864,9042727763189792,2314886338270199808,36129803870240,9042727761084416,35528508448800,36129801764864,2314886338272296960,35528506343424,9042727763181568,2314886338270199808,36129803862016,9042727761084416,35528508440576,36129801764864,2314885736976883744,35528506343424,9042727763189760,2314885736974778368,35528508448800,9042727761084416,35528508448768,35528506343424,2314885736976875520,35528506343424,9042727763181568,2314885736974778368,35528508440576,9042727761084416,35528508440576,35528506343424,2314885736976883712,35528506343424,9043329058611232,2314885736974778368,35528508448768,9043329056505856,36129803870240,35528506343424,2314885736976875520,36129801764864,9043329058603008,2314885736974778368,35528508440576,9043329056505856,36129803862016,35528506343424,2314886321092436000,36129801764864,9042727763189792,2314886321090330624,36112624001056,9042727761084416,35528508448800,36112621895680,2314886321092427776,35528506343424,9042727763181568,2314886321090330624,36112623992832,9042727761084416,35528508440576,36112621895680,2314885736976883744,35528506343424,9042727763189760,2314885736974778368,35528508448800,9042727761084416,35528508448768,35528506343424,2314885736976875520,35528506343424,9042727763181568,2314885736974778368,35528508440576,9042727761084416,35528508440576,35528506343424,2314885736976883712,35528506343424,9043311878742048,2314885736974778368,35528508448768,9043311876636672,36112624001056,35528506343424,2314885736976875520,36112621895680,9043311878733824,2314885736974778368,35528508440576,9043311876636672,36112623992832,35528506343424,2314886321092436000,36112621895680,9042727763189792,2314886321090330624,36112624001056,9042727761084416,35528508448800,36112621895680,2314886321092427776,35528506343424,9042727763181568,2314886321090330624,36112623992832,9042727761084416,35528508440576,36112621895680,2314886351157207040,35528506343424,9042727763189760,2314886351155101696,36142688772096,9042727761084416,35528508448768,36142686666752,2314886351157198848,35528506343424,9042727763181568,2314886351155101696,36142688763904,9042727761084416,35528508440576,36142686666752,2314885736976883712,35528506343424,9043311878742048,2314885736974778368,35528508448768,9043311876636672,36112624001056,35528506343424,2314885736976875520,36112621895680,9043311878733824,2314885736974778368,35528508440576,9043311876636672,36112623992832,35528506343424,2314886321092436000,36112621895680,9043341943513088,2314886321090330624,36112624001056,9043341941407744,36142688772096,36112621895680,2314886321092427776,36142686666752,9043341943504896,2314886321090330624,36112623992832,9043341941407744,36142688763904,36112621895680,2314886346862239744,36142686666752,9042727763189760,2314886346860134400,36138393804800,9042727761084416,35528508448768,36138391699456,2314886346862231552,35528506343424,9042727763181568,2314886346860134400,36138393796608,9042727761084416,35528508440576,36138391699456,2314885736976883712,35528506343424,9043311878742048,2314885736974778368,35528508448768,9043311876636672,36112624001056,35528506343424,2314885736976875520,36112621895680,9043311878733824,2314885736974778368,35528508440576,9043311876636672,36112623992832,35528506343424,2314886321092436000,36112621895680,9043337648545792,2314886321090330624,36112624001056,9043337646440448,36138393804800,36112621895680,2314886321092427776,36138391699456,9043337648537600,2314886321090330624,36112623992832,9043337646440448,36138393796608,36112621895680,2314886338272305152,36138391699456,9042727763189760,2314886338270199808,36129803870208,9042727761084416,35528508448768,36129801764864,2314886338272296960,35528506343424,9042727763181568,2314886338270199808,36129803862016,9042727761084416,35528508440576,36129801764864,2314885736976883712,35528506343424,9043311878742048,2314885736974778368,35528508448768,9043311876636672,36112624001056,35528506343424,2314885736976875520,36112621895680,9043311878733824,2314885736974778368,35528508440576,9043311876636672,36112623992832,35528506343424,2314886286732697632,36112621895680,9043329058611200,2314886286730592256,36078264262688,9043329056505856,36129803870208,36078262157312,2314886286732689408,36129801764864,9043329058603008,2314886286730592256,36078264254464,9043329056505856,36129803862016,36078262157312,2314886338272305152,36129801764864,9042727763189760,2314886338270199808,36129803870208,9042727761084416,35528508448768,36129801764864,2314886338272296960,35528506343424,9042727763181568,2314886338270199808,36129803862016,9042727761084416,35528508440576,36129801764864,2314885736976883712,35528506343424,9043277519003680,2314885736974778368,35528508448768,9043277516898304,36078264262688,35528506343424,2314885736976875520,36078262157312,9043277518995456,2314885736974778368,35528508440576,9043277516898304,36078264254464,35528506343424,2314886286732697632,36078262157312,9043329058611200,2314886286730592256,36078264262688,9043329056505856,36129803870208,36078262157312,2314886286732689408,36129801764864,9043329058603008,2314886286730592256,36078264254464,9043329056505856,36129803862016,36078262157312,2314886321092435968,36129801764864,9042727763189760,2314886321090330624,36112624001024,9042727761084416,35528508448768,36112621895680,2314886321092427776,35528506343424,9042727763181568,2314886321090330624,36112623992832,9042727761084416,35528508440576,36112621895680,2314885736976883712,35528506343424,9043277519003680,2314885736974778368,35528508448768,9043277516898304,36078264262688,35528506343424,2314885736976875520,36078262157312,9043277518995456,2314885736974778368,35528508440576,9043277516898304,36078264254464,35528506343424,2314886286732697632,36078262157312,9043311878742016,2314886286730592256,36078264262688,9043311876636672,36112624001024,36078262157312,2314886286732689408,36112621895680,9043311878733824,2314886286730592256,36078264254464,9043311876636672,36112623992832,36078262157312,2314886321092435968,36112621895680,9042727763189760,2314886321090330624,36112624001024,9042727761084416,35528508448768,36112621895680,2314886321092427776,35528506343424,9042727763181568,2314886321090330624,36112623992832,9042727761084416,35528508440576,36112621895680,2314885801401393184,35528506343424,9043277519003680,2314885801399287808,35592932958240,9043277516898304,36078264262688,35592930852864,2314885801401384960,36078262157312,9043277518995456,2314885801399287808,35592932950016,9043277516898304,36078264254464,35592930852864,2314886286732697632,36078262157312,9043311878742016,2314886286730592256,36078264262688,9043311876636672,36112624001024,36078262157312,2314886286732689408,36112621895680,9043311878733824,2314886286730592256,36078264254464,9043311876636672,36112623992832,36078262157312,2314886321092435968,36112621895680,9042792187699232,2314886321090330624,36112624001024,9042792185593856,35592932958240,36112621895680,2314886321092427776,35592930852864,9042792187691008,2314886321090330624,36112623992832,9042792185593856,35592932950016,36112621895680,2314885797106425888,35592930852864,9043277519003680,2314885797104320512,35588637990944,9043277516898304,36078264262688,35588635885568,2314885797106417664,36078262157312,9043277518995456,2314885797104320512,35588637982720,9043277516898304,36078264254464,35588635885568,2314886286732697632,36078262157312,9043311878742016,2314886286730592256,36078264262688,9043311876636672,36112624001024,36078262157312,2314886286732689408,36112621895680,9043311878733824,2314886286730592256,36078264254464,9043311876636672,36112623992832,36078262157312,2314886321092435968,36112621895680,9042787892731936,2314886321090330624,36112624001024,9042787890626560,35588637990944,36112621895680,2314886321092427776,35588635885568,9042787892723712,2314886321090330624,36112623992832,9042787890626560,35588637982720,36112621895680,2314885788516491296,35588635885568,9043277519003680,2314885788514385920,35580048056352,9043277516898304,36078264262688,35580045950976,2314885788516483072,36078262157312,9043277518995456,2314885788514385920,35580048048128,9043277516898304,36078264254464,35580045950976,2314886286732697632,36078262157312,9043311878742016,2314886286730592256,36078264262688,9043311876636672,36112624001024,36078262157312,2314886286732689408,36112621895680,9043311878733824,2314886286730592256,36078264254464,9043311876636672,36112623992832,36078262157312,2314886286732697600,36112621895680,9042779302797344,2314886286730592256,36078264262656,9042779300691968,35580048056352,36078262157312,2314886286732689408,35580045950976,9042779302789120,2314886286730592256,36078264254464,9042779300691968,35580048048128,36078262157312,2314885788516491296,35580045950976,9043277519003680,2314885788514385920,35580048056352,9043277516898304,36078264262688,35580045950976,2314885788516483072,36078262157312,9043277518995456,2314885788514385920,35580048048128,9043277516898304,36078264254464,35580045950976,2314886286732697632,36078262157312,9043277519003648,2314886286730592256,36078264262688,9043277516898304,36078264262656,36078262157312,2314886286732689408,36078262157312,9043277518995456,2314886286730592256,36078264254464,9043277516898304,36078264254464,36078262157312,2314886286732697600,36078262157312,9042779302797344,2314886286730592256,36078264262656,9042779300691968,35580048056352,36078262157312,2314886286732689408,35580045950976,9042779302789120,2314886286730592256,36078264254464,9042779300691968,35580048048128,36078262157312,2314885771336622112,35580045950976,9043277519003680,2314885771334516736,35562868187168,9043277516898304,36078264262688,35562866081792,2314885771336613888,36078262157312,9043277518995456,2314885771334516736,35562868178944,9043277516898304,36078264254464,35562866081792,2314886286732697632,36078262157312,9043277519003648,2314886286730592256,36078264262688,9043277516898304,36078264262656,36078262157312,2314886286732689408,36078262157312,9043277518995456,2314886286730592256,36078264254464,9043277516898304,36078264254464,36078262157312,2314886286732697600,36078262157312,9042762122928160,2314886286730592256,36078264262656,9042762120822784,35562868187168,36078262157312,2314886286732689408,35562866081792,9042762122919936,2314886286730592256,36078264254464,9042762120822784,35562868178944,36078262157312,2314885771336622112,35562866081792,9043277519003680,2314885771334516736,35562868187168,9043277516898304,36078264262688,35562866081792,2314885771336613888,36078262157312,9043277518995456,2314885771334516736,35562868178944,9043277516898304,36078264254464,35562866081792,2314885801401393152,36078262157312,9043277519003648,2314885801399287808,35592932958208,9043277516898304,36078264262656,35592930852864,2314885801401384960,36078262157312,9043277518995456,2314885801399287808,35592932950016,9043277516898304,36078264254464,35592930852864,2314886286732697600,36078262157312,9042762122928160,2314886286730592256,36078264262656,9042762120822784,35562868187168,36078262157312,2314886286732689408,35562866081792,9042762122919936,2314886286730592256,36078264254464,9042762120822784,35562868178944,36078262157312,2314885771336622112,35562866081792,9042792187699200,2314885771334516736,35562868187168,9042792185593856,35592932958208,35562866081792,2314885771336613888,35592930852864,9042792187691008,2314885771334516736,35562868178944,9042792185593856,35592932950016,35562866081792,2314885797106425856,35592930852864,9043277519003648,2314885797104320512,35588637990912,9043277516898304,36078264262656,35588635885568,2314885797106417664,36078262157312,9043277518995456,2314885797104320512,35588637982720,9043277516898304,36078264254464,35588635885568,2314886286732697600,36078262157312,9042762122928160,2314886286730592256,36078264262656,9042762120822784,35562868187168,36078262157312,2314886286732689408,35562866081792,9042762122919936,2314886286730592256,36078264254464,9042762120822784,35562868178944,36078262157312,2314885771336622112,35562866081792,9042787892731904,2314885771334516736,35562868187168,9042787890626560,35588637990912,35562866081792,2314885771336613888,35588635885568,9042787892723712,2314885771334516736,35562868178944,9042787890626560,35588637982720,35562866081792,2314885788516491264,35588635885568,9043277519003648,2314885788514385920,35580048056320,9043277516898304,36078264262656,35580045950976,2314885788516483072,36078262157312,9043277518995456,2314885788514385920,35580048048128,9043277516898304,36078264254464,35580045950976,2314886286732697600,36078262157312,9042762122928160,2314886286730592256,36078264262656,9042762120822784,35562868187168,36078262157312,2314886286732689408,35562866081792,9042762122919936,2314886286730592256,36078264254464,9042762120822784,35562868178944,36078262157312,2314885736976883744,35562866081792,9042779302797312,2314885736974778368,35528508448800,9042779300691968,35580048056320,35528506343424,2314885736976875520,35580045950976,9042779302789120,2314885736974778368,35528508440576,9042779300691968,35580048048128,35528506343424,2314885788516491264,35580045950976,9043277519003648,2314885788514385920,35580048056320,9043277516898304,36078264262656,35580045950976,2314885788516483072,36078262157312,9043277518995456,2314885788514385920,35580048048128,9043277516898304,36078264254464,35580045950976,2314886286732697600,36078262157312,9042727763189792,2314886286730592256,36078264262656,9042727761084416,35528508448800,36078262157312,2314886286732689408,35528506343424,9042727763181568,2314886286730592256,36078264254464,9042727761084416,35528508440576,36078262157312,2314885736976883744,35528506343424,9042779302797312,2314885736974778368,35528508448800,9042779300691968,35580048056320,35528506343424,2314885736976875520,35580045950976,9042779302789120,2314885736974778368,35528508440576,9042779300691968,35580048048128,35528506343424,2314885771336622080,35580045950976,9043277519003648,2314885771334516736,35562868187136,9043277516898304,36078264262656,35562866081792,2314885771336613888,36078262157312,9043277518995456,2314885771334516736,35562868178944,9043277516898304,36078264254464,35562866081792,2314886286732697600,36078262157312,9042727763189792,2314886286730592256,36078264262656,9042727761084416,35528508448800,36078262157312,2314886286732689408,35528506343424,9042727763181568,2314886286730592256,36078264254464,9042727761084416,35528508440576,36078262157312,2314885736976883744,35528506343424,9042762122928128,2314885736974778368,35528508448800,9042762120822784,35562868187136,35528506343424,2314885736976875520,35562866081792,9042762122919936,2314885736974778368,35528508440576,9042762120822784,35562868178944,35528506343424,2314885771336622080,35562866081792,9043277519003648,2314885771334516736,35562868187136,9043277516898304,36078264262656,35562866081792,2314885771336613888,36078262157312,9043277518995456,2314885771334516736,35562868178944,9043277516898304,36078264254464,35562866081792,0],[4629771607097753664,71125736357888,4629771577032966144,71057016897536,4629771594208641024,71057012686848,4629771473949556736,71057012686848,71190160883776,18085558605594688,71160096096256,18085524245839872,71177271771136,18085524241645568,71057012686848,18085455522168832,4629771473953751040,71160096112704,4629771594212851712,71125736357888,4629771607093542912,71125732163584,4629771577028771840,71057012686848,71057016881152,18085455526363136,71177275981824,18085524245856256,71190156673024,18085558601383936,71160091901952,18085524241645568,4629771542673244224,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71160091901952,4629771594208641024,71125732163584,71125736374336,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71177271771136,18085524241645568,4629771473953751040,71057016897600,4629771473953767424,71057016881152,4629771542669033472,71057012686848,4629771473949556736,71125732163584,71057016881152,18085575785447424,71057016897536,18085455526379520,71125732163584,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71177275965440,4629771607097737216,71057016897536,4629771473949556736,71057012686848,4629771473949556736,71057012686848,71057016897600,18085588670365760,71190160867328,18085558605578240,71057012686848,18085575781253120,71057012686848,18085455522168832,4629771542673227776,71190160883776,4629771473953767424,71160096096256,4629771473949556736,71177271771136,4629771607093542912,71057012686848,71125736357888,18085455526363136,71057016897536,18085575785463808,71057012686848,18085588666155008,71190156673024,18085558601383936,4629771577032982592,71057016881152,4629771542673227776,71177275981824,4629771542669033472,71190156673024,4629771473949556736,71160091901952,71160096112704,18085524245856320,71125736357888,18085455526363136,71125732163584,18085455522168832,71057012686848,18085575781253120,4629771473953751040,71125736374336,4629771542673244160,71057016881152,4629771577028771840,71057012686848,4629771542669033472,71177271771136,71057016881152,18085455526363136,71125736374272,18085455526379520,71160091901952,18085524241645568,71125732163584,18085455522168832,4629771473953767488,71057016881152,4629771473953751040,71057016897536,4629771473949556736,71125732163584,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085588670349312,71057012686848,18085455522168832,71125732163584,18085455522168832,4629771577032966144,71057016897600,4629771473953767424,71190160867328,4629771473949556736,71057012686848,4629771473949556736,71057012686848,71160096096256,18085524245839872,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085588666155008,4629771602802786368,71125736357888,4629771577032966144,71057016897536,4629771577028771840,71057012686848,4629771473949556736,71190156673024,71185865916480,18085558605594688,71160096096256,18085524245839872,71160091901952,18085524241645568,71057012686848,18085455522168832,4629771473953751040,71160096112704,4629771577032982528,71125736357888,4629771602798575616,71125732163584,4629771577028771840,71057012686848,71057016881152,18085455526363136,71160096112640,18085524245856256,71185861705728,18085558601383936,71160091901952,18085524241645568,4629771542673244224,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71160091901952,4629771577028771840,71125732163584,71125736374336,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71160091901952,18085524241645568,4629771473953751040,71057016897600,4629771473953767424,71057016881152,4629771542669033472,71057012686848,4629771473949556736,71125732163584,71057016881152,18085558605578240,71057016897536,18085455526379520,71125732163584,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71160096096256,4629771602802769920,71057016897536,4629771473949556736,71057012686848,4629771473949556736,71057012686848,71057016897600,18085584375398464,71185865900032,18085558605578240,71057012686848,18085558601383936,71057012686848,18085455522168832,4629771542673227776,71185865916480,4629771473953767424,71160096096256,4629771473949556736,71160091901952,4629771602798575616,71057012686848,71125736357888,18085455526363136,71057016897536,18085558605594624,71057012686848,18085584371187712,71185861705728,18085558601383936,4629771542673244224,71057016881152,4629771542673227776,71160096112640,4629771542669033472,71185861705728,4629771473949556736,71160091901952,71125736374336,18085524245856320,71125736357888,18085455526363136,71125732163584,18085455522168832,71057012686848,18085558601383936,4629771473953751040,71125736374336,4629771542673244160,71057016881152,4629771542669033472,71057012686848,4629771542669033472,71160091901952,71057016881152,18085455526363136,71125736374272,18085455526379520,71125732163584,18085524241645568,71125732163584,18085455522168832,4629771473953767488,71057016881152,4629771473953751040,71057016897536,4629771473949556736,71125732163584,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085584375382016,71057012686848,18085455522168832,71125732163584,18085455522168832,4629771577032966144,71057016897600,4629771473953767424,71185865900032,4629771473949556736,71057012686848,4629771473949556736,71057012686848,71160096096256,18085524245839872,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085584371187712,4629771594212851776,71125736357888,4629771542673227776,71057016897536,4629771577028771840,71057012686848,4629771473949556736,71185861705728,71177275981888,18085524245856320,71125736357888,18085524245839872,71160091901952,18085524241645568,71057012686848,18085455522168832,4629771473953751040,71125736374336,4629771577032982528,71125736357888,4629771594208641024,71125732163584,4629771542669033472,71057012686848,71057016881152,18085455526363136,71160096112640,18085524245856256,71177271771136,18085524241645568,71125732163584,18085524241645568,4629771542673244224,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71125732163584,4629771577028771840,71125732163584,71125736374336,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71160091901952,18085524241645568,4629771473953751040,71057016897600,4629771473953767424,71057016881152,4629771542669033472,71057012686848,4629771473949556736,71125732163584,71057016881152,18085558605578240,71057016897536,18085455526379520,71125732163584,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71160096096256,4629771594212835328,71057016897536,4629771473949556736,71057012686848,4629771473949556736,71057012686848,71057016897600,18085575785463872,71177275965440,18085524245839872,71057012686848,18085558601383936,71057012686848,18085455522168832,4629771542673227776,71177275981888,4629771473953767424,71125736357888,4629771473949556736,71160091901952,4629771594208641024,71057012686848,71125736357888,18085455526363136,71057016897536,18085558605594624,71057012686848,18085575781253120,71177271771136,18085524241645568,4629771542673244224,71057016881152,4629771542673227776,71160096112640,4629771542669033472,71177271771136,4629771473949556736,71125732163584,71125736374336,18085524245856320,71125736357888,18085455526363136,71125732163584,18085455522168832,71057012686848,18085558601383936,4629771473953751040,71125736374336,4629771542673244160,71057016881152,4629771542669033472,71057012686848,4629771542669033472,71160091901952,71057016881152,18085455526363136,71125736374272,18085455526379520,71125732163584,18085524241645568,71125732163584,18085455522168832,4629771473953767488,71057016881152,4629771473953751040,71057016897536,4629771473949556736,71125732163584,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085575785447424,71057012686848,18085455522168832,71125732163584,18085455522168832,4629771577032966144,71057016897600,4629771473953767424,71177275965440,4629771473949556736,71057012686848,4629771473949556736,71057012686848,71160096096256,18085524245839872,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085575781253120,4629771594212851776,71125736357888,4629771542673227776,71057016897536,4629771577028771840,71057012686848,4629771473949556736,71177271771136,71177275981888,18085524245856320,71125736357888,18085524245839872,71160091901952,18085524241645568,71057012686848,18085455522168832,4629771473953751040,71125736374336,4629771577032982528,71125736357888,4629771594208641024,71125732163584,4629771542669033472,71057012686848,71057016881152,18085455526363136,71160096112640,18085524245856256,71177271771136,18085524241645568,71125732163584,18085524241645568,4629771473953767488,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71125732163584,4629771577028771840,71125732163584,71057016897600,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71160091901952,18085524241645568,4629771607097737216,71057016897600,4629771473953767424,71057016881152,4629771473949556736,71057012686848,4629771473949556736,71125732163584,71190160867328,18085558605578240,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71160096096256,4629771594212835328,71057016897536,4629771607093542912,71057012686848,4629771473949556736,71057012686848,71057016897600,18085575785463872,71177275965440,18085524245839872,71190156673024,18085558601383936,71057012686848,18085455522168832,4629771542673227776,71177275981888,4629771607097753600,71125736357888,4629771473949556736,71160091901952,4629771594208641024,71057012686848,71125736357888,18085455526363136,71190160883712,18085558605594624,71057012686848,18085575781253120,71177271771136,18085524241645568,4629771542673244224,71057016881152,4629771473953751040,71160096112640,4629771542669033472,71177271771136,4629771607093542912,71125732163584,71125736374336,18085455526379584,71057016881152,18085455526363136,71125732163584,18085455522168832,71190156673024,18085558601383936,4629771473953751040,71057016897600,4629771542673244160,71057016881152,4629771542669033472,71057012686848,4629771473949556736,71160091901952,71057016881152,18085588670349312,71125736374272,18085455526379520,71125732163584,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71190160867328,4629771473953751040,71057016897536,4629771473949556736,71057012686848,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085575785447424,71057012686848,18085588666155008,71125732163584,18085455522168832,4629771577032966144,71057016897600,4629771473953767424,71177275965440,4629771473949556736,71190156673024,4629771473949556736,71057012686848,71160096096256,18085524245839872,71057016897536,18085588670365696,71057012686848,18085455522168832,71057012686848,18085575781253120,4629771577032982592,71125736357888,4629771542673227776,71190160883712,4629771577028771840,71057012686848,4629771473949556736,71177271771136,71160096112704,18085524245856320,71125736357888,18085455526363136,71160091901952,18085524241645568,71057012686848,18085588666155008,4629771473953751040,71125736374336,4629771577032982528,71057016881152,4629771577028771840,71125732163584,4629771542669033472,71190156673024,71057016881152,18085455526363136,71160096112640,18085524245856256,71160091901952,18085524241645568,71125732163584,18085455522168832,4629771473953767488,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71125732163584,4629771577028771840,71057012686848,71057016897600,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71160091901952,18085524241645568,4629771602802769920,71057016897600,4629771473953767424,71057016881152,4629771473949556736,71057012686848,4629771473949556736,71125732163584,71185865900032,18085558605578240,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71160096096256,4629771577032966144,71057016897536,4629771602798575616,71057012686848,4629771473949556736,71057012686848,71057016897600,18085558605594688,71160096096256,18085524245839872,71185861705728,18085558601383936,71057012686848,18085455522168832,4629771542673227776,71160096112704,4629771602802786304,71125736357888,4629771473949556736,71160091901952,4629771577028771840,71057012686848,71125736357888,18085455526363136,71185865916416,18085558605594624,71057012686848,18085558601383936,71160091901952,18085524241645568,4629771542673244224,71057016881152,4629771473953751040,71160096112640,4629771542669033472,71160091901952,4629771602798575616,71125732163584,71125736374336,18085455526379584,71057016881152,18085455526363136,71125732163584,18085455522168832,71185861705728,18085558601383936,4629771473953751040,71057016897600,4629771542673244160,71057016881152,4629771542669033472,71057012686848,4629771473949556736,71160091901952,71057016881152,18085584375382016,71125736374272,18085455526379520,71125732163584,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71185865900032,4629771473953751040,71057016897536,4629771473949556736,71057012686848,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085558605578240,71057012686848,18085584371187712,71125732163584,18085455522168832,4629771542673227776,71057016897600,4629771473953767424,71160096096256,4629771473949556736,71185861705728,4629771473949556736,71057012686848,71125736357888,18085524245839872,71057016897536,18085584375398400,71057012686848,18085455522168832,71057012686848,18085558601383936,4629771577032982592,71125736357888,4629771542673227776,71185865916416,4629771542669033472,71057012686848,4629771473949556736,71160091901952,71160096112704,18085524245856320,71125736357888,18085455526363136,71125732163584,18085524241645568,71057012686848,18085584371187712,4629771473953751040,71125736374336,4629771542673244160,71057016881152,4629771577028771840,71125732163584,4629771542669033472,71185861705728,71057016881152,18085455526363136,71125736374272,18085524245856256,71160091901952,18085524241645568,71125732163584,18085455522168832,4629771473953767488,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71125732163584,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71125732163584,18085524241645568,4629771594212835328,71057016897600,4629771473953767424,71057016881152,4629771473949556736,71057012686848,4629771473949556736,71125732163584,71177275965440,18085524245839872,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71125736357888,4629771577032966144,71057016897536,4629771594208641024,71057012686848,4629771473949556736,71057012686848,71057016897600,18085558605594688,71160096096256,18085524245839872,71177271771136,18085524241645568,71057012686848,18085455522168832,4629771542673227776,71160096112704,4629771594212851712,71125736357888,4629771473949556736,71125732163584,4629771577028771840,71057012686848,71125736357888,18085455526363136,71177275981824,18085524245856256,71057012686848,18085558601383936,71160091901952,18085524241645568,4629771542673244224,71057016881152,4629771473953751040,71125736374272,4629771542669033472,71160091901952,4629771594208641024,71125732163584,71125736374336,18085455526379584,71057016881152,18085455526363136,71125732163584,18085455522168832,71177271771136,18085524241645568,4629771473953751040,71057016897600,4629771542673244160,71057016881152,4629771542669033472,71057012686848,4629771473949556736,71125732163584,71057016881152,18085575785447424,71125736374272,18085455526379520,71125732163584,18085455522168832,71057012686848,18085455522168832,4629771473953767488,71177275965440,4629771473953751040,71057016897536,4629771473949556736,71057012686848,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085558605578240,71057012686848,18085575781253120,71125732163584,18085455522168832,4629771542673227776,71057016897600,4629771473953767424,71160096096256,4629771473949556736,71177271771136,4629771473949556736,71057012686848,71125736357888,18085524245839872,71057016897536,18085575785463808,71057012686848,18085455522168832,71057012686848,18085558601383936,4629771577032982592,71125736357888,4629771542673227776,71177275981824,4629771542669033472,71057012686848,4629771473949556736,71160091901952,71160096112704,18085524245856320,71125736357888,18085455526363136,71125732163584,18085524241645568,71057012686848,18085575781253120,4629771473953751040,71125736374336,4629771542673244160,71057016881152,4629771577028771840,71125732163584,4629771542669033472,71177271771136,71057016881152,18085455526363136,71125736374272,18085524245856256,71160091901952,18085524241645568,71125732163584,18085455522168832,4629771473953767488,71057016881152,4629771473953751040,71125736374272,4629771473949556736,71125732163584,4629771542669033472,71057012686848,71057016897600,18085455526379584,71057016881152,18085455526363136,71057012686848,18085455522168832,71125732163584,18085524241645568,4629771594212835328,71057016897600,4629771473953767424,71057016881152,4629771473949556736,71057012686848,4629771473949556736,71125732163584,71177275965440,18085524245839872,71057016897536,18085455526379520,71057012686848,18085455522168832,71057012686848,18085455522168832,0],[9259542118978846848,9259542118978813952,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141151961120768,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542114683879424,9259542114683846656,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141151961120896,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542106093944960,9259542106093912064,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141151961120768,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542106093944832,9259542106093912064,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141151961120896,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542088914075776,9259542088914042880,141285105107072,141285105074176,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542088914075648,9259542088914042880,141280810139648,141280810106880,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542088914075776,9259542088914042880,141272220205184,141272220172288,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542088914075648,9259542088914042880,141272220205056,141272220172288,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141255040336000,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141255040335872,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141255040336000,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141255040335872,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141220680597632,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141220680597504,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141220680597632,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141220680597504,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259541985834860672,9259541985834827776,141220680597632,141220680564736,9259542118970425344,9259542118970425344,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860544,9259541985834827776,141220680597504,141220680564736,9259542114675458048,9259542114675458048,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860672,9259541985834827776,141220680597632,141220680564736,9259542106085523456,9259542106085523456,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860544,9259541985834827776,141220680597504,141220680564736,9259542106085523456,9259542106085523456,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542088905654272,9259542088905654272,141285096685568,141285096685568,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542088905654272,9259542088905654272,141280801718272,141280801718272,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542088905654272,9259542088905654272,141272211783680,141272211783680,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542088905654272,9259542088905654272,141272211783680,141272211783680,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141151961120896,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170082124071040,36170082124038144,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141151961120768,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170077829103616,36170077829070848,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141151961120896,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170069239169152,36170069239136256,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141151961120768,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170069239169024,36170069239136256,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299968,36170052059267072,141285105107072,141285105074176,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299840,36170052059267072,141280810139648,141280810106880,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299968,36170052059267072,141272220205184,141272220172288,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299840,36170052059267072,141272220205056,141272220172288,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141255040336000,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141255040335872,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141255040336000,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141255040335872,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141220680597632,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141220680597504,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141220680597632,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141220680597504,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084864,36169948980051968,141220680597632,141220680564736,36170082115649536,36170082115649536,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084736,36169948980051968,141220680597504,141220680564736,36170077820682240,36170077820682240,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084864,36169948980051968,141220680597632,141220680564736,36170069230747648,36170069230747648,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084736,36169948980051968,141220680597504,141220680564736,36170069230747648,36170069230747648,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170052050878464,36170052050878464,141285096685568,141285096685568,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170052050878464,36170052050878464,141280801718272,141280801718272,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170052050878464,36170052050878464,141272211783680,141272211783680,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170052050878464,36170052050878464,141272211783680,141272211783680,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259542118978846720,9259542118978813952,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141151961120896,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542114683879552,9259542114683846656,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141151961120768,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542106093944832,9259542106093912064,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141151961120896,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542106093944960,9259542106093912064,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141151961120768,141151961088000,36169948971663360,36169948971663360,141220672176128,141220672176128,9259542088914075648,9259542088914042880,141285105106944,141285105074176,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542088914075776,9259542088914042880,141280810139776,141280810106880,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542088914075648,9259542088914042880,141272220205056,141272220172288,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542088914075776,9259542088914042880,141272220205184,141272220172288,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141255040335872,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141255040336000,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141255040335872,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141255040336000,141255040303104,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141220680597504,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141220680597632,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337280,9259542054554304512,141220680597504,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259542054554337408,9259542054554304512,141220680597632,141220680564736,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169948971663360,36169948971663360,141151952699392,141151952699392,9259541985834860544,9259541985834827776,141220680597504,141220680564736,9259542118970425344,9259542118970425344,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860672,9259541985834827776,141220680597632,141220680564736,9259542114675458048,9259542114675458048,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860544,9259541985834827776,141220680597504,141220680564736,9259542106085523456,9259542106085523456,141014513745920,141014513745920,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860672,9259541985834827776,141220680597632,141220680564736,9259542106085523456,9259542106085523456,141014513745920,141014513745920,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141151952699392,141151952699392,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542088905654272,9259542088905654272,141285096685568,141285096685568,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542088905654272,9259542088905654272,141280801718272,141280801718272,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542088905654272,9259542088905654272,141272211783680,141272211783680,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542088905654272,9259542088905654272,141272211783680,141272211783680,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141255031914496,141255031914496,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860544,9259541985834827776,141151961120768,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131392,36169811541098496,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541985834860672,9259541985834827776,141151961120896,141151961088000,9259542054545915904,9259542054545915904,141220672176128,141220672176128,36169811541131264,36169811541098496,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141151961120768,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170082124070912,36170082124038144,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141151961120896,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170077829103744,36170077829070848,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141151961120768,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170069239169024,36170069239136256,141014522167424,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141151961120896,141151961088000,9259541985826439168,9259541985826439168,141220672176128,141220672176128,36170069239169152,36170069239136256,141014522167296,141014522134528,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299840,36170052059267072,141285105106944,141285105074176,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299968,36170052059267072,141280810139776,141280810106880,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299840,36170052059267072,141272220205056,141272220172288,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170052059299968,36170052059267072,141272220205184,141272220172288,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141255040335872,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141255040336000,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141255040335872,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141255040336000,141255040303104,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141220680597504,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141220680597632,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561472,36170017699528704,141220680597504,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541985826439168,9259541985826439168,141151952699392,141151952699392,36170017699561600,36170017699528704,141220680597632,141220680564736,36169811532709888,36169811532709888,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084736,36169948980051968,141220680597504,141220680564736,36170082115649536,36170082115649536,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084864,36169948980051968,141220680597632,141220680564736,36170077820682240,36170077820682240,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084736,36169948980051968,141220680597504,141220680564736,36170069230747648,36170069230747648,141014513745920,141014513745920,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141151952699392,141151952699392,36169948980084864,36169948980051968,141220680597632,141220680564736,36170069230747648,36170069230747648,141014513745920,141014513745920,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170052050878464,36170052050878464,141285096685568,141285096685568,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170052050878464,36170052050878464,141280801718272,141280801718272,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170052050878464,36170052050878464,141272211783680,141272211783680,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170052050878464,36170052050878464,141272211783680,141272211783680,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141255031914496,141255031914496,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259541848395907072,9259541848395874304,141014522167296,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084736,36169948980051968,141151961120768,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,9259541848395907200,9259541848395874304,141014522167424,141014522134528,9259541848387485696,9259541848387485696,141014513745920,141014513745920,36169948980084864,36169948980051968,141151961120896,141151961088000,36170017691140096,36170017691140096,141220672176128,141220672176128,0],[72618349279904001,560755241976065,72618349279838208,560755241910272,72477611791548416,420017753620480,72477611791482880,420017753554944,72477611774705664,420017736777728,72477611774705664,420017736777728,72618349263060992,560755225133056,72618349263060992,560755225133056,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675282177,314464637354241,72372058675216384,314464637288448,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72407243047371009,349649009443073,72407243047305216,349649009377280,72407243047370752,349649009442816,72407243047305216,349649009377280,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675282177,314464637354241,72372058675216384,314464637288448,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72477611791548673,420017753620737,72477611791482880,420017753554944,72618349279904000,560755241976064,72618349279838208,560755241910272,72618349263060992,560755225133056,72618349263060992,560755225133056,72477611774705664,420017736777728,72477611774705664,420017736777728,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675282177,314464637354241,72372058675216384,314464637288448,72372058675282176,314464637354240,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72407243047371009,349649009443073,72407243047305216,349649009377280,72407243047371008,349649009443072,72407243047305216,349649009377280,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675282177,314464637354241,72372058675216384,314464637288448,72372058675282176,314464637354240,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237761,296872451309825,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215553,288076358287617,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704449,283678311776513,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72618349279903744,560755241975808,72618349279838208,560755241910272,72477611791548672,420017753620736,72477611791482880,420017753554944,72477611774705664,420017736777728,72477611774705664,420017736777728,72618349263060992,560755225133056,72618349263060992,560755225133056,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058675282176,314464637354240,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72407243047370752,349649009442816,72407243047305216,349649009377280,72407243047371008,349649009443072,72407243047305216,349649009377280,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058675282176,314464637354240,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237760,296872451309824,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215552,288076358287616,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704448,283678311776512,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72477611791548416,420017753620480,72477611791482880,420017753554944,72618349279903744,560755241975808,72618349279838208,560755241910272,72618349263060992,560755225133056,72618349263060992,560755225133056,72477611774705664,420017736777728,72477611774705664,420017736777728,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72407243047370752,349649009442816,72407243047305216,349649009377280,72407243047370752,349649009442816,72407243047305216,349649009377280,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72407243030528000,349648992600064,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058675281920,314464637353984,72372058675216384,314464637288448,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72372058658439168,314464620511232,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466489237504,296872451309568,72354466489171968,296872451244032,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72354466472394752,296872434466816,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670396215296,288076358287360,72345670396149760,288076358221824,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72345670379372544,288076341444608,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272349704192,283678311776256,72341272349638656,283678311710720,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,72341272332861440,283678294933504,0],[144956323094725122,568456101494784,144956323094725120,144956323094593536,144683644211036674,144956323094593536,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144710032490103298,144683644210905088,144710032490103296,144710032489971712,144683644211036674,144710032489971712,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144745216862192130,144683644210905088,144745216862192128,144745216862060544,144683644211036674,144745216862060544,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144710032490103298,144683644210905088,144710032490103296,144710032489971712,144683644211036674,144710032489971712,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144815585606369794,144683644210905088,144815585606369792,144815585606238208,144683644211036674,144815585606238208,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144710032490103298,144683644210905088,144710032490103296,144710032489971712,144683644211036674,144710032489971712,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144745216862192130,144683644210905088,144745216862192128,144745216862060544,144683644211036674,144745216862060544,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,144710032490103298,144683644210905088,144710032490103296,144710032489971712,144683644211036674,144710032489971712,144683644211036672,144683644210905088,144692440304058882,144683644210905088,144692440304058880,144692440303927296,144683644211036674,144692440303927296,144683644211036672,144683644210905088,841135018868736,144683644210905088,841135018868736,841135018737664,568456135180288,841135018737664,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,594844414246912,568456135049216,594844414246912,594844414115840,568456135180288,594844414115840,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,630028786335744,568456135049216,630028786335744,630028786204672,568456135180288,630028786204672,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,594844414246912,568456135049216,594844414246912,594844414115840,568456135180288,594844414115840,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,700397530513408,568456135049216,700397530513408,700397530382336,568456135180288,700397530382336,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,594844414246912,568456135049216,594844414246912,594844414115840,568456135180288,594844414115840,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,630028786335744,568456135049216,630028786335744,630028786204672,568456135180288,630028786204672,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,594844414246912,568456135049216,594844414246912,594844414115840,568456135180288,594844414115840,568456135180288,568456135049216,577252228202496,568456135049216,577252228202496,577252228071424,568456135180288,577252228071424,568456135180288,568456135049216,841134985183232,568456135049216,841134985183232,841134985183232,568456101494784,841134985183232,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,630028752650240,568456101494784,630028752650240,630028752650240,568456101494784,630028752650240,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,700397496827904,568456101494784,700397496827904,700397496827904,568456101494784,700397496827904,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,630028752650240,568456101494784,630028752650240,630028752650240,568456101494784,630028752650240,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,144956323061039104,568456101494784,144956323061039104,144956323061039104,144683644177350656,144956323061039104,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144745216828506112,144683644177350656,144745216828506112,144745216828506112,144683644177350656,144745216828506112,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144815585572683776,144683644177350656,144815585572683776,144815585572683776,144683644177350656,144815585572683776,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144745216828506112,144683644177350656,144745216828506112,144745216828506112,144683644177350656,144745216828506112,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,841135018869250,144683644177350656,841135018869248,841135018737664,568456135180802,841135018737664,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,594844414247426,568456135049216,594844414247424,594844414115840,568456135180802,594844414115840,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,630028786336258,568456135049216,630028786336256,630028786204672,568456135180802,630028786204672,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,594844414247426,568456135049216,594844414247424,594844414115840,568456135180802,594844414115840,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,700397530513922,568456135049216,700397530513920,700397530382336,568456135180802,700397530382336,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,594844414247426,568456135049216,594844414247424,594844414115840,568456135180802,594844414115840,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,630028786336258,568456135049216,630028786336256,630028786204672,568456135180802,630028786204672,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,594844414247426,568456135049216,594844414247424,594844414115840,568456135180802,594844414115840,568456135180800,568456135049216,577252228203010,568456135049216,577252228203008,577252228071424,568456135180802,577252228071424,568456135180800,568456135049216,144956323094724608,568456135049216,144956323094724608,144956323094593536,144683644211036160,144956323094593536,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144710032490102784,144683644210905088,144710032490102784,144710032489971712,144683644211036160,144710032489971712,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144745216862191616,144683644210905088,144745216862191616,144745216862060544,144683644211036160,144745216862060544,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144710032490102784,144683644210905088,144710032490102784,144710032489971712,144683644211036160,144710032489971712,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144815585606369280,144683644210905088,144815585606369280,144815585606238208,144683644211036160,144815585606238208,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144710032490102784,144683644210905088,144710032490102784,144710032489971712,144683644211036160,144710032489971712,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144745216862191616,144683644210905088,144745216862191616,144745216862060544,144683644211036160,144745216862060544,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144710032490102784,144683644210905088,144710032490102784,144710032489971712,144683644211036160,144710032489971712,144683644211036160,144683644210905088,144692440304058368,144683644210905088,144692440304058368,144692440303927296,144683644211036160,144692440303927296,144683644211036160,144683644210905088,144956323061039104,144683644210905088,144956323061039104,144956323061039104,144683644177350656,144956323061039104,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144745216828506112,144683644177350656,144745216828506112,144745216828506112,144683644177350656,144745216828506112,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144815585572683776,144683644177350656,144815585572683776,144815585572683776,144683644177350656,144815585572683776,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144745216828506112,144683644177350656,144745216828506112,144745216828506112,144683644177350656,144745216828506112,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,144710032456417280,144683644177350656,144710032456417280,144710032456417280,144683644177350656,144710032456417280,144683644177350656,144683644177350656,144692440270372864,144683644177350656,144692440270372864,144692440270372864,144683644177350656,144692440270372864,144683644177350656,144683644177350656,841134985183232,144683644177350656,841134985183232,841134985183232,568456101494784,841134985183232,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,630028752650240,568456101494784,630028752650240,630028752650240,568456101494784,630028752650240,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,700397496827904,568456101494784,700397496827904,700397496827904,568456101494784,700397496827904,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,630028752650240,568456101494784,630028752650240,630028752650240,568456101494784,630028752650240,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,594844380561408,568456101494784,594844380561408,594844380561408,568456101494784,594844380561408,568456101494784,568456101494784,577252194516992,568456101494784,577252194516992,577252194516992,568456101494784,577252194516992,568456101494784,568456101494784,0],[289632270724367364,1136912270098432,289632270656995328,1136912202989568,1138011781989376,1400795061027840,1138011714617344,1400794993655808,1155603967770624,1136912270361604,1155603900661760,1136912202989568,1138011781988352,1154504456142848,1138011714617344,1154504389033984,1190788339859456,1136912270360576,1190788272750592,1136912202989568,289368387933701124,1189688828231680,289368387866329088,1189688761122816,1155603968033792,1136912270361600,1155603900661760,1136912202989568,1138011781726208,1154504456406020,1138011714617344,1154504389033984,1261157084299264,1136912270098432,1261157016928256,1136912202989568,1138011781726208,1260057572671488,1138011714617344,1260057505300480,289385980119745540,1136912270098432,289385980052373504,1136912202989568,1138011781989376,1154504456406016,1138011714617344,1154504389033984,1190788339859456,1136912270361604,1190788272750592,1136912202989568,1138011781988352,1189688828231680,1138011714617344,1189688761122816,1155603967770624,1136912270360576,1155603900661760,1136912202989568,289368387933701124,1154504456142848,289368387866329088,1154504389033984,289632270724104192,1136912270361600,289632270656995328,1136912202989568,1138011781726208,1400795060764672,1138011714617344,1400794993655808,1155603968032768,1136912270098432,1155603900661760,1136912202989568,1138011781726208,1154504456404992,1138011714617344,1154504389033984,289421164491834372,1136912270098432,289421164424462336,1136912202989568,289368387933437952,1189688828494848,289368387866329088,1189688761122816,1155603967770624,1136912270098432,1155603900661760,1136912202989568,1138011781988352,1154504456142848,1138011714617344,1154504389033984,1261157084037120,1136912270360576,1261157016928256,1136912202989568,289368387933701124,1260057572409344,289368387866329088,1260057505300480,289385980119482368,1136912270361600,289385980052373504,1136912202989568,1138011781726208,1154504456142848,1138011714617344,1154504389033984,1190788340121600,1136912270098432,1190788272750592,1136912202989568,1138011781726208,1189688828493824,1138011714617344,1189688761122816,289385980119745540,1136912270098432,289385980052373504,1136912202989568,289368387933437952,1154504456406016,289368387866329088,1154504389033984,289632270724366336,1136912270098432,289632270656995328,1136912202989568,1138011781988352,1400795061026816,1138011714617344,1400794993655808,1155603967770624,1136912270360576,1155603900661760,1136912202989568,289368387933701124,1154504456142848,289368387866329088,1154504389033984,289421164491571200,1136912270361600,289421164424462336,1136912202989568,289368387933700096,1189688828231680,289368387866329088,1189688761122816,1155603968032768,1136912270360576,1155603900661760,1136912202989568,1138011781726208,1154504456404992,1138011714617344,1154504389033984,289491533236012036,1136912270098432,289491533168640000,1136912202989568,289368387933437952,1260057572672512,289368387866329088,1260057505300480,289385980119744512,1136912270098432,289385980052373504,1136912202989568,1138011781988352,1154504456404992,1138011714617344,1154504389033984,1190788339859456,1136912270360576,1190788272750592,1136912202989568,289368387933701124,1189688828231680,289368387866329088,1189688761122816,289385980119482368,1136912270361600,289385980052373504,1136912202989568,289368387933700096,1154504456142848,289368387866329088,1154504389033984,289632270724104192,1136912270360576,289632270656995328,1136912202989568,1138011781726208,1400795060764672,1138011714617344,1400794993655808,289385980119745540,1136912270098432,289385980052373504,1136912202989568,289368387933437952,1154504456406016,289368387866329088,1154504389033984,289421164491833344,1136912270098432,289421164424462336,1136912202989568,289368387933437952,1189688828493824,289368387866329088,1189688761122816,1155603967770624,1136912270098432,1155603900661760,1136912202989568,289368387933701124,1154504456142848,289368387866329088,1154504389033984,289491533235748864,1136912270361600,289491533168640000,1136912202989568,289368387933700096,1260057572409344,289368387866329088,1260057505300480,289385980119482368,1136912270360576,289385980052373504,1136912202989568,1138011781726208,1154504456142848,1138011714617344,1154504389033984,289421164491834372,1136912270098432,289421164424462336,1136912202989568,289368387933437952,1189688828494848,289368387866329088,1189688761122816,289385980119744512,1136912270098432,289385980052373504,1136912202989568,289368387933437952,1154504456404992,289368387866329088,1154504389033984,289632270724367360,1136912270098432,289632270656995328,1136912202989568,289368387933701124,289631171212739588,289368387866329088,289631171145367552,289385980119482368,1136912270361600,289385980052373504,1136912202989568,289368387933700096,1154504456142848,289368387866329088,1154504389033984,289421164491571200,1136912270360576,289421164424462336,1136912202989568,289368387933701120,1189688828231680,289368387866329088,1189688761122816,289385980119745540,289367288422073348,289385980052373504,289367288354701312,289368387933437952,1154504456406016,289368387866329088,1154504389033984,289491533236011008,1136912270098432,289491533168640000,1136912202989568,289368387933437952,1260057572671488,289368387866329088,1260057505300480,289385980119745536,1136912270098432,289385980052373504,1136912202989568,289368387933701124,289384880608117764,289368387866329088,289384880540745728,289421164491571200,1136912270361600,289421164424462336,1136912202989568,289368387933700096,1189688828231680,289368387866329088,1189688761122816,289385980119482368,1136912270360576,289385980052373504,1136912202989568,289368387933701120,1154504456142848,289368387866329088,1154504389033984,289632270724104192,289367288422073348,289632270656995328,289367288354701312,289368387933437952,289631171212476416,289368387866329088,289631171145367552,289385980119744512,1136912270098432,289385980052373504,1136912202989568,289368387933437952,1154504456404992,289368387866329088,1154504389033984,289421164491834368,1136912270098432,289421164424462336,1136912202989568,289368387933437952,289420064980206596,289368387866329088,289420064912834560,289385980119482368,289367288421810176,289385980052373504,289367288354701312,289368387933700096,1154504456142848,289368387866329088,1154504389033984,289491533235748864,1136912270360576,289491533168640000,1136912202989568,289368387933701120,1260057572409344,289368387866329088,1260057505300480,289385980119482368,289367288422073348,289385980052373504,289367288354701312,289368387933437952,289384880607854592,289368387866329088,289384880540745728,289421164491833344,1136912270098432,289421164424462336,1136912202989568,289368387933437952,1189688828493824,289368387866329088,1189688761122816,289385980119745536,1136912270098432,289385980052373504,1136912202989568,289368387933437952,289384880608117764,289368387866329088,289384880540745728,289632270724366336,289367288421810176,289632270656995328,289367288354701312,289368387933700096,289631171212738560,289368387866329088,289631171145367552,289385980119482368,1136912270360576,289385980052373504,1136912202989568,289368387933701120,1154504456142848,289368387866329088,1154504389033984,289421164491571200,289367288422073348,289421164424462336,289367288354701312,289368387933700096,289420064979943424,289368387866329088,289420064912834560,289385980119744512,289367288422072320,289385980052373504,289367288354701312,289368387933437952,1154504456404992,289368387866329088,1154504389033984,289491533236012032,1136912270098432,289491533168640000,1136912202989568,289368387933437952,289490433724384260,289368387866329088,289490433657012224,289385980119744512,289367288421810176,289385980052373504,289367288354701312,289368387933700096,289384880608116736,289368387866329088,289384880540745728,289421164491571200,1136912270360576,289421164424462336,1136912202989568,289368387933701120,1189688828231680,289368387866329088,1189688761122816,289385980119482368,289367288422073348,289385980052373504,289367288354701312,289368387933700096,289384880607854592,289368387866329088,289384880540745728,289632270724104192,289367288422072320,289632270656995328,289367288354701312,289368387933437952,289631171212476416,289368387866329088,289631171145367552,289385980119745536,1136912270098432,289385980052373504,1136912202989568,289368387933437952,289384880608117764,289368387866329088,289384880540745728,289421164491833344,289367288421810176,289421164424462336,289367288354701312,289368387933437952,289420064980205568,289368387866329088,289420064912834560,289385980119482368,289367288421810176,289385980052373504,289367288354701312,289368387933701120,1154504456142848,289368387866329088,1154504389033984,289491533235748864,289367288422073348,289491533168640000,289367288354701312,289368387933700096,289490433724121088,289368387866329088,289490433657012224,289385980119482368,289367288422072320,289385980052373504,289367288354701312,289368387933437952,289384880607854592,289368387866329088,289384880540745728,289421164491834368,1136912270098432,289421164424462336,1136912202989568,289368387933437952,289420064980206596,289368387866329088,289420064912834560,289385980119744512,289367288421810176,289385980052373504,289367288354701312,289368387933437952,289384880608116736,289368387866329088,289384880540745728,1401894572655620,289367288421810176,1401894505283584,289367288354701312,289368387933701120,289631171212739584,289368387866329088,289631171145367552,289385980119482368,289367288422073348,289385980052373504,289367288354701312,289368387933700096,289384880607854592,289368387866329088,289384880540745728,289421164491571200,289367288422072320,289421164424462336,289367288354701312,1138011781989380,289420064979943424,1138011714617344,289420064912834560,289385980119745536,289367288422073344,289385980052373504,289367288354701312,289368387933437952,289384880608117764,289368387866329088,289384880540745728,289491533236011008,289367288421810176,289491533168640000,289367288354701312,289368387933437952,289490433724383232,289368387866329088,289490433657012224,1155603968033796,289367288421810176,1155603900661760,289367288354701312,289368387933701120,289384880608117760,289368387866329088,289384880540745728,289421164491571200,289367288422073348,289421164424462336,289367288354701312,289368387933700096,289420064979943424,289368387866329088,289420064912834560,289385980119482368,289367288422072320,289385980052373504,289367288354701312,1138011781989380,289384880607854592,1138011714617344,289384880540745728,1401894572392448,289367288422073344,1401894505283584,289367288354701312,289368387933437952,289631171212476416,289368387866329088,289631171145367552,289385980119744512,289367288421810176,289385980052373504,289367288354701312,289368387933437952,289384880608116736,289368387866329088,289384880540745728,1190788340122628,289367288421810176,1190788272750592,289367288354701312,1138011781726208,289420064980206592,1138011714617344,289420064912834560,289385980119482368,289367288421810176,289385980052373504,289367288354701312,289368387933700096,289384880607854592,289368387866329088,289384880540745728,289491533235748864,289367288422072320,289491533168640000,289367288354701312,1138011781989380,289490433724121088,1138011714617344,289490433657012224,1155603967770624,289367288422073344,1155603900661760,289367288354701312,289368387933437952,289384880607854592,289368387866329088,289384880540745728,289421164491833344,289367288421810176,289421164424462336,289367288354701312,289368387933437952,289420064980205568,289368387866329088,289420064912834560,1155603968033796,289367288421810176,1155603900661760,289367288354701312,1138011781726208,289384880608117760,1138011714617344,289384880540745728,1401894572654592,289367288421810176,1401894505283584,289367288354701312,289368387933700096,289631171212738560,289368387866329088,289631171145367552,289385980119482368,289367288422072320,289385980052373504,289367288354701312,1138011781989380,289384880607854592,1138011714617344,289384880540745728,1190788339859456,289367288422073344,1190788272750592,289367288354701312,1138011781988352,289420064979943424,1138011714617344,289420064912834560,289385980119744512,289367288422072320,289385980052373504,289367288354701312,289368387933437952,289384880608116736,289368387866329088,289384880540745728,1261157084300292,289367288421810176,1261157016928256,289367288354701312,1138011781726208,289490433724384256,1138011714617344,289490433657012224,1155603968032768,289367288421810176,1155603900661760,289367288354701312,289368387933700096,289384880608116736,289368387866329088,289384880540745728,289421164491571200,289367288422072320,289421164424462336,289367288354701312,1138011781989380,289420064979943424,1138011714617344,289420064912834560,1155603967770624,289367288422073344,1155603900661760,289367288354701312,1138011781988352,289384880607854592,1138011714617344,289384880540745728,1401894572392448,289367288422072320,1401894505283584,289367288354701312,289368387933437952,289631171212476416,289368387866329088,289631171145367552,1155603968033796,289367288421810176,1155603900661760,289367288354701312,1138011781726208,289384880608117760,1138011714617344,289384880540745728,1190788340121600,289367288421810176,1190788272750592,289367288354701312,1138011781726208,289420064980205568,1138011714617344,289420064912834560,289385980119482368,289367288421810176,289385980052373504,289367288354701312,1138011781989380,289384880607854592,1138011714617344,289384880540745728,1261157084037120,289367288422073344,1261157016928256,289367288354701312,1138011781988352,289490433724121088,1138011714617344,289490433657012224,1155603967770624,289367288422072320,1155603900661760,289367288354701312,289368387933437952,289384880607854592,289368387866329088,289384880540745728,1190788340122628,289367288421810176,1190788272750592,289367288354701312,1138011781726208,289420064980206592,1138011714617344,289420064912834560,1155603968032768,289367288421810176,1155603900661760,289367288354701312,1138011781726208,289384880608116736,1138011714617344,289384880540745728,1401894572655616,289367288421810176,1401894505283584,289367288354701312,1138011781989380,1400795061027844,1138011714617344,1400794993655808,1155603967770624,289367288422073344,1155603900661760,289367288354701312,1138011781988352,289384880607854592,1138011714617344,289384880540745728,1190788339859456,289367288422072320,1190788272750592,289367288354701312,1138011781989376,289420064979943424,1138011714617344,289420064912834560,1155603968033796,1136912270361604,1155603900661760,1136912202989568,1138011781726208,289384880608117760,1138011714617344,289384880540745728,1261157084299264,289367288421810176,1261157016928256,289367288354701312,1138011781726208,289490433724383232,1138011714617344,289490433657012224,1155603968033792,289367288421810176,1155603900661760,289367288354701312,1138011781989380,1154504456406020,1138011714617344,1154504389033984,1190788339859456,289367288422073344,1190788272750592,289367288354701312,1138011781988352,289420064979943424,1138011714617344,289420064912834560,1155603967770624,289367288422072320,1155603900661760,289367288354701312,1138011781989376,289384880607854592,1138011714617344,289384880540745728,1401894572392448,1136912270361604,1401894505283584,1136912202989568,1138011781726208,1400795060764672,1138011714617344,1400794993655808,1155603968032768,289367288421810176,1155603900661760,289367288354701312,1138011781726208,289384880608116736,1138011714617344,289384880540745728,1190788340122624,289367288421810176,1190788272750592,289367288354701312,1138011781726208,1189688828494852,1138011714617344,1189688761122816,1155603967770624,1136912270098432,1155603900661760,1136912202989568,1138011781988352,289384880607854592,1138011714617344,289384880540745728,1261157084037120,289367288422072320,1261157016928256,289367288354701312,1138011781989376,289490433724121088,1138011714617344,289490433657012224,1155603967770624,1136912270361604,1155603900661760,1136912202989568,1138011781726208,1154504456142848,1138011714617344,1154504389033984,1190788340121600,289367288421810176,1190788272750592,289367288354701312,1138011781726208,289420064980205568,1138011714617344,289420064912834560,1155603968033792,289367288421810176,1155603900661760,289367288354701312,1138011781726208,1154504456406020,1138011714617344,1154504389033984,1401894572654592,1136912270098432,1401894505283584,1136912202989568,1138011781988352,1400795061026816,1138011714617344,1400794993655808,1155603967770624,289367288422072320,1155603900661760,289367288354701312,1138011781989376,289384880607854592,1138011714617344,289384880540745728,1190788339859456,1136912270361604,1190788272750592,1136912202989568,1138011781988352,1189688828231680,1138011714617344,1189688761122816,1155603968032768,1136912270360576,1155603900661760,1136912202989568,1138011781726208,289384880608116736,1138011714617344,289384880540745728,1261157084300288,289367288421810176,1261157016928256,289367288354701312,1138011781726208,1260057572672516,1138011714617344,1260057505300480,1155603968032768,1136912270098432,1155603900661760,1136912202989568,1138011781988352,1154504456404992,1138011714617344,1154504389033984,1190788339859456,289367288422072320,1190788272750592,289367288354701312,1138011781989376,289420064979943424,1138011714617344,289420064912834560,1155603967770624,1136912270361604,1155603900661760,1136912202989568,1138011781988352,1154504456142848,1138011714617344,1154504389033984,1401894572392448,1136912270360576,1401894505283584,1136912202989568,1138011781726208,1400795060764672,1138011714617344,1400794993655808,1155603968033792,289367288421810176,1155603900661760,289367288354701312,1138011781726208,1154504456406020,1138011714617344,1154504389033984,1190788340121600,1136912270098432,1190788272750592,1136912202989568,1138011781726208,1189688828493824,1138011714617344,1189688761122816,1155603967770624,1136912270098432,1155603900661760,1136912202989568,1138011781989376,289384880607854592,1138011714617344,289384880540745728,1261157084037120,1136912270361604,1261157016928256,1136912202989568,1138011781988352,1260057572409344,1138011714617344,1260057505300480,1155603967770624,1136912270360576,1155603900661760,1136912202989568,1138011781726208,1154504456142848,1138011714617344,1154504389033984,1190788340122624,289367288421810176,1190788272750592,289367288354701312,1138011781726208,1189688828494852,1138011714617344,1189688761122816,1155603968032768,1136912270098432,1155603900661760,1136912202989568,1138011781726208,1154504456404992,1138011714617344,1154504389033984,0],[578984165983651848,578843428360552448,578984165983125504,578843428360552448,2523413680228360,2382676057128960,2523413679702016,2382676057128960,578983066472024072,578842328848924672,578983066471497728,578842328848924672,2522314168600584,2381576545501184,2522314168074240,2381576545501184,578980867448768520,578840129825669120,578980867448242176,578840129825669120,2520115145345032,2379377522245632,2520115144818688,2379377522245632,578980867448768520,578840129825669120,578980867448242176,578840129825669120,2520115145345032,2379377522245632,2520115144818688,2379377522245632,578737875244285952,578737875379027968,578737875244285952,578737875378503680,2277122940862464,2277123075604480,2277122940862464,2277123075080192,578736775732658176,578736775867400192,578736775732658176,578736775866875904,2276023429234688,2276023563976704,2276023429234688,2276023563452416,578734576709402624,578734576844144640,578734576709402624,578734576843620352,2273824405979136,2273824540721152,2273824405979136,2273824540196864,578734576709402624,578734576844144640,578734576709402624,578734576843620352,2273824405979136,2273824540721152,2273824405979136,2273824540196864,578737875379030024,578737875244285952,578737875378503680,578737875244285952,2277123075606536,2277122940862464,2277123075080192,2277122940862464,578736775867402248,578736775732658176,578736775866875904,578736775732658176,2276023563978760,2276023429234688,2276023563452416,2276023429234688,578734576844146696,578734576709402624,578734576843620352,578734576709402624,2273824540723208,2273824405979136,2273824540196864,2273824405979136,578734576844146696,578734576709402624,578734576843620352,578734576709402624,2273824540723208,2273824405979136,2273824540196864,2273824405979136,578843428360552448,578984165848907776,578843428360552448,578984165848907776,2382676057128960,2523413545484288,2382676057128960,2523413545484288,578842328848924672,578983066337280000,578842328848924672,578983066337280000,2381576545501184,2522314033856512,2381576545501184,2522314033856512,578840129825669120,578980867314024448,578840129825669120,578980867314024448,2379377522245632,2520115010600960,2379377522245632,2520115010600960,578840129825669120,578980867314024448,578840129825669120,578980867314024448,2379377522245632,2520115010600960,2379377522245632,2520115010600960,578773059751118856,578773059616374784,578773059750592512,578773059616374784,2312307447695368,2312307312951296,2312307447169024,2312307312951296,578771960239491080,578771960104747008,578771960238964736,578771960104747008,2311207936067592,2311207801323520,2311207935541248,2311207801323520,578769761216235528,578769761081491456,578769761215709184,578769761081491456,2309008912812040,2309008778067968,2309008912285696,2309008778067968,578769761216235528,578769761081491456,578769761215709184,578769761081491456,2309008912812040,2309008778067968,2309008912285696,2309008778067968,578737875244285952,578737875244285952,578737875244285952,578737875244285952,2277122940862464,2277122940862464,2277122940862464,2277122940862464,578736775732658176,578736775732658176,578736775732658176,578736775732658176,2276023429234688,2276023429234688,2276023429234688,2276023429234688,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578737875379030024,578737875244285952,578737875378503680,578737875244285952,2277123075606536,2277122940862464,2277123075080192,2277122940862464,578736775867402248,578736775732658176,578736775866875904,578736775732658176,2276023563978760,2276023429234688,2276023563452416,2276023429234688,578734576844146696,578734576709402624,578734576843620352,578734576709402624,2273824540723208,2273824405979136,2273824540196864,2273824405979136,578734576844146696,578734576709402624,578734576843620352,578734576709402624,2273824540723208,2273824405979136,2273824540196864,2273824405979136,578773059616374784,578773059616374784,578773059616374784,578773059616374784,2312307312951296,2312307312951296,2312307312951296,2312307312951296,578771960104747008,578771960104747008,578771960104747008,578771960104747008,2311207801323520,2311207801323520,2311207801323520,2311207801323520,578769761081491456,578769761081491456,578769761081491456,578769761081491456,2309008778067968,2309008778067968,2309008778067968,2309008778067968,578769761081491456,578769761081491456,578769761081491456,578769761081491456,2309008778067968,2309008778067968,2309008778067968,2309008778067968,578843428495296520,578984165983651840,578843428494770176,578984165983125504,2382676191873032,2523413680228352,2382676191346688,2523413679702016,578842328983668744,578983066472024064,578842328983142400,578983066471497728,2381576680245256,2522314168600576,2381576679718912,2522314168074240,578840129960413192,578980867448768512,578840129959886848,578980867448242176,2379377656989704,2520115145345024,2379377656463360,2520115144818688,578840129960413192,578980867448768512,578840129959886848,578980867448242176,2379377656989704,2520115145345024,2379377656463360,2520115144818688,578737875244285952,578737875244285952,578737875244285952,578737875244285952,2277122940862464,2277122940862464,2277122940862464,2277122940862464,578736775732658176,578736775732658176,578736775732658176,578736775732658176,2276023429234688,2276023429234688,2276023429234688,2276023429234688,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578737875379030024,578737875379030016,578737875378503680,578737875378503680,2277123075606536,2277123075606528,2277123075080192,2277123075080192,578736775867402248,578736775867402240,578736775866875904,578736775866875904,2276023563978760,2276023563978752,2276023563452416,2276023563452416,578734576844146696,578734576844146688,578734576843620352,578734576843620352,2273824540723208,2273824540723200,2273824540196864,2273824540196864,578734576844146696,578734576844146688,578734576843620352,578734576843620352,2273824540723208,2273824540723200,2273824540196864,2273824540196864,578984165983649792,578843428360552448,578984165983125504,578843428360552448,2523413680226304,2382676057128960,2523413679702016,2382676057128960,578983066472022016,578842328848924672,578983066471497728,578842328848924672,2522314168598528,2381576545501184,2522314168074240,2381576545501184,578980867448766464,578840129825669120,578980867448242176,578840129825669120,2520115145342976,2379377522245632,2520115144818688,2379377522245632,578980867448766464,578840129825669120,578980867448242176,578840129825669120,2520115145342976,2379377522245632,2520115144818688,2379377522245632,578773059751118856,578773059751118848,578773059750592512,578773059750592512,2312307447695368,2312307447695360,2312307447169024,2312307447169024,578771960239491080,578771960239491072,578771960238964736,578771960238964736,2311207936067592,2311207936067584,2311207935541248,2311207935541248,578769761216235528,578769761216235520,578769761215709184,578769761215709184,2309008912812040,2309008912812032,2309008912285696,2309008912285696,578769761216235528,578769761216235520,578769761215709184,578769761215709184,2309008912812040,2309008912812032,2309008912285696,2309008912285696,578737875379027968,578737875244285952,578737875378503680,578737875244285952,2277123075604480,2277122940862464,2277123075080192,2277122940862464,578736775867400192,578736775732658176,578736775866875904,578736775732658176,2276023563976704,2276023429234688,2276023563452416,2276023429234688,578734576844144640,578734576709402624,578734576843620352,578734576709402624,2273824540721152,2273824405979136,2273824540196864,2273824405979136,578734576844144640,578734576709402624,578734576843620352,578734576709402624,2273824540721152,2273824405979136,2273824540196864,2273824405979136,578737875379030024,578737875379030016,578737875378503680,578737875378503680,2277123075606536,2277123075606528,2277123075080192,2277123075080192,578736775867402248,578736775867402240,578736775866875904,578736775866875904,2276023563978760,2276023563978752,2276023563452416,2276023563452416,578734576844146696,578734576844146688,578734576843620352,578734576843620352,2273824540723208,2273824540723200,2273824540196864,2273824540196864,578734576844146696,578734576844146688,578734576843620352,578734576843620352,2273824540723208,2273824540723200,2273824540196864,2273824540196864,578773059751116800,578773059616374784,578773059750592512,578773059616374784,2312307447693312,2312307312951296,2312307447169024,2312307312951296,578771960239489024,578771960104747008,578771960238964736,578771960104747008,2311207936065536,2311207801323520,2311207935541248,2311207801323520,578769761216233472,578769761081491456,578769761215709184,578769761081491456,2309008912809984,2309008778067968,2309008912285696,2309008778067968,578769761216233472,578769761081491456,578769761215709184,578769761081491456,2309008912809984,2309008778067968,2309008912285696,2309008778067968,578984165848907776,578843428495296512,578984165848907776,578843428494770176,2523413545484288,2382676191873024,2523413545484288,2382676191346688,578983066337280000,578842328983668736,578983066337280000,578842328983142400,2522314033856512,2381576680245248,2522314033856512,2381576679718912,578980867314024448,578840129960413184,578980867314024448,578840129959886848,2520115010600960,2379377656989696,2520115010600960,2379377656463360,578980867314024448,578840129960413184,578980867314024448,578840129959886848,2520115010600960,2379377656989696,2520115010600960,2379377656463360,578737875379027968,578737875244285952,578737875378503680,578737875244285952,2277123075604480,2277122940862464,2277123075080192,2277122940862464,578736775867400192,578736775732658176,578736775866875904,578736775732658176,2276023563976704,2276023429234688,2276023563452416,2276023429234688,578734576844144640,578734576709402624,578734576843620352,578734576709402624,2273824540721152,2273824405979136,2273824540196864,2273824405979136,578734576844144640,578734576709402624,578734576843620352,578734576709402624,2273824540721152,2273824405979136,2273824540196864,2273824405979136,578737875244285952,578737875379030016,578737875244285952,578737875378503680,2277122940862464,2277123075606528,2277122940862464,2277123075080192,578736775732658176,578736775867402240,578736775732658176,578736775866875904,2276023429234688,2276023563978752,2276023429234688,2276023563452416,578734576709402624,578734576844146688,578734576709402624,578734576843620352,2273824405979136,2273824540723200,2273824405979136,2273824540196864,578734576709402624,578734576844146688,578734576709402624,578734576843620352,2273824405979136,2273824540723200,2273824405979136,2273824540196864,578843428495294464,578984165983649792,578843428494770176,578984165983125504,2382676191870976,2523413680226304,2382676191346688,2523413679702016,578842328983666688,578983066472022016,578842328983142400,578983066471497728,2381576680243200,2522314168598528,2381576679718912,2522314168074240,578840129960411136,578980867448766464,578840129959886848,578980867448242176,2379377656987648,2520115145342976,2379377656463360,2520115144818688,578840129960411136,578980867448766464,578840129959886848,578980867448242176,2379377656987648,2520115145342976,2379377656463360,2520115144818688,578773059616374784,578773059751118848,578773059616374784,578773059750592512,2312307312951296,2312307447695360,2312307312951296,2312307447169024,578771960104747008,578771960239491072,578771960104747008,578771960238964736,2311207801323520,2311207936067584,2311207801323520,2311207935541248,578769761081491456,578769761216235520,578769761081491456,578769761215709184,2309008778067968,2309008912812032,2309008778067968,2309008912285696,578769761081491456,578769761216235520,578769761081491456,578769761215709184,2309008778067968,2309008912812032,2309008778067968,2309008912285696,578737875379027968,578737875379027968,578737875378503680,578737875378503680,2277123075604480,2277123075604480,2277123075080192,2277123075080192,578736775867400192,578736775867400192,578736775866875904,578736775866875904,2276023563976704,2276023563976704,2276023563452416,2276023563452416,578734576844144640,578734576844144640,578734576843620352,578734576843620352,2273824540721152,2273824540721152,2273824540196864,2273824540196864,578734576844144640,578734576844144640,578734576843620352,578734576843620352,2273824540721152,2273824540721152,2273824540196864,2273824540196864,578737875244285952,578737875379030016,578737875244285952,578737875378503680,2277122940862464,2277123075606528,2277122940862464,2277123075080192,578736775732658176,578736775867402240,578736775732658176,578736775866875904,2276023429234688,2276023563978752,2276023429234688,2276023563452416,578734576709402624,578734576844146688,578734576709402624,578734576843620352,2273824405979136,2273824540723200,2273824405979136,2273824540196864,578734576709402624,578734576844146688,578734576709402624,578734576843620352,2273824405979136,2273824540723200,2273824405979136,2273824540196864,578773059751116800,578773059751116800,578773059750592512,578773059750592512,2312307447693312,2312307447693312,2312307447169024,2312307447169024,578771960239489024,578771960239489024,578771960238964736,578771960238964736,2311207936065536,2311207936065536,2311207935541248,2311207935541248,578769761216233472,578769761216233472,578769761215709184,578769761215709184,2309008912809984,2309008912809984,2309008912285696,2309008912285696,578769761216233472,578769761216233472,578769761215709184,578769761215709184,2309008912809984,2309008912809984,2309008912285696,2309008912285696,578843428360552448,578984165848907776,578843428360552448,578984165848907776,2382676057128960,2523413545484288,2382676057128960,2523413545484288,578842328848924672,578983066337280000,578842328848924672,578983066337280000,2381576545501184,2522314033856512,2381576545501184,2522314033856512,578840129825669120,578980867314024448,578840129825669120,578980867314024448,2379377522245632,2520115010600960,2379377522245632,2520115010600960,578840129825669120,578980867314024448,578840129825669120,578980867314024448,2379377522245632,2520115010600960,2379377522245632,2520115010600960,578737875379027968,578737875379027968,578737875378503680,578737875378503680,2277123075604480,2277123075604480,2277123075080192,2277123075080192,578736775867400192,578736775867400192,578736775866875904,578736775866875904,2276023563976704,2276023563976704,2276023563452416,2276023563452416,578734576844144640,578734576844144640,578734576843620352,578734576843620352,2273824540721152,2273824540721152,2273824540196864,2273824540196864,578734576844144640,578734576844144640,578734576843620352,578734576843620352,2273824540721152,2273824540721152,2273824540196864,2273824540196864,578737875244285952,578737875244285952,578737875244285952,578737875244285952,2277122940862464,2277122940862464,2277122940862464,2277122940862464,578736775732658176,578736775732658176,578736775732658176,578736775732658176,2276023429234688,2276023429234688,2276023429234688,2276023429234688,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578984165848907776,578843428495294464,578984165848907776,578843428494770176,2523413545484288,2382676191870976,2523413545484288,2382676191346688,578983066337280000,578842328983666688,578983066337280000,578842328983142400,2522314033856512,2381576680243200,2522314033856512,2381576679718912,578980867314024448,578840129960411136,578980867314024448,578840129959886848,2520115010600960,2379377656987648,2520115010600960,2379377656463360,578980867314024448,578840129960411136,578980867314024448,578840129959886848,2520115010600960,2379377656987648,2520115010600960,2379377656463360,578773059616374784,578773059616374784,578773059616374784,578773059616374784,2312307312951296,2312307312951296,2312307312951296,2312307312951296,578771960104747008,578771960104747008,578771960104747008,578771960104747008,2311207801323520,2311207801323520,2311207801323520,2311207801323520,578769761081491456,578769761081491456,578769761081491456,578769761081491456,2309008778067968,2309008778067968,2309008778067968,2309008778067968,578769761081491456,578769761081491456,578769761081491456,578769761081491456,2309008778067968,2309008778067968,2309008778067968,2309008778067968,578737875244285952,578737875379027968,578737875244285952,578737875378503680,2277122940862464,2277123075604480,2277122940862464,2277123075080192,578736775732658176,578736775867400192,578736775732658176,578736775866875904,2276023429234688,2276023563976704,2276023429234688,2276023563452416,578734576709402624,578734576844144640,578734576709402624,578734576843620352,2273824405979136,2273824540721152,2273824405979136,2273824540196864,578734576709402624,578734576844144640,578734576709402624,578734576843620352,2273824405979136,2273824540721152,2273824405979136,2273824540196864,578737875244285952,578737875244285952,578737875244285952,578737875244285952,2277122940862464,2277122940862464,2277122940862464,2277122940862464,578736775732658176,578736775732658176,578736775732658176,578736775732658176,2276023429234688,2276023429234688,2276023429234688,2276023429234688,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578734576709402624,578734576709402624,578734576709402624,578734576709402624,2273824405979136,2273824405979136,2273824405979136,2273824405979136,578773059616374784,578773059751116800,578773059616374784,578773059750592512,2312307312951296,2312307447693312,2312307312951296,2312307447169024,578771960104747008,578771960239489024,578771960104747008,578771960238964736,2311207801323520,2311207936065536,2311207801323520,2311207935541248,578769761081491456,578769761216233472,578769761081491456,578769761215709184,2309008778067968,2309008912809984,2309008778067968,2309008912285696,578769761081491456,578769761216233472,578769761081491456,578769761215709184,2309008778067968,2309008912809984,2309008778067968,2309008912285696,0],[1157687956502220816,4766451895373840,1157687956232732672,4766451625885696,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157687956502216704,4766451895369728,1157687956232732672,4766451625885696,1157473551734804480,4552047127957504,1157473551465316352,4552046858469376,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157539522432471040,4618017825624064,1157539522162982912,4618017556135936,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157687956501168128,4766451894321152,1157687956232732672,4766451625885696,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157686856990593040,4765352383746064,1157686856721104896,4765352114257920,1157687956501168128,4766451894321152,1157687956232732672,4766451625885696,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157686856990588928,4765352383741952,1157686856721104896,4765352114257920,1157473551734804480,4552047127957504,1157473551465316352,4552046858469376,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157539522432471040,4618017825624064,1157539522162982912,4618017556135936,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157476850269687824,4555345662840848,1157476850000199680,4555345393352704,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157686856989540352,4765352382693376,1157686856721104896,4765352114257920,1157476850269683712,4555345662836736,1157476850000199680,4555345393352704,1157684657967337488,4763153360490512,1157684657697849344,4763153091002368,1157686856989540352,4765352382693376,1157686856721104896,4765352114257920,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157684657967333376,4763153360486400,1157684657697849344,4763153091002368,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157539522432471040,4618017825624064,1157539522162982912,4618017556135936,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157475750758060048,4554246151213072,1157475750488571904,4554245881724928,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157475750758055936,4554246151208960,1157475750488571904,4554245881724928,1157684657967337488,4763153360490512,1157684657697849344,4763153091002368,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157684657967333376,4763153360486400,1157684657697849344,4763153091002368,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157539522432471040,4618017825624064,1157539522162982912,4618017556135936,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157547219013865488,4625714407018512,1157547218744377344,4625714137530368,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157547219013861376,4625714407014400,1157547218744377344,4625714137530368,1157473551734804496,4552047127957520,1157473551465316352,4552046858469376,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157680259920826384,4758755313979408,1157680259651338240,4758755044491264,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157547219012812800,4625714405965824,1157547218744377344,4625714137530368,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157546119502237712,4624614895390736,1157546119232749568,4624614625902592,1157547219012812800,4625714405965824,1157547218744377344,4625714137530368,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157546119502233600,4624614895386624,1157546119232749568,4624614625902592,1157473551734804496,4552047127957520,1157473551465316352,4552046858469376,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157680259920826384,4758755313979408,1157680259651338240,4758755044491264,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157476850269687824,4555345662840848,1157476850000199680,4555345393352704,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157546119501185024,4624614894338048,1157546119232749568,4624614625902592,1157476850269683712,4555345662836736,1157476850000199680,4555345393352704,1157543920478982160,4622415872135184,1157543920209494016,4622415602647040,1157546119501185024,4624614894338048,1157546119232749568,4624614625902592,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157543920478978048,4622415872131072,1157543920209494016,4622415602647040,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157680259920826384,4758755313979408,1157680259651338240,4758755044491264,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157475750758060048,4554246151213072,1157475750488571904,4554245881724928,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157475750758055936,4554246151208960,1157475750488571904,4554245881724928,1157543920478982160,4622415872135184,1157543920209494016,4622415602647040,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157543920478978048,4622415872131072,1157543920209494016,4622415602647040,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157680259920826384,4758755313979408,1157680259651338240,4758755044491264,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157687956502220800,4766451895373824,1157687956232732672,4766451625885696,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157687956502216704,4766451895369728,1157687956232732672,4766451625885696,1157473551734804496,4552047127957520,1157473551465316352,4552046858469376,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157539522432471056,4618017825624080,1157539522162982912,4618017556135936,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157687956501168128,4766451894321152,1157687956232732672,4766451625885696,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157686856990593024,4765352383746048,1157686856721104896,4765352114257920,1157687956501168128,4766451894321152,1157687956232732672,4766451625885696,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157686856990588928,4765352383741952,1157686856721104896,4765352114257920,1157473551734804496,4552047127957520,1157473551465316352,4552046858469376,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157539522432471056,4618017825624080,1157539522162982912,4618017556135936,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157476850269687808,4555345662840832,1157476850000199680,4555345393352704,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157686856989540352,4765352382693376,1157686856721104896,4765352114257920,1157476850269683712,4555345662836736,1157476850000199680,4555345393352704,1157684657967337472,4763153360490496,1157684657697849344,4763153091002368,1157686856989540352,4765352382693376,1157686856721104896,4765352114257920,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157684657967333376,4763153360486400,1157684657697849344,4763153091002368,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157539522432471056,4618017825624080,1157539522162982912,4618017556135936,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157475750758060032,4554246151213056,1157475750488571904,4554245881724928,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157475750758055936,4554246151208960,1157475750488571904,4554245881724928,1157684657967337472,4763153360490496,1157684657697849344,4763153091002368,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157684657967333376,4763153360486400,1157684657697849344,4763153091002368,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157539522432471056,4618017825624080,1157539522162982912,4618017556135936,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157547219013865472,4625714407018496,1157547218744377344,4625714137530368,1157539522432466944,4618017825619968,1157539522162982912,4618017556135936,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157547219013861376,4625714407014400,1157547218744377344,4625714137530368,1157473551734804480,4552047127957504,1157473551465316352,4552046858469376,1157475750757007360,4554246150160384,1157475750488571904,4554245881724928,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157680259920826368,4758755313979392,1157680259651338240,4758755044491264,1157684657966284800,4763153359437824,1157684657697849344,4763153091002368,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157547219012812800,4625714405965824,1157547218744377344,4625714137530368,1157539522431418368,4618017824571392,1157539522162982912,4618017556135936,1157546119502237696,4624614895390720,1157546119232749568,4624614625902592,1157547219012812800,4625714405965824,1157547218744377344,4625714137530368,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157546119502233600,4624614895386624,1157546119232749568,4624614625902592,1157473551734804480,4552047127957504,1157473551465316352,4552046858469376,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157473551734800384,4552047127953408,1157473551465316352,4552046858469376,1157680259920826368,4758755313979392,1157680259651338240,4758755044491264,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157469153688293392,4547649081446416,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157476850269687808,4555345662840832,1157476850000199680,4555345393352704,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157546119501185024,4624614894338048,1157546119232749568,4624614625902592,1157476850269683712,4555345662836736,1157476850000199680,4555345393352704,1157543920478982144,4622415872135168,1157543920209494016,4622415602647040,1157546119501185024,4624614894338048,1157546119232749568,4624614625902592,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157543920478978048,4622415872131072,1157543920209494016,4622415602647040,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157473551733751808,4552047126904832,1157473551465316352,4552046858469376,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157680259920826368,4758755313979392,1157680259651338240,4758755044491264,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259920822272,4758755313975296,1157680259651338240,4758755044491264,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157475750758060032,4554246151213056,1157475750488571904,4554245881724928,1157476850268635136,4555345661788160,1157476850000199680,4555345393352704,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157475750758055936,4554246151208960,1157475750488571904,4554245881724928,1157543920478982144,4622415872135168,1157543920209494016,4622415602647040,1157543920477929472,4622415871082496,1157543920209494016,4622415602647040,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157543920478978048,4622415872131072,1157543920209494016,4622415602647040,1157469153688293376,4547649081446400,1157469153418805248,4547648811958272,1157469153687240704,4547649080393728,1157469153418805248,4547648811958272,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,1157469153688289280,4547649081442304,1157469153418805248,4547648811958272,1157680259920826368,4758755313979392,1157680259651338240,4758755044491264,1157680259919773696,4758755312926720,1157680259651338240,4758755044491264,0],[2315095537539358752,2314938306837610496,2315095537537253376,2314938306837610496,9252528325664800,9095297623916544,9252528323559424,9095297623916544,2315095537539350528,2314938306837610496,2315095537537253376,2314938306837610496,9252528325656576,9095297623916544,9252528323559424,9095297623916544,2314953700539375648,2315079044325965824,2314953700537270272,2315079044325965824,9110691325681696,9236035112271872,9110691323576320,9236035112271872,2314953700539367424,2315079044325965824,2314953700537270272,2315079044325965824,9110691325673472,9236035112271872,9110691323576320,9236035112271872,2315092239004475424,2314954799512027136,2315092239002370048,2314954799512027136,9249229790781472,9111790298333184,9249229788676096,9111790298333184,2315092239004467200,2314954799512027136,2315092239002370048,2314954799512027136,9249229790773248,9111790298333184,9249229788676096,9111790298333184,2314951501516120096,2315094437488754688,2314951501514014720,2315094437488754688,9108492302426144,9251428275060736,9108492300320768,9251428275060736,2314951501516111872,2315094437488754688,2314951501514014720,2315094437488754688,9108492302417920,9251428275060736,9108492300320768,9251428275060736,2315087840957964320,2314951500977143808,2315087840955858944,2314951500977143808,9244831744270368,9108491763449856,9244831742164992,9108491763449856,2315087840957956096,2314951500977143808,2315087840955858944,2314951500977143808,9244831744262144,9108491763449856,9244831742164992,9108491763449856,2314947103469608992,2315092238465499136,2314947103467503616,2315092238465499136,9104094255915040,9249229251805184,9104094253809664,9249229251805184,2314947103469600768,2315092238465499136,2314947103467503616,2315092238465499136,9104094255906816,9249229251805184,9104094253809664,9249229251805184,2315087840957964320,2314947102930632704,2315087840955858944,2314947102930632704,9244831744270368,9104093716938752,9244831742164992,9104093716938752,2315087840957956096,2314947102930632704,2315087840955858944,2314947102930632704,9244831744262144,9104093716938752,9244831742164992,9104093716938752,2314947103469608992,2315087840418988032,2314947103467503616,2315087840418988032,9104094255915040,9244831205294080,9104094253809664,9244831205294080,2314947103469600768,2315087840418988032,2314947103467503616,2315087840418988032,9104094255906816,9244831205294080,9104094253809664,9244831205294080,2315079044864942112,2314947102930632704,2315079044862836736,2314947102930632704,9236035651248160,9104093716938752,9236035649142784,9104093716938752,2315079044864933888,2314947102930632704,2315079044862836736,2314947102930632704,9236035651239936,9104093716938752,9236035649142784,9104093716938752,2314938307376586784,2315087840418988032,2314938307374481408,2315087840418988032,9095298162892832,9244831205294080,9095298160787456,9244831205294080,2314938307376578560,2315087840418988032,2314938307374481408,2315087840418988032,9095298162884608,9244831205294080,9095298160787456,9244831205294080,2315079044864942112,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248160,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586784,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892832,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942112,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248160,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586784,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892832,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942112,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248160,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586784,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892832,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2314954800051003392,2314938306837610496,2314954800048898048,2314938306837610496,9111790837309440,9095297623916544,9111790835204096,9095297623916544,2314954800050995200,2314938306837610496,2314954800048898048,2314938306837610496,9111790837301248,9095297623916544,9111790835204096,9095297623916544,2315094438027730944,2315079044325965824,2315094438025625600,2315079044325965824,9251428814036992,9236035112271872,9251428811931648,9236035112271872,2315094438027722752,2315079044325965824,2315094438025625600,2315079044325965824,9251428814028800,9236035112271872,9251428811931648,9236035112271872,2314951501516120064,2315095537000382464,2314951501514014720,2315095537000382464,9108492302426112,9252527786688512,9108492300320768,9252527786688512,2314951501516111872,2315095537000382464,2314951501514014720,2315095537000382464,9108492302417920,9252527786688512,9108492300320768,9252527786688512,2315092239004475392,2314953700000399360,2315092239002370048,2314953700000399360,9249229790781440,9110690786705408,9249229788676096,9110690786705408,2315092239004467200,2314953700000399360,2315092239002370048,2314953700000399360,9249229790773248,9110690786705408,9249229788676096,9110690786705408,2314947103469608960,2315092238465499136,2314947103467503616,2315092238465499136,9104094255915008,9249229251805184,9104094253809664,9249229251805184,2314947103469600768,2315092238465499136,2314947103467503616,2315092238465499136,9104094255906816,9249229251805184,9104094253809664,9249229251805184,2315087840957964288,2314951500977143808,2315087840955858944,2314951500977143808,9244831744270336,9108491763449856,9244831742164992,9108491763449856,2315087840957956096,2314951500977143808,2315087840955858944,2314951500977143808,9244831744262144,9108491763449856,9244831742164992,9108491763449856,2314947103469608960,2315087840418988032,2314947103467503616,2315087840418988032,9104094255915008,9244831205294080,9104094253809664,9244831205294080,2314947103469600768,2315087840418988032,2314947103467503616,2315087840418988032,9104094255906816,9244831205294080,9104094253809664,9244831205294080,2315087840957964288,2314947102930632704,2315087840955858944,2314947102930632704,9244831744270336,9104093716938752,9244831742164992,9104093716938752,2315087840957956096,2314947102930632704,2315087840955858944,2314947102930632704,9244831744262144,9104093716938752,9244831742164992,9104093716938752,2314938307376586752,2315087840418988032,2314938307374481408,2315087840418988032,9095298162892800,9244831205294080,9095298160787456,9244831205294080,2314938307376578560,2315087840418988032,2314938307374481408,2315087840418988032,9095298162884608,9244831205294080,9095298160787456,9244831205294080,2315079044864942080,2314947102930632704,2315079044862836736,2314947102930632704,9236035651248128,9104093716938752,9236035649142784,9104093716938752,2315079044864933888,2314947102930632704,2315079044862836736,2314947102930632704,9236035651239936,9104093716938752,9236035649142784,9104093716938752,2314938307376586752,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892800,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942080,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248128,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586752,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892800,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942080,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248128,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586752,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892800,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942080,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248128,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314954800051003424,2315079044325965824,2314954800048898048,2315079044325965824,9111790837309472,9236035112271872,9111790835204096,9236035112271872,2314954800050995200,2315079044325965824,2314954800048898048,2315079044325965824,9111790837301248,9236035112271872,9111790835204096,9236035112271872,2315094438027730976,2314938306837610496,2315094438025625600,2314938306837610496,9251428814037024,9095297623916544,9251428811931648,9095297623916544,2315094438027722752,2314938306837610496,2315094438025625600,2314938306837610496,9251428814028800,9095297623916544,9251428811931648,9095297623916544,2314951501516120096,2315095537000382464,2314951501514014720,2315095537000382464,9108492302426144,9252527786688512,9108492300320768,9252527786688512,2314951501516111872,2315095537000382464,2314951501514014720,2315095537000382464,9108492302417920,9252527786688512,9108492300320768,9252527786688512,2315092239004475424,2314953700000399360,2315092239002370048,2314953700000399360,9249229790781472,9110690786705408,9249229788676096,9110690786705408,2315092239004467200,2314953700000399360,2315092239002370048,2314953700000399360,9249229790773248,9110690786705408,9249229788676096,9110690786705408,2314947103469608992,2315092238465499136,2314947103467503616,2315092238465499136,9104094255915040,9249229251805184,9104094253809664,9249229251805184,2314947103469600768,2315092238465499136,2314947103467503616,2315092238465499136,9104094255906816,9249229251805184,9104094253809664,9249229251805184,2315087840957964320,2314951500977143808,2315087840955858944,2314951500977143808,9244831744270368,9108491763449856,9244831742164992,9108491763449856,2315087840957956096,2314951500977143808,2315087840955858944,2314951500977143808,9244831744262144,9108491763449856,9244831742164992,9108491763449856,2314947103469608992,2315087840418988032,2314947103467503616,2315087840418988032,9104094255915040,9244831205294080,9104094253809664,9244831205294080,2314947103469600768,2315087840418988032,2314947103467503616,2315087840418988032,9104094255906816,9244831205294080,9104094253809664,9244831205294080,2315087840957964320,2314947102930632704,2315087840955858944,2314947102930632704,9244831744270368,9104093716938752,9244831742164992,9104093716938752,2315087840957956096,2314947102930632704,2315087840955858944,2314947102930632704,9244831744262144,9104093716938752,9244831742164992,9104093716938752,2314938307376586784,2315087840418988032,2314938307374481408,2315087840418988032,9095298162892832,9244831205294080,9095298160787456,9244831205294080,2314938307376578560,2315087840418988032,2314938307374481408,2315087840418988032,9095298162884608,9244831205294080,9095298160787456,9244831205294080,2315079044864942112,2314947102930632704,2315079044862836736,2314947102930632704,9236035651248160,9104093716938752,9236035649142784,9104093716938752,2315079044864933888,2314947102930632704,2315079044862836736,2314947102930632704,9236035651239936,9104093716938752,9236035649142784,9104093716938752,2314938307376586784,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892832,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942112,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248160,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586784,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892832,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942112,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248160,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586784,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892832,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942112,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248160,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2315095537539358720,2315079044325965824,2315095537537253376,2315079044325965824,9252528325664768,9236035112271872,9252528323559424,9236035112271872,2315095537539350528,2315079044325965824,2315095537537253376,2315079044325965824,9252528325656576,9236035112271872,9252528323559424,9236035112271872,2314953700539375616,2314938306837610496,2314953700537270272,2314938306837610496,9110691325681664,9095297623916544,9110691323576320,9095297623916544,2314953700539367424,2314938306837610496,2314953700537270272,2314938306837610496,9110691325673472,9095297623916544,9110691323576320,9095297623916544,2315092239004475392,2314954799512027136,2315092239002370048,2314954799512027136,9249229790781440,9111790298333184,9249229788676096,9111790298333184,2315092239004467200,2314954799512027136,2315092239002370048,2314954799512027136,9249229790773248,9111790298333184,9249229788676096,9111790298333184,2314951501516120064,2315094437488754688,2314951501514014720,2315094437488754688,9108492302426112,9251428275060736,9108492300320768,9251428275060736,2314951501516111872,2315094437488754688,2314951501514014720,2315094437488754688,9108492302417920,9251428275060736,9108492300320768,9251428275060736,2315087840957964288,2314951500977143808,2315087840955858944,2314951500977143808,9244831744270336,9108491763449856,9244831742164992,9108491763449856,2315087840957956096,2314951500977143808,2315087840955858944,2314951500977143808,9244831744262144,9108491763449856,9244831742164992,9108491763449856,2314947103469608960,2315092238465499136,2314947103467503616,2315092238465499136,9104094255915008,9249229251805184,9104094253809664,9249229251805184,2314947103469600768,2315092238465499136,2314947103467503616,2315092238465499136,9104094255906816,9249229251805184,9104094253809664,9249229251805184,2315087840957964288,2314947102930632704,2315087840955858944,2314947102930632704,9244831744270336,9104093716938752,9244831742164992,9104093716938752,2315087840957956096,2314947102930632704,2315087840955858944,2314947102930632704,9244831744262144,9104093716938752,9244831742164992,9104093716938752,2314947103469608960,2315087840418988032,2314947103467503616,2315087840418988032,9104094255915008,9244831205294080,9104094253809664,9244831205294080,2314947103469600768,2315087840418988032,2314947103467503616,2315087840418988032,9104094255906816,9244831205294080,9104094253809664,9244831205294080,2315079044864942080,2314947102930632704,2315079044862836736,2314947102930632704,9236035651248128,9104093716938752,9236035649142784,9104093716938752,2315079044864933888,2314947102930632704,2315079044862836736,2314947102930632704,9236035651239936,9104093716938752,9236035649142784,9104093716938752,2314938307376586752,2315087840418988032,2314938307374481408,2315087840418988032,9095298162892800,9244831205294080,9095298160787456,9244831205294080,2314938307376578560,2315087840418988032,2314938307374481408,2315087840418988032,9095298162884608,9244831205294080,9095298160787456,9244831205294080,2315079044864942080,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248128,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586752,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892800,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942080,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248128,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586752,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892800,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,2315079044864942080,2314938306837610496,2315079044862836736,2314938306837610496,9236035651248128,9095297623916544,9236035649142784,9095297623916544,2315079044864933888,2314938306837610496,2315079044862836736,2314938306837610496,9236035651239936,9095297623916544,9236035649142784,9095297623916544,2314938307376586752,2315079044325965824,2314938307374481408,2315079044325965824,9095298162892800,9236035112271872,9095298160787456,9236035112271872,2314938307376578560,2315079044325965824,2314938307374481408,2315079044325965824,9095298162884608,9236035112271872,9095298160787456,9236035112271872,0],[4629910699613634624,18190596325785664,4629876614753173504,18208188511830016,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614753157120,18208188511813632,4629910699613618176,18190596325769216,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629910699609423872,18190596321574912,4629876614748962816,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614748962816,18208188507619328,4629910699609423872,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614753173568,18208188511830080,4629909600102006784,18190596325785600,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629909600101990400,18190596325769216,4629876614753157120,18208188511813632,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614748962816,18208188507619328,4629909600097796096,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629909600097796096,18190596321574912,4629876614748962816,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629907401078751296,18190596325785664,4629876614753173504,18208188511830016,4629910698535682048,18190595247833088,4629876613675220992,18208187433877504,4629876614753157120,18208188511813632,4629907401078734848,18190596325769216,4629876613675220992,18208187433877504,4629910698535682048,18190595247833088,4629907401074540544,18190596321574912,4629876614748962816,18208188507619328,4629910698535682048,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18208188507619328,4629907401074540544,18190596321574912,4629876613675220992,18208187433877504,4629910698535682048,18190595247833088,4629876614753173568,18208188511830080,4629907401078751232,18190596325785600,4629876613675220992,18208187433877504,4629909599024054272,18190595247833088,4629907401078734848,18190596325769216,4629876614753157120,18208188511813632,4629909599024054272,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18208188507619328,4629907401074540544,18190596321574912,4629876613675220992,18208187433877504,4629909599024054272,18190595247833088,4629907401074540544,18190596321574912,4629876614748962816,18208188507619328,4629909599024054272,18190595247833088,4629876613675220992,18208187433877504,4629903003032240192,18224681186246720,4629876614753173504,18190596325785600,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629876614753157120,18190596325769216,4629903003032223744,18224681186230272,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629903003028029440,18224681182035968,4629876614748962816,18190596321574912,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18190596321574912,4629903003028029440,18224681182035968,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629876614753173568,18190596325785664,4629903003032240128,18223581674618880,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629903003032223744,18223581674602496,4629876614753157120,18190596325769216,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18190596321574912,4629903003028029440,18223581670408192,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629903003028029440,18223581670408192,4629876614748962816,18190596321574912,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629903003032240192,18221382651363392,4629876614753173504,18190596325785600,4629903001954287616,18224680108294144,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629903003032223744,18221382651346944,4629876613675220992,18190595247833088,4629903001954287616,18224680108294144,4629903003028029440,18221382647152640,4629876614748962816,18190596321574912,4629903001954287616,18224680108294144,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629903003028029440,18221382647152640,4629876613675220992,18190595247833088,4629903001954287616,18224680108294144,4629876614753173568,18190596325785664,4629903003032240128,18221382651363328,4629876613675220992,18190595247833088,4629903001954287616,18223580596666368,4629903003032223744,18221382651346944,4629876614753157120,18190596325769216,4629903001954287616,18223580596666368,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629903003028029440,18221382647152640,4629876613675220992,18190595247833088,4629903001954287616,18223580596666368,4629903003028029440,18221382647152640,4629876614748962816,18190596321574912,4629903001954287616,18223580596666368,4629876613675220992,18190595247833088,4629894206939217984,18216984604852288,4629876614753173504,18190596325785600,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18216984604835840,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629876614753173568,18190596325785664,4629894206939217920,18216984604852224,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629894206939201536,18216984604835840,4629876614753157120,18190596325769216,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629894206939217984,18216984604852288,4629876614753173504,18190596325785600,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18216984604835840,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629876614753173568,18190596325785664,4629894206939217920,18216984604852224,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206939201536,18216984604835840,4629876614753157120,18190596325769216,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629894206939217984,18208188511830080,4629876614753173504,18190596325785600,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18208188511813632,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629876614753173568,18190596325785664,4629894206939217920,18208188511830016,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206939201536,18208188511813632,4629876614753157120,18190596325769216,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629894206939217984,18208188511830080,4629876614753173504,18190596325785600,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18208188511813632,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614753173568,18190596325785664,4629894206939217920,18208188511830016,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629894206939201536,18208188511813632,4629876614753157120,18190596325769216,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614753173568,18208188511830080,4629910699613634560,18190596325785600,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629910699613618176,18190596325769216,4629876614753157120,18208188511813632,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614748962816,18208188507619328,4629910699609423872,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629910699609423872,18190596321574912,4629876614748962816,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629909600102006848,18190596325785664,4629876614753173504,18208188511830016,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614753157120,18208188511813632,4629909600101990400,18190596325769216,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629909600097796096,18190596321574912,4629876614748962816,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629876614748962816,18208188507619328,4629909600097796096,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614753173568,18208188511830080,4629907401078751232,18190596325785600,4629876613675220992,18208187433877504,4629910698535682048,18190595247833088,4629907401078734848,18190596325769216,4629876614753157120,18208188511813632,4629910698535682048,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18208188507619328,4629907401074540544,18190596321574912,4629876613675220992,18208187433877504,4629910698535682048,18190595247833088,4629907401074540544,18190596321574912,4629876614748962816,18208188507619328,4629910698535682048,18190595247833088,4629876613675220992,18208187433877504,4629907401078751296,18190596325785664,4629876614753173504,18208188511830016,4629909599024054272,18190595247833088,4629876613675220992,18208187433877504,4629876614753157120,18208188511813632,4629907401078734848,18190596325769216,4629876613675220992,18208187433877504,4629909599024054272,18190595247833088,4629907401074540544,18190596321574912,4629876614748962816,18208188507619328,4629909599024054272,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18208188507619328,4629907401074540544,18190596321574912,4629876613675220992,18208187433877504,4629909599024054272,18190595247833088,4629876614753173568,18190596325785664,4629903003032240128,18224681186246656,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629903003032223744,18224681186230272,4629876614753157120,18190596325769216,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18190596321574912,4629903003028029440,18224681182035968,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629903003028029440,18224681182035968,4629876614748962816,18190596321574912,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629903003032240192,18223581674618944,4629876614753173504,18190596325785600,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629876614753157120,18190596325769216,4629903003032223744,18223581674602496,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629903003028029440,18223581670408192,4629876614748962816,18190596321574912,4629907400000798720,18190595247833088,4629876613675220992,18208187433877504,4629876614748962816,18190596321574912,4629903003028029440,18223581670408192,4629876613675220992,18208187433877504,4629907400000798720,18190595247833088,4629876614753173568,18190596325785664,4629903003032240128,18221382651363328,4629876613675220992,18190595247833088,4629903001954287616,18224680108294144,4629903003032223744,18221382651346944,4629876614753157120,18190596325769216,4629903001954287616,18224680108294144,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629903003028029440,18221382647152640,4629876613675220992,18190595247833088,4629903001954287616,18224680108294144,4629903003028029440,18221382647152640,4629876614748962816,18190596321574912,4629903001954287616,18224680108294144,4629876613675220992,18190595247833088,4629903003032240192,18221382651363392,4629876614753173504,18190596325785600,4629903001954287616,18223580596666368,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629903003032223744,18221382651346944,4629876613675220992,18190595247833088,4629903001954287616,18223580596666368,4629903003028029440,18221382647152640,4629876614748962816,18190596321574912,4629903001954287616,18223580596666368,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629903003028029440,18221382647152640,4629876613675220992,18190595247833088,4629903001954287616,18223580596666368,4629876614753173568,18190596325785664,4629894206939217920,18216984604852224,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629894206939201536,18216984604835840,4629876614753157120,18190596325769216,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629894206939217984,18216984604852288,4629876614753173504,18190596325785600,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18216984604835840,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629903001954287616,18221381573410816,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629903001954287616,18221381573410816,4629876614753173568,18190596325785664,4629894206939217920,18216984604852224,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206939201536,18216984604835840,4629876614753157120,18190596325769216,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629894206939217984,18216984604852288,4629876614753173504,18190596325785600,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18216984604835840,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18216984600641536,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18216984600641536,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629876614753173568,18190596325785664,4629894206939217920,18208188511830016,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206939201536,18208188511813632,4629876614753157120,18190596325769216,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629894206939217984,18208188511830080,4629876614753173504,18190596325785600,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18208188511813632,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18216983526899712,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18216983526899712,4629876614753173568,18190596325785664,4629894206939217920,18208188511830016,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629894206939201536,18208188511813632,4629876614753157120,18190596325769216,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629894206939217984,18208188511830080,4629876614753173504,18190596325785600,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614753157120,18190596325769216,4629894206939201536,18208188511813632,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,4629894206935007232,18208188507619328,4629876614748962816,18190596321574912,4629894205861265408,18208187433877504,4629876613675220992,18190595247833088,4629876614748962816,18190596321574912,4629894206935007232,18208188507619328,4629876613675220992,18190595247833088,4629894205861265408,18208187433877504,0],[9259541023762186368,9259471754529636352,9259471754529603584,9259471754529603584,36168986907410560,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259471754521214976,9259524531079348224,36099717666439168,36152494224572416,36099717666439168,36152494224572416,9259541021606281216,9259471752373731328,9259471752373731328,9259471752373731328,36168984751505408,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259524531087736832,36099717674860672,36134902046949376,36099717674827776,36152494232961024,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259524531079348224,9259471754521214976,36134902038528000,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259506938901692416,9259471754529603584,36134902046949504,36099717674860544,36134902046916608,36099717674827776,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259506938893303808,36099717666439168,36099717666439168,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259539924250558592,9259471754529636352,9259471754529603584,9259471754529603584,36167887395782784,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259471754521214976,9259524531079348224,36099717666439168,36152494224572416,36099717666439168,36152494224572416,9259539922094653440,9259471752373731328,9259471752373731328,9259471752373731328,36167885239877632,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259524531079348224,9259471754521214976,36134902038528000,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259471754529636352,9259506938901692416,9259471754529603584,36134902046949504,36099717674860544,36134902046916608,36099717674827776,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259471754521214976,36099717666439168,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259537725227303040,9259471754529636352,9259471754529603584,9259471754529603584,36165688372527232,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259524531079348224,9259471754521214976,9259524531079348224,36099717666439168,36152494224572416,36099717666439168,36152494224572416,9259537723071397888,9259471752373731328,9259471752373731328,9259471752373731328,36165686216622080,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259524531079348224,9259471754521214976,36134902038528000,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259541023762186240,9259506938901692416,9259471754529603584,36134902046949504,36168986907410432,36134902046916608,36099717674827776,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259471754521214976,36099717666439168,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259541021606281216,9259506936745820160,9259471752373731328,36134899891044352,36168984751505408,36134899891044352,36099715518955520,9259537725227303040,9259471754529636352,9259471754529603584,9259471754529603584,36165688372527232,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259524531079348224,36099717666439168,36134902038528000,36099717666439168,36152494224572416,9259537723071397888,9259471752373731328,9259471752373731328,9259471752373731328,36165686216622080,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259524531079348224,9259471754521214976,36134902038528000,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259539924250558464,9259506938901692416,9259471754529603584,36134902046949504,36167887395782656,36134902046916608,36099717674827776,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259471754521214976,36099717666439168,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259539922094653440,9259506936745820160,9259471752373731328,36134899891044352,36167885239877632,36134899891044352,36099715518955520,9259533327180791936,9259471754529636352,9259541023762153472,9259471754529603584,36161290326016128,36099717674860544,36168986907377664,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259524531079348224,36099717666439168,36134902038528000,36099717666439168,36152494224572416,9259533325024886784,9259471752373731328,9259541021606281216,9259471752373731328,36161288170110976,36099715518955520,36168984751505408,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259506938893303808,9259471754521214976,36134902038528000,36099717666439168,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259537725227302912,9259506938901692416,9259471754529603584,36134902046949504,36165688372527104,36134902046916608,36099717674827776,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259471754521214976,36099717666439168,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259537723071397888,9259506936745820160,9259471752373731328,36134899891044352,36165686216622080,36134899891044352,36099715518955520,9259533327180791936,9259471754529636352,9259539924250525696,9259471754529603584,36161290326016128,36099717674860544,36167887395749888,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259524531079348224,36099717666439168,36134902038528000,36099717666439168,36152494224572416,9259533325024886784,9259471752373731328,9259539922094653440,9259471752373731328,36161288170110976,36099715518955520,36167885239877632,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259506938893303808,9259471754521214976,36134902038528000,36099717666439168,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259537725227302912,9259506938901692416,9259471754529603584,36134902046949504,36165688372527104,36134902046916608,36099717674827776,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259541023753764864,9259471754521214976,9259471754521214976,9259471754521214976,36168986898989056,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259537723071397888,9259506936745820160,9259471752373731328,36134899891044352,36165686216622080,36134899891044352,36099715518955520,9259533327180791936,9259471754529636352,9259537725227270144,9259471754529603584,36161290326016128,36099717674860544,36165688372494336,36099717674827776,9259541021606281216,9259471752373731328,9259471752373731328,9259471752373731328,36168984751505408,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259524531079348224,36099717666439168,36134902038528000,36099717666439168,36152494224572416,9259533325024886784,9259471752373731328,9259537723071397888,9259471752373731328,36161288170110976,36099715518955520,36165686216622080,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938893303808,9259471754521214976,9259506938893303808,9259471754521214976,36134902038528000,36099717666439168,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259533327180791808,9259506938901692416,9259541023762153472,36134902046949504,36161290326016000,36134902046916608,36168986907377664,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259539924242137088,9259471754521214976,9259471754521214976,9259471754521214976,36167887387361280,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259533325024886784,9259506936745820160,9259541021606281216,36134899891044352,36161288170110976,36134899891044352,36168984751505408,9259533327180791936,9259471754529636352,9259537725227270144,9259471754529603584,36161290326016128,36099717674860544,36165688372494336,36099717674827776,9259539922094653440,9259471752373731328,9259471752373731328,9259471752373731328,36167885239877632,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259533325024886784,9259471752373731328,9259537723071397888,9259471752373731328,36161288170110976,36099715518955520,36165686216622080,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259471754521214976,9259506938893303808,9259471754521214976,36134902038528000,36099717666439168,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259533327180791808,9259506938901692416,9259539924250525696,36134902046949504,36161290326016000,36134902046916608,36167887395749888,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259537725218881536,9259471754521214976,9259471754521214976,9259471754521214976,36165688364105728,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259533325024886784,9259506936745820160,9259539922094653440,36134899891044352,36161288170110976,36134899891044352,36167885239877632,9259524531087769728,9259471754529636352,9259533327180759040,9259471754529603584,36152494232993920,36099717674860544,36161290325983232,36099717674827776,9259537723071397888,9259471752373731328,9259471752373731328,9259471752373731328,36165686216622080,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259541023753764864,9259506938893303808,9259471754521214976,36134902038528000,36168986898989056,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259533327180791808,9259506938901692416,9259537725227270144,36134902046949504,36161290326016000,36134902046916608,36165688372494336,9259506936745820160,9259541021606281216,9259506936745820160,9259471752373731328,36134899891044352,36168984751505408,36134899891044352,36099715518955520,9259537725218881536,9259471754521214976,9259471754521214976,9259471754521214976,36165688364105728,36099717666439168,36099717666439168,36099717666439168,9259506936745820160,9259533325024886784,9259506936745820160,9259537723071397888,36134899891044352,36161288170110976,36134899891044352,36165686216622080,9259524531087769728,9259471754529636352,9259533327180759040,9259471754529603584,36152494232993920,36099717674860544,36161290325983232,36099717674827776,9259537723071397888,9259471752373731328,9259471752373731328,9259471752373731328,36165686216622080,36099715518955520,36099715518955520,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259539924242137088,9259506938893303808,9259471754521214976,36134902038528000,36167887387361280,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938901725312,9259533327180791808,9259506938901692416,9259537725227270144,36134902046949504,36161290326016000,36134902046916608,36165688372494336,9259506936745820160,9259539922094653440,9259506936745820160,9259471752373731328,36134899891044352,36167885239877632,36134899891044352,36099715518955520,9259533327172370432,9259471754521214976,9259541023753764864,9259471754521214976,36161290317594624,36099717666439168,36168986898989056,36099717666439168,9259506936745820160,9259533325024886784,9259506936745820160,9259537723071397888,36134899891044352,36161288170110976,36134899891044352,36165686216622080,9259524531087769728,9259471754529636352,9259533327180759040,9259471754529603584,36152494232993920,36099717674860544,36161290325983232,36099717674827776,9259533325024886784,9259471752373731328,9259541021606281216,9259471752373731328,36161288170110976,36099715518955520,36168984751505408,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259537725218881536,9259506938893303808,9259471754521214976,36134902038528000,36165688364105728,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259506938901692416,9259533327180759040,36099717674860672,36152494232993792,36134902046916608,36161290325983232,9259506936745820160,9259537723071397888,9259506936745820160,9259471752373731328,36134899891044352,36165686216622080,36134899891044352,36099715518955520,9259533327172370432,9259471754521214976,9259539924242137088,9259471754521214976,36161290317594624,36099717666439168,36167887387361280,36099717666439168,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531087769728,9259471754529636352,9259533327180759040,9259471754529603584,36152494232993920,36099717674860544,36161290325983232,36099717674827776,9259533325024886784,9259471752373731328,9259539922094653440,9259471752373731328,36161288170110976,36099715518955520,36167885239877632,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259537725218881536,9259506938893303808,9259471754521214976,36134902038528000,36165688364105728,36134902038528000,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259506938901692416,9259533327180759040,36099717674860672,36152494232993792,36134902046916608,36161290325983232,9259506936745820160,9259537723071397888,9259506936745820160,9259471752373731328,36134899891044352,36165686216622080,36134899891044352,36099715518955520,9259533327172370432,9259471754521214976,9259537725218881536,9259471754521214976,36161290317594624,36099717666439168,36165688364105728,36099717666439168,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531087769728,9259471754529636352,9259524531087736832,9259471754529603584,36152494232993920,36099717674860544,36152494232961024,36099717674827776,9259533325024886784,9259471752373731328,9259537723071397888,9259471752373731328,36161288170110976,36099715518955520,36165686216622080,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259506938901692416,36099717674860672,36134902046949376,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259533327172370432,9259506938893303808,9259541023753764864,36134902038528000,36161290317594624,36134902038528000,36168986898989056,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259506938901692416,9259533327180759040,36099717674860672,36152494232993792,36134902046916608,36161290325983232,9259506936745820160,9259533325024886784,9259506936745820160,9259541021606281216,36134899891044352,36161288170110976,36134899891044352,36168984751505408,9259533327172370432,9259471754521214976,9259537725218881536,9259471754521214976,36161290317594624,36099717666439168,36165688364105728,36099717666439168,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531087769728,9259471754529636352,9259524531087736832,9259471754529603584,36152494232993920,36099717674860544,36152494232961024,36099717674827776,9259533325024886784,9259471752373731328,9259537723071397888,9259471752373731328,36161288170110976,36099715518955520,36165686216622080,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259506938901692416,36099717674860672,36099717674860544,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259533327172370432,9259506938893303808,9259539924242137088,36134902038528000,36161290317594624,36134902038528000,36167887387361280,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259506938901692416,9259533327180759040,36099717674860672,36152494232993792,36134902046916608,36161290325983232,9259506936745820160,9259533325024886784,9259506936745820160,9259539922094653440,36134899891044352,36161288170110976,36134899891044352,36167885239877632,9259524531079348224,9259471754521214976,9259533327172370432,9259471754521214976,36152494224572416,36099717666439168,36161290317594624,36099717666439168,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531087769728,9259471754529636352,9259524531087736832,9259471754529603584,36152494232993920,36099717674860544,36152494232961024,36099717674827776,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259506938901692416,36099717674860672,36099717674860544,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259533327172370432,9259506938893303808,9259537725218881536,36134902038528000,36161290317594624,36134902038528000,36165688364105728,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259471754529603584,9259524531087736832,36099717674860672,36152494232993792,36099717674827776,36152494232961024,9259506936745820160,9259533325024886784,9259506936745820160,9259537723071397888,36134899891044352,36161288170110976,36134899891044352,36165686216622080,9259524531079348224,9259471754521214976,9259533327172370432,9259471754521214976,36152494224572416,36099717666439168,36161290317594624,36099717666439168,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259524531087769728,9259471754529636352,9259524531087736832,9259471754529603584,36152494232993920,36099717674860544,36152494232961024,36099717674827776,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259506938901692416,36099717674860672,36099717674860544,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259506938893303808,9259533327172370432,9259506938893303808,9259537725218881536,36134902038528000,36161290317594624,36134902038528000,36165688364105728,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259471754529603584,9259524531087736832,36099717674860672,36152494232993792,36099717674827776,36152494232961024,9259506936745820160,9259533325024886784,9259506936745820160,9259537723071397888,36134899891044352,36161288170110976,36134899891044352,36165686216622080,9259524531079348224,9259471754521214976,9259533327172370432,9259471754521214976,36152494224572416,36099717666439168,36161290317594624,36099717666439168,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259524531087736832,9259471754529603584,36134902046949504,36099717674860544,36152494232961024,36099717674827776,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259506938901692416,36099717674860672,36099717674860544,36099717674827776,36134902046916608,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259506938893303808,9259533327172370432,36099717666439168,36152494224572416,36134902038528000,36161290317594624,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754529636480,9259524531087769600,9259471754529603584,9259524531087736832,36099717674860672,36152494232993792,36099717674827776,36152494232961024,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531079348224,9259471754521214976,9259533327172370432,9259471754521214976,36152494224572416,36099717666439168,36161290317594624,36099717666439168,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259524531087736832,9259471754529603584,36134902046949504,36099717674860544,36152494232961024,36099717674827776,9259524528931864576,9259471752373731328,9259533325024886784,9259471752373731328,36152492077088768,36099715518955520,36161288170110976,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259471754529603584,36099717674860672,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259506938893303808,9259533327172370432,36099717666439168,36152494224572416,36134902038528000,36161290317594624,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259524531087769600,9259471754529603584,9259524531087736832,36099717674860672,36152494232993792,36099717674827776,36152494232961024,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531079348224,9259471754521214976,9259524531079348224,9259471754521214976,36152494224572416,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259524531087736832,9259471754529603584,36134902046949504,36099717674860544,36152494232961024,36099717674827776,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259506938893303808,9259471754521214976,9259506938893303808,36099717666439168,36134902038528000,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259471754529603584,36099717674860672,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259506936745820160,9259471752373731328,9259506936745820160,36099715518955520,36134899891044352,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259506938893303808,9259533327172370432,36099717666439168,36152494224572416,36134902038528000,36161290317594624,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259524531087736832,36099717674860672,36134902046949376,36099717674827776,36152494232961024,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531079348224,9259471754521214976,9259524531079348224,9259471754521214976,36152494224572416,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259524531087736832,9259471754529603584,36134902046949504,36099717674860544,36152494232961024,36099717674827776,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259506938893303808,36099717666439168,36099717666439168,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259524528931864576,9259471752373731328,36134899891044352,36099715518955520,36152492077088768,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259471754529603584,36099717674860672,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259506938893303808,9259533327172370432,36099717666439168,36152494224572416,36134902038528000,36161290317594624,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259524531087736832,36099717674860672,36134902046949376,36099717674827776,36152494232961024,9259471752373731328,9259524528931864576,9259506936745820160,9259533325024886784,36099715518955520,36152492077088768,36134899891044352,36161288170110976,9259524531079348224,9259471754521214976,9259524531079348224,9259471754521214976,36152494224572416,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259506938901692416,9259471754529603584,36134902046949504,36099717674860544,36134902046916608,36099717674827776,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259506938893303808,36099717666439168,36099717666439168,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,9259471754529636480,9259471754529636352,9259471754529603584,9259471754529603584,36099717674860672,36099717674860544,36099717674827776,36099717674827776,9259471752373731328,9259471752373731328,9259471752373731328,9259506936745820160,36099715518955520,36099715518955520,36099715518955520,36134899891044352,9259471754521214976,9259524531079348224,9259471754521214976,9259524531079348224,36099717666439168,36152494224572416,36099717666439168,36152494224572416,9259471752373731328,9259471752373731328,9259471752373731328,9259471752373731328,36099715518955520,36099715518955520,36099715518955520,36099715518955520,9259471754529636480,9259506938901725184,9259471754529603584,9259524531087736832,36099717674860672,36134902046949376,36099717674827776,36152494232961024,9259471752373731328,9259524528931864576,9259471752373731328,9259524528931864576,36099715518955520,36152492077088768,36099715518955520,36152492077088768,9259524531079348224,9259471754521214976,9259524531079348224,9259471754521214976,36152494224572416,36099717666439168,36152494224572416,36099717666439168,9259471752373731328,9259506936745820160,9259471752373731328,9259524528931864576,36099715518955520,36134899891044352,36099715518955520,36152492077088768,9259506938901725312,9259471754529636352,9259506938901692416,9259471754529603584,36134902046949504,36099717674860544,36134902046916608,36099717674827776,9259524528931864576,9259471752373731328,9259524528931864576,9259471752373731328,36152492077088768,36099715518955520,36152492077088768,36099715518955520,9259471754521214976,9259471754521214976,9259471754521214976,9259506938893303808,36099717666439168,36099717666439168,36099717666439168,36134902038528000,9259506936745820160,9259471752373731328,9259506936745820160,9259471752373731328,36134899891044352,36099715518955520,36134899891044352,36099715518955520,0],[143553341945872641,72621643502977024,143553341929029632,72621643502977024,107524540615098368,80502942850875392,107524540615098368,80502942850875392,72621647814787329,80502942850875392,72621647797944320,80502942850875392,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999347535315201,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621647814787329,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,80502947162685697,72621643502977024,80502947145842688,72621643502977024,80502942850875392,143553341945872640,80502942850875392,143553341929029632,72621647814787329,107524540615098368,72621647797944320,107524540615098368,72621643502977024,72621647814787328,72621643502977024,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721629952,73747543409819648,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814787328,72621643502977024,72621647797944320,75999347535315201,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999347535315200,75999343223504896,75999347518472192,72621647814787329,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621647814787328,72621643502977024,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721629952,73747543409819648,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814787328,72621643502977024,72621647797944320,89510146417426689,72621643502977024,89510146400583680,72621643502977024,89510142105616384,80502947162685696,89510142105616384,80502947145842688,72621647814787329,80502942850875392,72621647797944320,80502942850875392,72621643502977024,72621647814787328,72621643502977024,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721629952,73747543409819648,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814787328,72621643502977024,72621647797944320,75999347535315201,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999347535315200,75999343223504896,75999347518472192,72621647814787329,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621647814787328,72621643502977024,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721629952,73747543409819648,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814787328,72621643502977024,72621647797944320,80502947162685697,72621643502977024,80502947145842688,72621643502977024,80502942850875392,89510146417426688,80502942850875392,89510146400583680,72621647814787329,89510142105616384,72621647797944320,89510142105616384,72621643502977024,72621647814787328,72621643502977024,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721629952,73747543409819648,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814787328,72621643502977024,72621647797944320,75999347535315201,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999347535315200,75999343223504896,75999347518472192,72621647814787329,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621647814787328,72621643502977024,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721629952,73747543409819648,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814787328,72621643502977024,72621647797944320,107524544926908673,72621643502977024,107524544910065664,72621643502977024,143553341945806848,80502947162685696,143553341929029632,80502947145842688,72621647814787329,80502942850875392,72621647797944320,80502942850875392,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621647814721536,72621647814787328,72621647797944320,72621647797944320,75999347535315201,72621643502977024,75999347518472192,72621643502977024,75999347535249408,75999347535315200,75999347518472192,75999347518472192,72621647814787329,75999343223504896,72621647797944320,75999343223504896,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621643502977024,73747547704786944,72621643502977024,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747543409819648,72621647797944320,73747543409819648,72621647814721536,72621647814787328,72621647797944320,72621647797944320,80502947162685697,72621643502977024,80502947145842688,72621643502977024,80502947162619904,107524544926908672,80502947145842688,107524544910065664,72621647814787329,143553341945806848,72621647797944320,143553341929029632,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621647814721536,73747547704786944,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747547721564160,72621647797944320,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,75999347535315201,72621647814721536,75999347518472192,72621647797944320,75999347535249408,75999347535315200,75999347518472192,75999347518472192,72621647814787329,75999347535249408,72621647797944320,75999347518472192,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621647814721536,73747547704786944,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747547721564160,72621647797944320,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,89510146417426689,72621647814721536,89510146400583680,72621647797944320,89510146417360896,80502947162685696,89510146400583680,80502947145842688,72621647814787329,80502947162619904,72621647797944320,80502947145842688,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621647814721536,73747547704786944,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747547721564160,72621647797944320,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,75999347535315201,72621647814721536,75999347518472192,72621647797944320,75999347535249408,75999347535315200,75999347518472192,75999347518472192,72621647814787329,75999347535249408,72621647797944320,75999347518472192,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621647814721536,73747547704786944,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747547721564160,72621647797944320,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,80502947162685697,72621647814721536,80502947145842688,72621647797944320,80502947162619904,89510146417426688,80502947145842688,89510146400583680,72621647814787329,89510146417360896,72621647797944320,89510146400583680,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621647814721536,73747547704786944,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747547721564160,72621647797944320,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,75999347535315201,72621647814721536,75999347518472192,72621647797944320,75999347535249408,75999347535315200,75999347518472192,75999347518472192,72621647814787329,75999347535249408,72621647797944320,75999347518472192,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747547721629953,72621647814721536,73747547704786944,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621647814787329,73747547721564160,72621647797944320,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,143553337634062336,72621647814721536,143553337634062336,72621647797944320,107524544926842880,80502947162685696,107524544910065664,80502947145842688,72621643502977024,80502947162619904,72621643502977024,80502947145842688,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,75999343223504896,72621647814721536,75999343223504896,72621647797944320,75999347535249408,75999347535315200,75999347518472192,75999347518472192,72621643502977024,75999347535249408,72621643502977024,75999347518472192,72621647814721536,72621647814787328,72621647797944320,72621647797944320,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747547721629952,73747547704786944,73747547704786944,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621647814787328,72621647797944320,72621647797944320,80502942850875392,72621647814721536,80502942850875392,72621647797944320,80502947162619904,143553337634062336,80502947145842688,143553337634062336,72621643502977024,107524544926842880,72621643502977024,107524544910065664,72621647814721536,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621643502977024,72621647797944320,72621643502977024,75999343223504896,72621647814721536,75999343223504896,72621647797944320,75999347535249408,75999343223504896,75999347518472192,75999343223504896,72621643502977024,75999347535249408,72621643502977024,75999347518472192,72621647814721536,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621643502977024,72621647797944320,72621643502977024,89510142105616384,72621647814721536,89510142105616384,72621647797944320,89510146417360896,80502942850875392,89510146400583680,80502942850875392,72621643502977024,80502947162619904,72621643502977024,80502947145842688,72621647814721536,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621643502977024,72621647797944320,72621643502977024,75999343223504896,72621647814721536,75999343223504896,72621647797944320,75999347535249408,75999343223504896,75999347518472192,75999343223504896,72621643502977024,75999347535249408,72621643502977024,75999347518472192,72621647814721536,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621643502977024,72621647797944320,72621643502977024,80502942850875392,72621647814721536,80502942850875392,72621647797944320,80502947162619904,89510142105616384,80502947145842688,89510142105616384,72621643502977024,89510146417360896,72621643502977024,89510146400583680,72621647814721536,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621643502977024,72621647797944320,72621643502977024,75999343223504896,72621647814721536,75999343223504896,72621647797944320,75999347535249408,75999343223504896,75999347518472192,75999343223504896,72621643502977024,75999347535249408,72621643502977024,75999347518472192,72621647814721536,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747547721564160,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621647814721536,72621643502977024,72621647797944320,72621643502977024,107524540615098368,72621647814721536,107524540615098368,72621647797944320,143553337634062336,80502942850875392,143553337634062336,80502942850875392,72621643502977024,80502947162619904,72621643502977024,80502947145842688,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621647814721536,75999343223504896,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999347535249408,72621643502977024,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,80502942850875392,72621647814721536,80502942850875392,72621647797944320,80502942850875392,107524540615098368,80502942850875392,107524540615098368,72621643502977024,143553337634062336,72621643502977024,143553337634062336,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,89510142105616384,72621643502977024,89510142105616384,72621643502977024,89510142105616384,80502942850875392,89510142105616384,80502942850875392,72621643502977024,80502942850875392,72621643502977024,80502942850875392,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,80502942850875392,72621643502977024,80502942850875392,72621643502977024,80502942850875392,89510142105616384,80502942850875392,89510142105616384,72621643502977024,89510142105616384,72621643502977024,89510142105616384,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,143553341945806848,72621643502977024,143553341929029632,72621643502977024,107524540615098368,80502942850875392,107524540615098368,80502942850875392,72621647814721536,80502942850875392,72621647797944320,80502942850875392,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999347535249408,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621647814721536,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,80502947162619904,72621643502977024,80502947145842688,72621643502977024,80502942850875392,143553341945806848,80502942850875392,143553341929029632,72621647814721536,107524540615098368,72621647797944320,107524540615098368,72621643502977024,72621647814721536,72621643502977024,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721564160,73747543409819648,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814721536,72621643502977024,72621647797944320,75999347535249408,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999347535249408,75999343223504896,75999347518472192,72621647814721536,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621647814721536,72621643502977024,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721564160,73747543409819648,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814721536,72621643502977024,72621647797944320,89510146417360896,72621643502977024,89510146400583680,72621643502977024,89510142105616384,80502947162619904,89510142105616384,80502947145842688,72621647814721536,80502942850875392,72621647797944320,80502942850875392,72621643502977024,72621647814721536,72621643502977024,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721564160,73747543409819648,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814721536,72621643502977024,72621647797944320,75999347535249408,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999347535249408,75999343223504896,75999347518472192,72621647814721536,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621647814721536,72621643502977024,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721564160,73747543409819648,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814721536,72621643502977024,72621647797944320,80502947162619904,72621643502977024,80502947145842688,72621643502977024,80502942850875392,89510146417360896,80502942850875392,89510146400583680,72621647814721536,89510142105616384,72621647797944320,89510142105616384,72621643502977024,72621647814721536,72621643502977024,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721564160,73747543409819648,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814721536,72621643502977024,72621647797944320,75999347535249408,72621643502977024,75999347518472192,72621643502977024,75999343223504896,75999347535249408,75999343223504896,75999347518472192,72621647814721536,75999343223504896,72621647797944320,75999343223504896,72621643502977024,72621647814721536,72621643502977024,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747543409819648,73747547721564160,73747543409819648,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621643502977024,72621647814721536,72621643502977024,72621647797944320,107524544926842880,72621643502977024,107524544910065664,72621643502977024,143553341945872384,80502947162619904,143553341929029632,80502947145842688,72621647814721536,80502942850875392,72621647797944320,80502942850875392,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621647814787072,72621647814721536,72621647797944320,72621647797944320,75999347535249408,72621643502977024,75999347518472192,72621643502977024,75999347535314944,75999347535249408,75999347518472192,75999347518472192,72621647814721536,75999343223504896,72621647797944320,75999343223504896,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621643502977024,73747547704786944,72621643502977024,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747543409819648,72621647797944320,73747543409819648,72621647814787072,72621647814721536,72621647797944320,72621647797944320,80502947162619904,72621643502977024,80502947145842688,72621643502977024,80502947162685440,107524544926842880,80502947145842688,107524544910065664,72621647814721536,143553341945872384,72621647797944320,143553341929029632,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621647814787072,73747547704786944,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747547721629696,72621647797944320,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,75999347535249408,72621647814787072,75999347518472192,72621647797944320,75999347535314944,75999347535249408,75999347518472192,75999347518472192,72621647814721536,75999347535314944,72621647797944320,75999347518472192,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621647814787072,73747547704786944,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747547721629696,72621647797944320,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,89510146417360896,72621647814787072,89510146400583680,72621647797944320,89510146417426432,80502947162619904,89510146400583680,80502947145842688,72621647814721536,80502947162685440,72621647797944320,80502947145842688,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621647814787072,73747547704786944,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747547721629696,72621647797944320,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,75999347535249408,72621647814787072,75999347518472192,72621647797944320,75999347535314944,75999347535249408,75999347518472192,75999347518472192,72621647814721536,75999347535314944,72621647797944320,75999347518472192,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621647814787072,73747547704786944,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747547721629696,72621647797944320,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,80502947162619904,72621647814787072,80502947145842688,72621647797944320,80502947162685440,89510146417360896,80502947145842688,89510146400583680,72621647814721536,89510146417426432,72621647797944320,89510146400583680,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621647814787072,73747547704786944,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747547721629696,72621647797944320,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,75999347535249408,72621647814787072,75999347518472192,72621647797944320,75999347535314944,75999347535249408,75999347518472192,75999347518472192,72621647814721536,75999347535314944,72621647797944320,75999347518472192,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747547721564160,72621647814787072,73747547704786944,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621647814721536,73747547721629696,72621647797944320,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,143553337634062336,72621647814787072,143553337634062336,72621647797944320,107524544926908416,80502947162619904,107524544910065664,80502947145842688,72621643502977024,80502947162685440,72621643502977024,80502947145842688,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,75999343223504896,72621647814787072,75999343223504896,72621647797944320,75999347535314944,75999347535249408,75999347518472192,75999347518472192,72621643502977024,75999347535314944,72621643502977024,75999347518472192,72621647814787072,72621647814721536,72621647797944320,72621647797944320,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747547721564160,73747547704786944,73747547704786944,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621647814721536,72621647797944320,72621647797944320,80502942850875392,72621647814787072,80502942850875392,72621647797944320,80502947162685440,143553337634062336,80502947145842688,143553337634062336,72621643502977024,107524544926908416,72621643502977024,107524544910065664,72621647814787072,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621643502977024,72621647797944320,72621643502977024,75999343223504896,72621647814787072,75999343223504896,72621647797944320,75999347535314944,75999343223504896,75999347518472192,75999343223504896,72621643502977024,75999347535314944,72621643502977024,75999347518472192,72621647814787072,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621643502977024,72621647797944320,72621643502977024,89510142105616384,72621647814787072,89510142105616384,72621647797944320,89510146417426432,80502942850875392,89510146400583680,80502942850875392,72621643502977024,80502947162685440,72621643502977024,80502947145842688,72621647814787072,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621643502977024,72621647797944320,72621643502977024,75999343223504896,72621647814787072,75999343223504896,72621647797944320,75999347535314944,75999343223504896,75999347518472192,75999343223504896,72621643502977024,75999347535314944,72621643502977024,75999347518472192,72621647814787072,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621643502977024,72621647797944320,72621643502977024,80502942850875392,72621647814787072,80502942850875392,72621647797944320,80502947162685440,89510142105616384,80502947145842688,89510142105616384,72621643502977024,89510146417426432,72621643502977024,89510146400583680,72621647814787072,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621643502977024,72621647797944320,72621643502977024,75999343223504896,72621647814787072,75999343223504896,72621647797944320,75999347535314944,75999343223504896,75999347518472192,75999343223504896,72621643502977024,75999347535314944,72621643502977024,75999347518472192,72621647814787072,72621643502977024,72621647797944320,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747547721629696,73747543409819648,73747547704786944,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621647814787072,72621643502977024,72621647797944320,72621643502977024,107524540615098368,72621647814787072,107524540615098368,72621647797944320,143553337634062336,80502942850875392,143553337634062336,80502942850875392,72621643502977024,80502947162685440,72621643502977024,80502947145842688,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621647814787072,75999343223504896,72621647797944320,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999347535314944,72621643502977024,75999347518472192,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621647814787072,73747543409819648,72621647797944320,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747547721629696,72621643502977024,73747547704786944,72621643502977024,72621643502977024,72621643502977024,72621643502977024,80502942850875392,72621647814787072,80502942850875392,72621647797944320,80502942850875392,107524540615098368,80502942850875392,107524540615098368,72621643502977024,143553337634062336,72621643502977024,143553337634062336,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,89510142105616384,72621643502977024,89510142105616384,72621643502977024,89510142105616384,80502942850875392,89510142105616384,80502942850875392,72621643502977024,80502942850875392,72621643502977024,80502942850875392,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,80502942850875392,72621643502977024,80502942850875392,72621643502977024,80502942850875392,89510142105616384,80502942850875392,89510142105616384,72621643502977024,89510142105616384,72621643502977024,89510142105616384,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,75999343223504896,75999343223504896,75999343223504896,72621643502977024,75999343223504896,72621643502977024,75999343223504896,72621643502977024,72621643502977024,72621643502977024,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,73747543409819648,73747543409819648,73747543409819648,72621643502977024,73747543409819648,72621643502977024,73747543409819648,72621643502977024,72621643502977024,72621643502977024,72621643502977024,0],[215330564830528002,215330564830396416,215330564830527488,215330564830396416,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,152280170047341058,152280170047209472,152280170047340544,152280170047209472,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,161287369302082050,161287369301950464,161287369302081536,161287369301950464,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,152280170047341058,152280170047209472,152280170047340544,152280170047209472,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,179301767811564034,179301767811432448,179301767811563520,179301767811432448,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,152280170047341058,152280170047209472,152280170047340544,152280170047209472,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,161287369302082050,161287369301950464,161287369302081536,161287369301950464,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,152280170047341058,152280170047209472,152280170047340544,152280170047209472,145524770606285314,145524770606153728,145524770606284800,145524770606153728,147776570419970562,147776570419838976,147776570419970048,147776570419838976,145524770606285314,145524770606153728,145524770606284800,145524770606153728,215330556206907392,215330556206907392,215330556206907392,215330556206907392,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,179301759187943424,179301759187943424,179301759187943424,179301759187943424,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,215330564796841984,215330564796841984,215330564796841984,215330564796841984,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,161287369268396032,161287369268396032,161287369268396032,161287369268396032,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,179301767777878016,179301767777878016,179301767777878016,179301767777878016,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,161287369268396032,161287369268396032,161287369268396032,161287369268396032,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,215330556206907392,215330556206907392,215330556206907392,215330556206907392,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,179301759187943424,179301759187943424,179301759187943424,179301759187943424,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,215330564830528000,215330564830396416,215330564830527488,215330564830396416,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,152280170047341056,152280170047209472,152280170047340544,152280170047209472,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,161287369302082048,161287369301950464,161287369302081536,161287369301950464,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,152280170047341056,152280170047209472,152280170047340544,152280170047209472,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,179301767811564032,179301767811432448,179301767811563520,179301767811432448,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,152280170047341056,152280170047209472,152280170047340544,152280170047209472,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,161287369302082048,161287369301950464,161287369302081536,161287369301950464,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,152280170047341056,152280170047209472,152280170047340544,152280170047209472,145524770606285312,145524770606153728,145524770606284800,145524770606153728,147776570419970560,147776570419838976,147776570419970048,147776570419838976,145524770606285312,145524770606153728,145524770606284800,145524770606153728,215330556206907392,215330556206907392,215330556206907392,215330556206907392,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,179301759187943424,179301759187943424,179301759187943424,179301759187943424,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,215330564796841984,215330564796841984,215330564796841984,215330564796841984,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,161287369268396032,161287369268396032,161287369268396032,161287369268396032,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,179301767777878016,179301767777878016,179301767777878016,179301767777878016,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,161287369268396032,161287369268396032,161287369268396032,161287369268396032,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,152280170013655040,152280170013655040,152280170013655040,152280170013655040,145524770572599296,145524770572599296,145524770572599296,145524770572599296,147776570386284544,147776570386284544,147776570386284544,147776570386284544,145524770572599296,145524770572599296,145524770572599296,145524770572599296,215330556206907392,215330556206907392,215330556206907392,215330556206907392,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,179301759187943424,179301759187943424,179301759187943424,179301759187943424,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,161287360678461440,161287360678461440,161287360678461440,161287360678461440,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,152280161423720448,152280161423720448,152280161423720448,152280161423720448,145524761982664704,145524761982664704,145524761982664704,145524761982664704,147776561796349952,147776561796349952,147776561796349952,147776561796349952,145524761982664704,145524761982664704,145524761982664704,145524761982664704,0],[358885010599838724,358885010599575552,358884993352597504,358884993352597504,358885010599837696,358885010599575552,358884993352597504,358884993352597504,322574738604164096,322574738603900928,322574721356922880,322574721356922880,322574738604163072,322574738603900928,322574721356922880,322574721356922880,322856213513502720,322856213513502720,322856196333633536,322856196333633536,322856213513502720,322856213513502720,322856196333633536,322856196333633536,358603535555756032,358603535555756032,358603518375886848,358603518375886848,358603535555756032,358603535555756032,358603518375886848,358603518375886848,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651780,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941120,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,304841815071392772,304841815071129600,304841797824151552,304841797824151552,304841815071391744,304841815071129600,304841797824151552,304841797824151552,304560340094682112,304560340094418944,304560322847440896,304560322847440896,304560340094681088,304560340094418944,304560322847440896,304560322847440896,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304560340027310080,304560340027310080,304560322847440896,304560322847440896,304560340027310080,304560340027310080,304560322847440896,304560322847440896,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651780,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941120,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,322856213580874756,322856213580611584,322856196333633536,322856196333633536,322856213580873728,322856213580611584,322856196333633536,322856196333633536,358603535623128068,358603535622864896,358603518375886848,358603518375886848,358603535623127040,358603535622864896,358603518375886848,358603518375886848,358885010532466688,358885010532466688,358884993352597504,358884993352597504,358885010532466688,358885010532466688,358884993352597504,358884993352597504,322574738536792064,322574738536792064,322574721356922880,322574721356922880,322574738536792064,322574738536792064,322574721356922880,322574721356922880,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651780,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941124,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,304841815071392772,304841815071129600,304841797824151552,304841797824151552,304841815071391744,304841815071129600,304841797824151552,304841797824151552,304560340094682116,304560340094418944,304560322847440896,304560322847440896,304560340094681088,304560340094418944,304560322847440896,304560322847440896,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304560340027310080,304560340027310080,304560322847440896,304560322847440896,304560340027310080,304560340027310080,304560322847440896,304560322847440896,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651780,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941124,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281284,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,358885010599838720,358885010599575552,358884993352597504,358884993352597504,358885010599837696,358885010599575552,358884993352597504,358884993352597504,322574738604164100,322574738603900928,322574721356922880,322574721356922880,322574738604163072,322574738603900928,322574721356922880,322574721356922880,322856213513502720,322856213513502720,322856196333633536,322856196333633536,322856213513502720,322856213513502720,322856196333633536,322856196333633536,358603535555756032,358603535555756032,358603518375886848,358603518375886848,358603535555756032,358603535555756032,358603518375886848,358603518375886848,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651776,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941124,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,304841815071392768,304841815071129600,304841797824151552,304841797824151552,304841815071391744,304841815071129600,304841797824151552,304841797824151552,304560340094682116,304560340094418944,304560322847440896,304560322847440896,304560340094681088,304560340094418944,304560322847440896,304560322847440896,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304560340027310080,304560340027310080,304560322847440896,304560322847440896,304560340027310080,304560340027310080,304560322847440896,304560322847440896,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651776,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941124,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570628,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,322856213580874752,322856213580611584,322856196333633536,322856196333633536,322856213580873728,322856213580611584,322856196333633536,322856196333633536,358603535623128064,358603535622864896,358603518375886848,358603518375886848,358603535623127040,358603535622864896,358603518375886848,358603518375886848,358885010532466688,358885010532466688,358884993352597504,358884993352597504,358885010532466688,358885010532466688,358884993352597504,358884993352597504,322574738536792064,322574738536792064,322574721356922880,322574721356922880,322574738536792064,322574738536792064,322574721356922880,322574721356922880,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651776,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941120,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,304841815071392768,304841815071129600,304841797824151552,304841797824151552,304841815071391744,304841815071129600,304841797824151552,304841797824151552,304560340094682112,304560340094418944,304560322847440896,304560322847440896,304560340094681088,304560340094418944,304560322847440896,304560322847440896,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304841815004020736,304841815004020736,304841797824151552,304841797824151552,304560340027310080,304560340027310080,304560322847440896,304560322847440896,304560340027310080,304560340027310080,304560322847440896,304560322847440896,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,295834615816651776,295834615816388608,295834598569410560,295834598569410560,295834615816650752,295834615816388608,295834598569410560,295834598569410560,295553140839941120,295553140839677952,295553123592699904,295553123592699904,295553140839940096,295553140839677952,295553123592699904,295553123592699904,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295834615749279744,295834615749279744,295834598569410560,295834598569410560,295553140772569088,295553140772569088,295553123592699904,295553123592699904,295553140772569088,295553140772569088,295553123592699904,295553123592699904,291331016189281280,291331016189018112,291330998942040064,291330998942040064,291331016189280256,291331016189018112,291330998942040064,291330998942040064,291049541212570624,291049541212307456,291049523965329408,291049523965329408,291049541212569600,291049541212307456,291049523965329408,291049523965329408,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291331016121909248,291331016121909248,291330998942040064,291330998942040064,291049541145198592,291049541145198592,291049523965329408,291049523965329408,291049541145198592,291049541145198592,291049523965329408,291049523965329408,0],[645993902138460168,582943507220529152,582099047930658816,582099047930658816,645993867643977728,582943472860790784,645993902137933824,582943507220529152,609683630008041472,582662032378560512,645993867643977728,582943472860790784,609683595648303104,582661997884080128,609683630008041472,582662032378036224,645149477073584128,582099082425139200,609683595648303104,582661997884080128,645149442713845760,582099047930658816,645149477073584128,582099082424614912,609120680189364232,582099082290397184,645149442713845760,582099047930658816,609120645694881792,582099047930658816,609120680188837888,582099082290397184,609965104984752128,645993902138460160,609120645694881792,582099047930658816,609965070625013760,645993867643977728,609965104984752128,645993902137933824,645712427027005440,609683630008041472,609965070625013760,645993867643977728,645712392667267072,609683595648303104,645712427027005440,609683630008041472,609120680189362176,645149477073584128,645712392667267072,609683595648303104,609120645694881792,645149442713845760,609120680188837888,645149477073584128,645149477208326144,609120680189364224,609120645694881792,645149442713845760,645149442713845760,609120645694881792,645149477207801856,609120680188837888,582943507355273224,609965104984752128,645149442713845760,609120645694881792,582943472860790784,609965070625013760,582943507354746880,609965104984752128,582662032243818496,645712427027005440,582943472860790784,609965070625013760,582661997884080128,645712392667267072,582662032243818496,645712427027005440,582099082290397184,609120680189362176,582661997884080128,645712392667267072,582099047930658816,609120645694881792,582099082290397184,609120680188837888,582099082425141256,645149477208326144,582099047930658816,609120645694881792,582099047930658816,645149442713845760,582099082424614912,645149477207801856,582943507220529152,582943507355273216,582099047930658816,645149442713845760,582943472860790784,582943472860790784,582943507220529152,582943507354746880,582662032243818496,582662032243818496,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032243818496,582662032243818496,582099082425139200,582099082290397184,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082424614912,582099082290397184,582099082425139200,582099082425141248,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082424614912,582099082424614912,591950706610014216,582943507220529152,582099047930658816,582099047930658816,591950672115531776,582943472860790784,591950706609487872,582943507220529152,591669231498559488,582662032243818496,591950672115531776,582943472860790784,591669197138821120,582661997884080128,591669231498559488,582662032243818496,591106281545138176,582099082425139200,591669197138821120,582661997884080128,591106247185399808,582099047930658816,591106281545138176,582099082424614912,591106281679882248,582099082425139200,591106247185399808,582099047930658816,591106247185399808,582099047930658816,591106281679355904,582099082424614912,591950706475270144,591950706610014208,591106247185399808,582099047930658816,591950672115531776,591950672115531776,591950706475270144,591950706609487872,591669231498559488,591669231498559488,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669231498559488,591669231498559488,591106281679880192,591106281545138176,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106281679355904,591106281545138176,591106281679880192,591106281679882240,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106281679355904,591106281679355904,582943507355273224,591950706475270144,591106247185399808,591106247185399808,582943472860790784,591950672115531776,582943507354746880,591950706475270144,582662032243818496,591669231498559488,582943472860790784,591950672115531776,582661997884080128,591669197138821120,582662032243818496,591669231498559488,582099082290397184,591106281679880192,582661997884080128,591669197138821120,582099047930658816,591106247185399808,582099082290397184,591106281679355904,582099082425141256,591106281679880192,582099047930658816,591106247185399808,582099047930658816,591106247185399808,582099082424614912,591106281679355904,582943507220529152,582943507355273216,582099047930658816,591106247185399808,582943472860790784,582943472860790784,582943507220529152,582943507354746880,582662032243818496,582662032243818496,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032243818496,582662032243818496,582099082425139200,582099082290397184,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082424614912,582099082290397184,582099082425139200,582099082425141248,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082424614912,582099082424614912,609965105119496200,582943507220529152,582099047930658816,582099047930658816,609965070625013760,582943472860790784,609965105118969856,582943507220529152,645712427161749512,582662032243818496,609965070625013760,582943472860790784,645712392667267072,582661997884080128,645712427161223168,582662032243818496,609120680054620160,582099082425139200,645712392667267072,582661997884080128,609120645694881792,582099047930658816,609120680054620160,582099082424614912,645149477073584128,582099082425139200,609120645694881792,582099047930658816,645149442713845760,582099047930658816,645149477073584128,582099082424614912,645993902138458112,609965105119496192,645149442713845760,582099047930658816,645993867643977728,609965070625013760,645993902137933824,609965105118969856,609683630008041472,645712427161749504,645993867643977728,609965070625013760,609683595648303104,645712392667267072,609683630008041472,645712427161223168,645149477073584128,609120680054620160,609683595648303104,645712392667267072,645149442713845760,609120645694881792,645149477073584128,609120680054620160,609120680189362176,645149477073584128,645149442713845760,609120645694881792,609120645694881792,645149442713845760,609120680188837888,645149477073584128,582943507355273224,645993902138458112,609120645694881792,645149442713845760,582943472860790784,645993867643977728,582943507354746880,645993902137933824,582662032378562568,609683630008041472,582943472860790784,645993867643977728,582661997884080128,609683595648303104,582662032378036224,609683630008041472,582099082290397184,645149477073584128,582661997884080128,609683595648303104,582099047930658816,645149442713845760,582099082290397184,645149477073584128,582099082290397184,609120680189362176,582099047930658816,645149442713845760,582099047930658816,609120645694881792,582099082290397184,609120680188837888,582943507355271168,582943507355273216,582099047930658816,609120645694881792,582943472860790784,582943472860790784,582943507354746880,582943507354746880,582662032243818496,582662032378562560,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032243818496,582662032378036224,582099082290397184,582099082290397184,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082290397184,582099082290397184,582099082425139200,582099082290397184,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082424614912,582099082290397184,591950706610014216,582943507355271168,582099047930658816,582099047930658816,591950672115531776,582943472860790784,591950706609487872,582943507354746880,591669231633303560,582662032243818496,591950672115531776,582943472860790784,591669197138821120,582661997884080128,591669231632777216,582662032243818496,591106281545138176,582099082290397184,591669197138821120,582661997884080128,591106247185399808,582099047930658816,591106281545138176,582099082290397184,591106281545138176,582099082425139200,591106247185399808,582099047930658816,591106247185399808,582099047930658816,591106281545138176,582099082424614912,591950706610012160,591950706610014208,591106247185399808,582099047930658816,591950672115531776,591950672115531776,591950706609487872,591950706609487872,591669231498559488,591669231633303552,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669231498559488,591669231632777216,591106281545138176,591106281545138176,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106281545138176,591106281545138176,591106281679880192,591106281545138176,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106281679355904,591106281545138176,582943507355273224,591950706610012160,591106247185399808,591106247185399808,582943472860790784,591950672115531776,582943507354746880,591950706609487872,582662032378562568,591669231498559488,582943472860790784,591950672115531776,582661997884080128,591669197138821120,582662032378036224,591669231498559488,582099082290397184,591106281545138176,582661997884080128,591669197138821120,582099047930658816,591106247185399808,582099082290397184,591106281545138176,582099082290397184,591106281679880192,582099047930658816,591106247185399808,582099047930658816,591106247185399808,582099082290397184,591106281679355904,582943507355271168,582943507355273216,582099047930658816,591106247185399808,582943472860790784,582943472860790784,582943507354746880,582943507354746880,582662032243818496,582662032378562560,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032243818496,582662032378036224,582099082290397184,582099082290397184,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082290397184,582099082290397184,582099082425139200,582099082290397184,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082424614912,582099082290397184,645993902003716096,582943507355271168,582099047930658816,582099047930658816,645993867643977728,582943472860790784,645993902003716096,582943507354746880,609683630142785544,582662032243818496,645993867643977728,582943472860790784,609683595648303104,582661997884080128,609683630142259200,582662032243818496,645149477208328200,582099082290397184,609683595648303104,582661997884080128,645149442713845760,582099047930658816,645149477207801856,582099082290397184,609120680054620160,582099082425139200,645149442713845760,582099047930658816,609120645694881792,582099047930658816,609120680054620160,582099082424614912,609965105119494144,645993902003716096,609120645694881792,582099047930658816,609965070625013760,645993867643977728,609965105118969856,645993902003716096,645712427161747456,609683630142785536,609965070625013760,645993867643977728,645712392667267072,609683595648303104,645712427161223168,609683630142259200,609120680054620160,645149477208328192,645712392667267072,609683595648303104,609120645694881792,645149442713845760,609120680054620160,645149477207801856,645149477073584128,609120680054620160,609120645694881792,645149442713845760,645149442713845760,609120645694881792,645149477073584128,609120680054620160,582943507220529152,609965105119494144,645149442713845760,609120645694881792,582943472860790784,609965070625013760,582943507220529152,609965105118969856,582662032378562568,645712427161747456,582943472860790784,609965070625013760,582661997884080128,645712392667267072,582662032378036224,645712427161223168,582099082425141256,609120680054620160,582661997884080128,645712392667267072,582099047930658816,609120645694881792,582099082424614912,609120680054620160,582099082290397184,645149477073584128,582099047930658816,609120645694881792,582099047930658816,645149442713845760,582099082290397184,645149477073584128,582943507355271168,582943507220529152,582099047930658816,645149442713845760,582943472860790784,582943472860790784,582943507354746880,582943507220529152,582662032378560512,582662032378562560,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032378036224,582662032378036224,582099082290397184,582099082425141248,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082290397184,582099082424614912,582099082290397184,582099082290397184,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082290397184,582099082290397184,591950706475270144,582943507355271168,582099047930658816,582099047930658816,591950672115531776,582943472860790784,591950706475270144,582943507354746880,591669231633303560,582662032378560512,591950672115531776,582943472860790784,591669197138821120,582661997884080128,591669231632777216,582662032378036224,591106281679882248,582099082290397184,591669197138821120,582661997884080128,591106247185399808,582099047930658816,591106281679355904,582099082290397184,591106281545138176,582099082290397184,591106247185399808,582099047930658816,591106247185399808,582099047930658816,591106281545138176,582099082290397184,591950706610012160,591950706475270144,591106247185399808,582099047930658816,591950672115531776,591950672115531776,591950706609487872,591950706475270144,591669231633301504,591669231633303552,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669231632777216,591669231632777216,591106281545138176,591106281679882240,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106281545138176,591106281679355904,591106281545138176,591106281545138176,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106281545138176,591106281545138176,582943507220529152,591950706610012160,591106247185399808,591106247185399808,582943472860790784,591950672115531776,582943507220529152,591950706609487872,582662032378562568,591669231633301504,582943472860790784,591950672115531776,582661997884080128,591669197138821120,582662032378036224,591669231632777216,582099082425141256,591106281545138176,582661997884080128,591669197138821120,582099047930658816,591106247185399808,582099082424614912,591106281545138176,582099082290397184,591106281545138176,582099047930658816,591106247185399808,582099047930658816,591106247185399808,582099082290397184,591106281545138176,582943507355271168,582943507220529152,582099047930658816,591106247185399808,582943472860790784,582943472860790784,582943507354746880,582943507220529152,582662032378560512,582662032378562560,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032378036224,582662032378036224,582099082290397184,582099082425141248,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082290397184,582099082424614912,582099082290397184,582099082290397184,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082290397184,582099082290397184,609965104984752128,582943507355271168,582099047930658816,582099047930658816,609965070625013760,582943472860790784,609965104984752128,582943507354746880,645712427027005440,582662032378560512,609965070625013760,582943472860790784,645712392667267072,582661997884080128,645712427027005440,582662032378036224,609120680189364232,582099082290397184,645712392667267072,582661997884080128,609120645694881792,582099047930658816,609120680188837888,582099082290397184,645149477208328200,582099082290397184,609120645694881792,582099047930658816,645149442713845760,582099047930658816,645149477207801856,582099082290397184,645993902003716096,609965104984752128,645149442713845760,582099047930658816,645993867643977728,609965070625013760,645993902003716096,609965104984752128,609683630142783488,645712427027005440,645993867643977728,609965070625013760,609683595648303104,645712392667267072,609683630142259200,645712427027005440,645149477208326144,609120680189364224,609683595648303104,645712392667267072,645149442713845760,609120645694881792,645149477207801856,609120680188837888,609120680054620160,645149477208328192,645149442713845760,609120645694881792,609120645694881792,645149442713845760,609120680054620160,645149477207801856,582943507220529152,645993902003716096,609120645694881792,645149442713845760,582943472860790784,645993867643977728,582943507220529152,645993902003716096,582662032243818496,609683630142783488,582943472860790784,645993867643977728,582661997884080128,609683595648303104,582662032243818496,609683630142259200,582099082425141256,645149477208326144,582661997884080128,609683595648303104,582099047930658816,645149442713845760,582099082424614912,645149477207801856,582099082425141256,609120680054620160,582099047930658816,645149442713845760,582099047930658816,609120645694881792,582099082424614912,609120680054620160,582943507220529152,582943507220529152,582099047930658816,609120645694881792,582943472860790784,582943472860790784,582943507220529152,582943507220529152,582662032378560512,582662032243818496,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032378036224,582662032243818496,582099082425139200,582099082425141248,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082424614912,582099082424614912,582099082290397184,582099082425141248,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082290397184,582099082424614912,591950706475270144,582943507220529152,582099047930658816,582099047930658816,591950672115531776,582943472860790784,591950706475270144,582943507220529152,591669231498559488,582662032378560512,591950672115531776,582943472860790784,591669197138821120,582661997884080128,591669231498559488,582662032378036224,591106281679882248,582099082425139200,591669197138821120,582661997884080128,591106247185399808,582099047930658816,591106281679355904,582099082424614912,591106281679882248,582099082290397184,591106247185399808,582099047930658816,591106247185399808,582099047930658816,591106281679355904,582099082290397184,591950706475270144,591950706475270144,591106247185399808,582099047930658816,591950672115531776,591950672115531776,591950706475270144,591950706475270144,591669231633301504,591669231498559488,591950672115531776,591950672115531776,591669197138821120,591669197138821120,591669231632777216,591669231498559488,591106281679880192,591106281679882240,591669197138821120,591669197138821120,591106247185399808,591106247185399808,591106281679355904,591106281679355904,591106281545138176,591106281679882240,591106247185399808,591106247185399808,591106247185399808,591106247185399808,591106281545138176,591106281679355904,582943507220529152,591950706475270144,591106247185399808,591106247185399808,582943472860790784,591950672115531776,582943507220529152,591950706475270144,582662032243818496,591669231633301504,582943472860790784,591950672115531776,582661997884080128,591669197138821120,582662032243818496,591669231632777216,582099082425141256,591106281679880192,582661997884080128,591669197138821120,582099047930658816,591106247185399808,582099082424614912,591106281679355904,582099082425141256,591106281545138176,582099047930658816,591106247185399808,582099047930658816,591106247185399808,582099082424614912,591106281545138176,582943507220529152,582943507220529152,582099047930658816,591106247185399808,582943472860790784,582943472860790784,582943507220529152,582943507220529152,582662032378560512,582662032243818496,582943472860790784,582943472860790784,582661997884080128,582661997884080128,582662032378036224,582662032243818496,582099082425139200,582099082425141248,582661997884080128,582661997884080128,582099047930658816,582099047930658816,582099082424614912,582099082424614912,582099082290397184,582099082425141248,582099047930658816,582099047930658816,582099047930658816,582099047930658816,582099082290397184,582099082424614912,0],[1220211685215703056,1220211616226738176,1182212563090276352,1182212494370799616,1220211685215698944,1220211616226738176,1182212563090276352,1182212494370799616,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1165324064756072448,1165323995768160256,1220211684946214912,1220211616226738176,1165324064756072448,1165323995768160256,1220211684946214912,1220211616226738176,1182212563359764480,1182212494370799616,1182212563090276352,1182212494370799616,1182212563359760384,1182212494370799616,1182212563090276352,1182212494370799616,1164198164850282512,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1219930210238992400,1219930141250027520,1182212563090276352,1182212494370799616,1219930210238988288,1219930141250027520,1182212563090276352,1182212494370799616,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1165324064756072448,1165323995768160256,1219930209969504256,1219930141250027520,1165324064756072448,1165323995768160256,1219930209969504256,1219930141250027520,1220211685214650368,1220211616226738176,1182212563090276352,1182212494370799616,1220211685214650368,1220211616226738176,1182212563090276352,1182212494370799616,1164198164850282512,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1219367260285571088,1219367191296606208,1220211684946214912,1220211616226738176,1219367260285566976,1219367191296606208,1220211684946214912,1220211616226738176,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1219930210237939712,1219930141250027520,1182212563090276352,1182212494370799616,1219930210237939712,1219930141250027520,1182212563090276352,1182212494370799616,1164198164850282512,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1219367260285571088,1219367191296606208,1219930209969504256,1219930141250027520,1219367260285566976,1219367191296606208,1219930209969504256,1219930141250027520,1166168489687257088,1166168420698292224,1164198164580794368,1164198095861317632,1166168489687252992,1166168420698292224,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1219367260284518400,1219367191296606208,1166168489417768960,1166168420698292224,1219367260284518400,1219367191296606208,1166168489417768960,1166168420698292224,1164198164850282512,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1218241360378728464,1218241291389763584,1219367260016082944,1219367191296606208,1218241360378724352,1218241291389763584,1219367260016082944,1219367191296606208,1165887014710546432,1165886945721581568,1164198164580794368,1164198095861317632,1165887014710542336,1165886945721581568,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1219367260284518400,1219367191296606208,1165887014441058304,1165886945721581568,1219367260284518400,1219367191296606208,1165887014441058304,1165886945721581568,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1218241360378728464,1218241291389763584,1219367260016082944,1219367191296606208,1218241360378724352,1218241291389763584,1219367260016082944,1219367191296606208,1165324064757125120,1165323995768160256,1166168489417768960,1166168420698292224,1165324064757121024,1165323995768160256,1166168489417768960,1166168420698292224,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1218241360378728464,1218241291389763584,1218241360109240320,1218241291389763584,1218241360378724352,1218241291389763584,1218241360109240320,1218241291389763584,1165324064757125120,1165323995768160256,1165887014441058304,1165886945721581568,1165324064757121024,1165323995768160256,1165887014441058304,1165886945721581568,1184182888196739088,1184182819207774208,1218241360109240320,1218241291389763584,1184182888196734976,1184182819207774208,1218241360109240320,1218241291389763584,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1165324064756072448,1165323995768160256,1184182887927250944,1184182819207774208,1165324064756072448,1165323995768160256,1184182887927250944,1184182819207774208,1218241360378728464,1218241291389763584,1218241360109240320,1218241291389763584,1218241360378724352,1218241291389763584,1218241360109240320,1218241291389763584,1164198164850282496,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1183901413220028432,1183901344231063552,1218241360109240320,1218241291389763584,1183901413220024320,1183901344231063552,1218241360109240320,1218241291389763584,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1165324064756072448,1165323995768160256,1183901412950540288,1183901344231063552,1165324064756072448,1165323995768160256,1183901412950540288,1183901344231063552,1184182888195686400,1184182819207774208,1218241360109240320,1218241291389763584,1184182888195686400,1184182819207774208,1218241360109240320,1218241291389763584,1164198164850282496,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1183338463266607120,1183338394277642240,1184182887927250944,1184182819207774208,1183338463266603008,1183338394277642240,1184182887927250944,1184182819207774208,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1183901413218975744,1183901344231063552,1218241360109240320,1218241291389763584,1183901413218975744,1183901344231063552,1218241360109240320,1218241291389763584,1164198164850282496,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1183338463266607120,1183338394277642240,1183901412950540288,1183901344231063552,1183338463266603008,1183338394277642240,1183901412950540288,1183901344231063552,1166168489687257088,1166168420698292224,1164198164580794368,1164198095861317632,1166168489687252992,1166168420698292224,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1183338463265554432,1183338394277642240,1166168489417768960,1166168420698292224,1183338463265554432,1183338394277642240,1166168489417768960,1166168420698292224,1164198164850282496,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1182212563359764496,1182212494370799616,1183338462997118976,1183338394277642240,1182212563359760384,1182212494370799616,1183338462997118976,1183338394277642240,1165887014710546432,1165886945721581568,1164198164580794368,1164198095861317632,1165887014710542336,1165886945721581568,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1183338463265554432,1183338394277642240,1165887014441058304,1165886945721581568,1183338463265554432,1183338394277642240,1165887014441058304,1165886945721581568,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1182212563359764496,1182212494370799616,1183338462997118976,1183338394277642240,1182212563359760384,1182212494370799616,1183338462997118976,1183338394277642240,1165324064757125120,1165323995768160256,1166168489417768960,1166168420698292224,1165324064757121024,1165323995768160256,1166168489417768960,1166168420698292224,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1182212563359764496,1182212494370799616,1182212563090276352,1182212494370799616,1182212563359760384,1182212494370799616,1182212563090276352,1182212494370799616,1165324064757125120,1165323995768160256,1165887014441058304,1165886945721581568,1165324064757121024,1165323995768160256,1165887014441058304,1165886945721581568,1220211685215703040,1220211616226738176,1182212563090276352,1182212494370799616,1220211685215698944,1220211616226738176,1182212563090276352,1182212494370799616,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1165324064756072448,1165323995768160256,1220211684946214912,1220211616226738176,1165324064756072448,1165323995768160256,1220211684946214912,1220211616226738176,1182212563359764496,1182212494370799616,1182212563090276352,1182212494370799616,1182212563359760384,1182212494370799616,1182212563090276352,1182212494370799616,1164198164850282496,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1219930210238992384,1219930141250027520,1182212563090276352,1182212494370799616,1219930210238988288,1219930141250027520,1182212563090276352,1182212494370799616,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1165324064756072448,1165323995768160256,1219930209969504256,1219930141250027520,1165324064756072448,1165323995768160256,1219930209969504256,1219930141250027520,1220211685214650368,1220211616226738176,1182212563090276352,1182212494370799616,1220211685214650368,1220211616226738176,1182212563090276352,1182212494370799616,1164198164850282496,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1219367260285571072,1219367191296606208,1220211684946214912,1220211616226738176,1219367260285566976,1219367191296606208,1220211684946214912,1220211616226738176,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1182212563358711808,1182212494370799616,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1219930210237939712,1219930141250027520,1182212563090276352,1182212494370799616,1219930210237939712,1219930141250027520,1182212563090276352,1182212494370799616,1164198164850282496,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1219367260285571072,1219367191296606208,1219930209969504256,1219930141250027520,1219367260285566976,1219367191296606208,1219930209969504256,1219930141250027520,1166168489687257104,1166168420698292224,1164198164580794368,1164198095861317632,1166168489687252992,1166168420698292224,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1164198164849229824,1164198095861317632,1219367260016082944,1219367191296606208,1219367260284518400,1219367191296606208,1166168489417768960,1166168420698292224,1219367260284518400,1219367191296606208,1166168489417768960,1166168420698292224,1164198164850282496,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1218241360378728448,1218241291389763584,1219367260016082944,1219367191296606208,1218241360378724352,1218241291389763584,1219367260016082944,1219367191296606208,1165887014710546448,1165886945721581568,1164198164580794368,1164198095861317632,1165887014710542336,1165886945721581568,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1219367260284518400,1219367191296606208,1165887014441058304,1165886945721581568,1219367260284518400,1219367191296606208,1165887014441058304,1165886945721581568,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1218241360378728448,1218241291389763584,1219367260016082944,1219367191296606208,1218241360378724352,1218241291389763584,1219367260016082944,1219367191296606208,1165324064757125136,1165323995768160256,1166168489417768960,1166168420698292224,1165324064757121024,1165323995768160256,1166168489417768960,1166168420698292224,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1164198164849229824,1164198095861317632,1218241360109240320,1218241291389763584,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1218241360378728448,1218241291389763584,1218241360109240320,1218241291389763584,1218241360378724352,1218241291389763584,1218241360109240320,1218241291389763584,1165324064757125136,1165323995768160256,1165887014441058304,1165886945721581568,1165324064757121024,1165323995768160256,1165887014441058304,1165886945721581568,1184182888196739072,1184182819207774208,1218241360109240320,1218241291389763584,1184182888196734976,1184182819207774208,1218241360109240320,1218241291389763584,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1218241360377675776,1218241291389763584,1165324064487636992,1165323995768160256,1165324064756072448,1165323995768160256,1184182887927250944,1184182819207774208,1165324064756072448,1165323995768160256,1184182887927250944,1184182819207774208,1218241360378728448,1218241291389763584,1218241360109240320,1218241291389763584,1218241360378724352,1218241291389763584,1218241360109240320,1218241291389763584,1164198164850282512,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1183901413220028416,1183901344231063552,1218241360109240320,1218241291389763584,1183901413220024320,1183901344231063552,1218241360109240320,1218241291389763584,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1165324064756072448,1165323995768160256,1183901412950540288,1183901344231063552,1165324064756072448,1165323995768160256,1183901412950540288,1183901344231063552,1184182888195686400,1184182819207774208,1218241360109240320,1218241291389763584,1184182888195686400,1184182819207774208,1218241360109240320,1218241291389763584,1164198164850282512,1164198095861317632,1165324064487636992,1165323995768160256,1164198164850278400,1164198095861317632,1165324064487636992,1165323995768160256,1183338463266607104,1183338394277642240,1184182887927250944,1184182819207774208,1183338463266603008,1183338394277642240,1184182887927250944,1184182819207774208,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1218241360377675776,1218241291389763584,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1183901413218975744,1183901344231063552,1218241360109240320,1218241291389763584,1183901413218975744,1183901344231063552,1218241360109240320,1218241291389763584,1164198164850282512,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1183338463266607104,1183338394277642240,1183901412950540288,1183901344231063552,1183338463266603008,1183338394277642240,1183901412950540288,1183901344231063552,1166168489687257104,1166168420698292224,1164198164580794368,1164198095861317632,1166168489687252992,1166168420698292224,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1164198164849229824,1164198095861317632,1183338462997118976,1183338394277642240,1183338463265554432,1183338394277642240,1166168489417768960,1166168420698292224,1183338463265554432,1183338394277642240,1166168489417768960,1166168420698292224,1164198164850282512,1164198095861317632,1164198164580794368,1164198095861317632,1164198164850278400,1164198095861317632,1164198164580794368,1164198095861317632,1182212563359764480,1182212494370799616,1183338462997118976,1183338394277642240,1182212563359760384,1182212494370799616,1183338462997118976,1183338394277642240,1165887014710546448,1165886945721581568,1164198164580794368,1164198095861317632,1165887014710542336,1165886945721581568,1164198164580794368,1164198095861317632,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1183338463265554432,1183338394277642240,1165887014441058304,1165886945721581568,1183338463265554432,1183338394277642240,1165887014441058304,1165886945721581568,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1166168489686204416,1166168420698292224,1164198164580794368,1164198095861317632,1182212563359764480,1182212494370799616,1183338462997118976,1183338394277642240,1182212563359760384,1182212494370799616,1183338462997118976,1183338394277642240,1165324064757125136,1165323995768160256,1166168489417768960,1166168420698292224,1165324064757121024,1165323995768160256,1166168489417768960,1166168420698292224,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1164198164849229824,1164198095861317632,1182212563090276352,1182212494370799616,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1182212563358711808,1182212494370799616,1165324064487636992,1165323995768160256,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1165887014709493760,1165886945721581568,1164198164580794368,1164198095861317632,1182212563359764480,1182212494370799616,1182212563090276352,1182212494370799616,1182212563359760384,1182212494370799616,1182212563090276352,1182212494370799616,1165324064757125136,1165323995768160256,1165887014441058304,1165886945721581568,1165324064757121024,1165323995768160256,1165887014441058304,1165886945721581568,0],[2368647251370188832,2368647251368083456,2328396329161588736,2328396329161588736,2368365776393478176,2368365776391372800,2328396329161588736,2328396329161588736,2367802826440056864,2367802826437951488,2328396329161588736,2328396329161588736,2367802826440056864,2367802826437951488,2328396329161588736,2328396329161588736,2366676926533214240,2366676926531108864,2328396329161588736,2328396329161588736,2366676926533214240,2366676926531108864,2328396329161588736,2328396329161588736,2366676926533214240,2366676926531108864,2328396329161588736,2328396329161588736,2366676926533214240,2366676926531108864,2328396329161588736,2328396329161588736,2364425126719528992,2364425126717423616,2332618316373295104,2332618316373295104,2364425126719528992,2364425126717423616,2332336841396584448,2332336841396584448,2364425126719528992,2364425126717423616,2331773891443163136,2331773891443163136,2364425126719528992,2364425126717423616,2331773891443163136,2331773891443163136,2364425126719528992,2364425126717423616,2330647991536320512,2330647991536320512,2364425126719528992,2364425126717423616,2330647991536320512,2330647991536320512,2364425126719528992,2364425126717423616,2330647991536320512,2330647991536320512,2364425126719528992,2364425126717423616,2330647991536320512,2330647991536320512,2368647113392259072,2368647113392259072,2328396191722635264,2328396191722635264,2368365638415548416,2368365638415548416,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2364424988741599232,2364424988741599232,2368647251370188800,2368647251368083456,2364424988741599232,2364424988741599232,2368365776393478144,2368365776391372800,2364424988741599232,2364424988741599232,2367802826440056832,2367802826437951488,2364424988741599232,2364424988741599232,2367802826440056832,2367802826437951488,2364424988741599232,2364424988741599232,2366676926533214208,2366676926531108864,2364424988741599232,2364424988741599232,2366676926533214208,2366676926531108864,2364424988741599232,2364424988741599232,2366676926533214208,2366676926531108864,2364424988741599232,2364424988741599232,2366676926533214208,2366676926531108864,2332618454351224864,2332618454349119488,2364425126719528960,2364425126717423616,2332336979374514208,2332336979372408832,2364425126719528960,2364425126717423616,2331774029421092896,2331774029418987520,2364425126719528960,2364425126717423616,2331774029421092896,2331774029418987520,2364425126719528960,2364425126717423616,2330648129514250272,2330648129512144896,2364425126719528960,2364425126717423616,2330648129514250272,2330648129512144896,2364425126719528960,2364425126717423616,2330648129514250272,2330648129512144896,2364425126719528960,2364425126717423616,2330648129514250272,2330648129512144896,2364425126719528960,2364425126717423616,2328396329700565024,2328396329698459648,2368647113392259072,2368647113392259072,2328396329700565024,2328396329698459648,2368365638415548416,2368365638415548416,2328396329700565024,2328396329698459648,2367802688462127104,2367802688462127104,2328396329700565024,2328396329698459648,2367802688462127104,2367802688462127104,2328396329700565024,2328396329698459648,2366676788555284480,2366676788555284480,2328396329700565024,2328396329698459648,2366676788555284480,2366676788555284480,2328396329700565024,2328396329698459648,2366676788555284480,2366676788555284480,2328396329700565024,2328396329698459648,2366676788555284480,2366676788555284480,2332618316373295104,2332618316373295104,2364424988741599232,2364424988741599232,2332336841396584448,2332336841396584448,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2328396191722635264,2328396191722635264,2332618454351224832,2332618454349119488,2328396191722635264,2328396191722635264,2332336979374514176,2332336979372408832,2328396191722635264,2328396191722635264,2331774029421092864,2331774029418987520,2328396191722635264,2328396191722635264,2331774029421092864,2331774029418987520,2328396191722635264,2328396191722635264,2330648129514250240,2330648129512144896,2328396191722635264,2328396191722635264,2330648129514250240,2330648129512144896,2328396191722635264,2328396191722635264,2330648129514250240,2330648129512144896,2328396191722635264,2328396191722635264,2330648129514250240,2330648129512144896,2368647250831212544,2368647250831212544,2328396329700564992,2328396329698459648,2368365775854501888,2368365775854501888,2328396329700564992,2328396329698459648,2367802825901080576,2367802825901080576,2328396329700564992,2328396329698459648,2367802825901080576,2367802825901080576,2328396329700564992,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700564992,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700564992,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700564992,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700564992,2328396329698459648,2364425126180552704,2364425126180552704,2332618316373295104,2332618316373295104,2364425126180552704,2364425126180552704,2332336841396584448,2332336841396584448,2364425126180552704,2364425126180552704,2331773891443163136,2331773891443163136,2364425126180552704,2364425126180552704,2331773891443163136,2331773891443163136,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2368647113392259072,2368647113392259072,2328396191722635264,2328396191722635264,2368365638415548416,2368365638415548416,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2364424988741599232,2364424988741599232,2368647250831212544,2368647250831212544,2364424988741599232,2364424988741599232,2368365775854501888,2368365775854501888,2364424988741599232,2364424988741599232,2367802825901080576,2367802825901080576,2364424988741599232,2364424988741599232,2367802825901080576,2367802825901080576,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2332618453812248576,2332618453812248576,2364425126180552704,2364425126180552704,2332336978835537920,2332336978835537920,2364425126180552704,2364425126180552704,2331774028882116608,2331774028882116608,2364425126180552704,2364425126180552704,2331774028882116608,2331774028882116608,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2328396329161588736,2328396329161588736,2368647113392259072,2368647113392259072,2328396329161588736,2328396329161588736,2368365638415548416,2368365638415548416,2328396329161588736,2328396329161588736,2367802688462127104,2367802688462127104,2328396329161588736,2328396329161588736,2367802688462127104,2367802688462127104,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2332618316373295104,2332618316373295104,2364424988741599232,2364424988741599232,2332336841396584448,2332336841396584448,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2328396191722635264,2328396191722635264,2332618453812248576,2332618453812248576,2328396191722635264,2328396191722635264,2332336978835537920,2332336978835537920,2328396191722635264,2328396191722635264,2331774028882116608,2331774028882116608,2328396191722635264,2328396191722635264,2331774028882116608,2331774028882116608,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2368647251370180608,2368647251368083456,2328396329161588736,2328396329161588736,2368365776393469952,2368365776391372800,2328396329161588736,2328396329161588736,2367802826440048640,2367802826437951488,2328396329161588736,2328396329161588736,2367802826440048640,2367802826437951488,2328396329161588736,2328396329161588736,2366676926533206016,2366676926531108864,2328396329161588736,2328396329161588736,2366676926533206016,2366676926531108864,2328396329161588736,2328396329161588736,2366676926533206016,2366676926531108864,2328396329161588736,2328396329161588736,2366676926533206016,2366676926531108864,2328396329161588736,2328396329161588736,2364425126719520768,2364425126717423616,2332618316373295104,2332618316373295104,2364425126719520768,2364425126717423616,2332336841396584448,2332336841396584448,2364425126719520768,2364425126717423616,2331773891443163136,2331773891443163136,2364425126719520768,2364425126717423616,2331773891443163136,2331773891443163136,2364425126719520768,2364425126717423616,2330647991536320512,2330647991536320512,2364425126719520768,2364425126717423616,2330647991536320512,2330647991536320512,2364425126719520768,2364425126717423616,2330647991536320512,2330647991536320512,2364425126719520768,2364425126717423616,2330647991536320512,2330647991536320512,2368647113392259072,2368647113392259072,2328396191722635264,2328396191722635264,2368365638415548416,2368365638415548416,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2364424988741599232,2364424988741599232,2368647251370180608,2368647251368083456,2364424988741599232,2364424988741599232,2368365776393469952,2368365776391372800,2364424988741599232,2364424988741599232,2367802826440048640,2367802826437951488,2364424988741599232,2364424988741599232,2367802826440048640,2367802826437951488,2364424988741599232,2364424988741599232,2366676926533206016,2366676926531108864,2364424988741599232,2364424988741599232,2366676926533206016,2366676926531108864,2364424988741599232,2364424988741599232,2366676926533206016,2366676926531108864,2364424988741599232,2364424988741599232,2366676926533206016,2366676926531108864,2332618454351216640,2332618454349119488,2364425126719520768,2364425126717423616,2332336979374505984,2332336979372408832,2364425126719520768,2364425126717423616,2331774029421084672,2331774029418987520,2364425126719520768,2364425126717423616,2331774029421084672,2331774029418987520,2364425126719520768,2364425126717423616,2330648129514242048,2330648129512144896,2364425126719520768,2364425126717423616,2330648129514242048,2330648129512144896,2364425126719520768,2364425126717423616,2330648129514242048,2330648129512144896,2364425126719520768,2364425126717423616,2330648129514242048,2330648129512144896,2364425126719520768,2364425126717423616,2328396329700556800,2328396329698459648,2368647113392259072,2368647113392259072,2328396329700556800,2328396329698459648,2368365638415548416,2368365638415548416,2328396329700556800,2328396329698459648,2367802688462127104,2367802688462127104,2328396329700556800,2328396329698459648,2367802688462127104,2367802688462127104,2328396329700556800,2328396329698459648,2366676788555284480,2366676788555284480,2328396329700556800,2328396329698459648,2366676788555284480,2366676788555284480,2328396329700556800,2328396329698459648,2366676788555284480,2366676788555284480,2328396329700556800,2328396329698459648,2366676788555284480,2366676788555284480,2332618316373295104,2332618316373295104,2364424988741599232,2364424988741599232,2332336841396584448,2332336841396584448,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2328396191722635264,2328396191722635264,2332618454351216640,2332618454349119488,2328396191722635264,2328396191722635264,2332336979374505984,2332336979372408832,2328396191722635264,2328396191722635264,2331774029421084672,2331774029418987520,2328396191722635264,2328396191722635264,2331774029421084672,2331774029418987520,2328396191722635264,2328396191722635264,2330648129514242048,2330648129512144896,2328396191722635264,2328396191722635264,2330648129514242048,2330648129512144896,2328396191722635264,2328396191722635264,2330648129514242048,2330648129512144896,2328396191722635264,2328396191722635264,2330648129514242048,2330648129512144896,2368647250831212544,2368647250831212544,2328396329700556800,2328396329698459648,2368365775854501888,2368365775854501888,2328396329700556800,2328396329698459648,2367802825901080576,2367802825901080576,2328396329700556800,2328396329698459648,2367802825901080576,2367802825901080576,2328396329700556800,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700556800,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700556800,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700556800,2328396329698459648,2366676925994237952,2366676925994237952,2328396329700556800,2328396329698459648,2364425126180552704,2364425126180552704,2332618316373295104,2332618316373295104,2364425126180552704,2364425126180552704,2332336841396584448,2332336841396584448,2364425126180552704,2364425126180552704,2331773891443163136,2331773891443163136,2364425126180552704,2364425126180552704,2331773891443163136,2331773891443163136,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2364425126180552704,2364425126180552704,2330647991536320512,2330647991536320512,2368647113392259072,2368647113392259072,2328396191722635264,2328396191722635264,2368365638415548416,2368365638415548416,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2367802688462127104,2367802688462127104,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2366676788555284480,2366676788555284480,2328396191722635264,2328396191722635264,2364424988741599232,2364424988741599232,2368647250831212544,2368647250831212544,2364424988741599232,2364424988741599232,2368365775854501888,2368365775854501888,2364424988741599232,2364424988741599232,2367802825901080576,2367802825901080576,2364424988741599232,2364424988741599232,2367802825901080576,2367802825901080576,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2364424988741599232,2364424988741599232,2366676925994237952,2366676925994237952,2332618453812248576,2332618453812248576,2364425126180552704,2364425126180552704,2332336978835537920,2332336978835537920,2364425126180552704,2364425126180552704,2331774028882116608,2331774028882116608,2364425126180552704,2364425126180552704,2331774028882116608,2331774028882116608,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2330648128975273984,2330648128975273984,2364425126180552704,2364425126180552704,2328396329161588736,2328396329161588736,2368647113392259072,2368647113392259072,2328396329161588736,2328396329161588736,2368365638415548416,2368365638415548416,2328396329161588736,2328396329161588736,2367802688462127104,2367802688462127104,2328396329161588736,2328396329161588736,2367802688462127104,2367802688462127104,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2328396329161588736,2328396329161588736,2366676788555284480,2366676788555284480,2332618316373295104,2332618316373295104,2364424988741599232,2364424988741599232,2332336841396584448,2332336841396584448,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2331773891443163136,2331773891443163136,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2330647991536320512,2330647991536320512,2364424988741599232,2364424988741599232,2328396191722635264,2328396191722635264,2332618453812248576,2332618453812248576,2328396191722635264,2328396191722635264,2332336978835537920,2332336978835537920,2328396191722635264,2328396191722635264,2331774028882116608,2331774028882116608,2328396191722635264,2328396191722635264,2331774028882116608,2331774028882116608,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,2328396191722635264,2328396191722635264,2330648128975273984,2330648128975273984,0],[4665518383679160384,4656792659396919296,4665518383679143936,4656792659396919296,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4665518107723300864,4656792383445270528,4665518107723300864,4656792383445270528,4656792658323177472,4665236907624497152,4656792658323177472,4665236907624497152,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792658323177472,4665518382601207808,4656792658323177472,4665518382601207808,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401130048,4664673958744817664,4656792659401113600,4664673958744817664,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4665236632746590208,4656792383445270528,4665236632746590208,4656792659401129984,4665236908698238976,4656792659401113600,4665236908698238976,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4665518107723300864,4656792383445270528,4665518107723300864,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4664673957671075840,4656792658323177472,4664673957671075840,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4665236632746590208,4656792383445270528,4665236632746590208,4664673957671075840,4656792658323177472,4664673957671075840,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4663548058842185792,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4664673958749028352,4656792659396919296,4664673958749011968,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401129984,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4665518382601207808,4656792658323177472,4665518382601207808,4656792658323177472,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4663548058842185728,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4665236908702449728,4656792659396919296,4665236908702433280,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4665518107723300864,4656792383445270528,4665518107723300864,4656792383445270528,4665518383679160320,4656792659396919296,4665518383679143936,4656792659396919296,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4665236632746590208,4656792383445270528,4665236632746590208,4656792383445270528,4656792658323177472,4664673957671075840,4656792658323177472,4664673957671075840,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4665518107723300864,4656792383445270528,4665518107723300864,4656792383445270528,4656792658323177472,4665236907624497152,4656792658323177472,4665236907624497152,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4664673958744817664,4656792659401113600,4664673958744817664,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4656792659401129984,4664673958744817664,4656792659401113600,4664673958744817664,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4665236632746590208,4656792383445270528,4665236632746590208,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4664673957671075840,4656792658323177472,4664673957671075840,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4663548058842185792,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4663548058842185728,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401129984,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401130048,4665518383674949632,4656792659401113600,4665518383674949632,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4665518107723300864,4656792383445270528,4665518107723300864,4665236907624497152,4656792658323177472,4665236907624497152,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4665518382601207808,4656792658323177472,4665518382601207808,4656792658323177472,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4664673958749028416,4656792659396919296,4664673958749011968,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4665236632746590208,4656792383445270528,4665236632746590208,4656792383445270528,4665236908702449664,4656792659396919296,4665236908702433280,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4665518107723300864,4656792383445270528,4665518107723300864,4656792383445270528,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4656792658323177472,4664673957671075840,4656792658323177472,4664673957671075840,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4665236632746590208,4656792383445270528,4665236632746590208,4656792383445270528,4656792658323177472,4664673957671075840,4656792658323177472,4664673957671075840,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4656792659401129984,4664673958744817664,4656792659401113600,4664673958744817664,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4663548058842185792,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4663548058842185728,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792658323177472,4665518382601207808,4656792658323177472,4665518382601207808,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401129984,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401130048,4665236908698238976,4656792659401113600,4665236908698238976,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4665518107723300864,4656792383445270528,4665518107723300864,4656792659401129984,4665518383674949632,4656792659401113600,4665518383674949632,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4665236632746590208,4656792383445270528,4665236632746590208,4664673957671075840,4656792658323177472,4664673957671075840,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4665518107723300864,4656792383445270528,4665518107723300864,4665236907624497152,4656792658323177472,4665236907624497152,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4664673958749028416,4656792659396919296,4664673958749011968,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4664673958749028352,4656792659396919296,4664673958749011968,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4665236632746590208,4656792383445270528,4665236632746590208,4656792383445270528,4656792659401130048,4661296259024289792,4656792659401113600,4661296259024289792,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4656792658323177472,4663548057764233216,4656792658323177472,4663548057764233216,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401129984,4661296259024289792,4656792659401113600,4661296259024289792,4664673682793168896,4656792383445270528,4664673682793168896,4656792383445270528,4656792658323177472,4664673957671075840,4656792658323177472,4664673957671075840,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4656792659401130048,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4656792659401129984,4663548058837975040,4656792659401113600,4663548058837975040,4656792383445270528,4661295983072641024,4656792383445270528,4661295983072641024,4661296257950547968,4656792658323177472,4661296257950547968,4656792658323177472,4656792383445270528,4664673682793168896,4656792383445270528,4664673682793168896,4661296259028500544,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4661296259028500480,4656792659396919296,4661296259028484096,4656792659396919296,4656792383445270528,4663547782886326272,4656792383445270528,4663547782886326272,4663548057764233216,4656792658323177472,4663548057764233216,4656792658323177472,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4663548058842185792,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,4663548058842185728,4656792659396919296,4663548058842169344,4656792659396919296,4661295983072641024,4656792383445270528,4661295983072641024,4656792383445270528,4656792658323177472,4661296257950547968,4656792658323177472,4661296257950547968,4663547782886326272,4656792383445270528,4663547782886326272,4656792383445270528,0],[9259260648297103488,9259260646141198336,9241527724764299264,9241527722608427008,9259260648297103360,9259260646141198336,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9258979173320359936,9258979171164487680,9258416223366971520,9258416221211066368,9258979173320359936,9258979171164487680,9258416223366971392,9258416221211066368,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9250534924010651648,9250534921863168000,9255038523638022144,9255038521490538496,9250534924010651648,9250534921863168000,9257289771548409856,9257289771548409856,9255037971734724608,9255037971734724608,9257289771548409856,9257289771548409856,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9258416223366938624,9258416221211066368,9257290323460128896,9257290321304223744,9258416223366938624,9258416221211066368,9257290323460128768,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323460096000,9257290321304223744,9257290323460128896,9257290321304223744,9257290323460096000,9257290321304223744,9257290323460128768,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323460096000,9257290321304223744,9255038523646443648,9255038521490538496,9257290323460096000,9257290321304223744,9255038523646443520,9255038521490538496,9241527172852613120,9241527172852613120,9259260096385384448,9259260096385384448,9241527172852613120,9241527172852613120,9259260096385384448,9259260096385384448,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9258978621408673792,9258978621408673792,9258415671455252480,9258415671455252480,9258978621408673792,9258978621408673792,9258415671455252480,9258415671455252480,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9250534372107354112,9250534372107354112,9255037971734724608,9255037971734724608,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9258415671455252480,9258415671455252480,9257289771548409856,9257289771548409856,9258415671455252480,9258415671455252480,9257289771548409856,9257289771548409856,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9250534924019073152,9250534921863168000,9255038523646410752,9255038521490538496,9250534924019073024,9250534921863168000,9257289771548409856,9257289771548409856,9255037971734724608,9255037971734724608,9257289771548409856,9257289771548409856,9255037971734724608,9255037971734724608,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9250534924010651648,9250534921863168000,9241527724755910656,9241527722608427008,9250534924010651648,9250534921863168000,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9259260648288681984,9259260646141198336,9258979173311971328,9258979171164487680,9259260648288681984,9259260646141198336,9258979173311971328,9258979171164487680,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9258416223358550016,9258416221211066368,9258416223358550016,9258416221211066368,9258416223358550016,9258416221211066368,9258416223358550016,9258416221211066368,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9250534372107354112,9250534372107354112,9255037971734724608,9255037971734724608,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9259260096385384448,9259260096385384448,9258978621408673792,9258978621408673792,9259260096385384448,9259260096385384448,9258978621408673792,9258978621408673792,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9250534924019040256,9250534921863168000,9241527724764332160,9241527722608427008,9250534924019040256,9250534921863168000,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9259260648297070592,9259260646141198336,9258979173320392832,9258979171164487680,9259260648297070592,9259260646141198336,9258979173320392704,9258979171164487680,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9258416223366938624,9258416221211066368,9258416223366971520,9258416221211066368,9258416223366938624,9258416221211066368,9258416223366971392,9258416221211066368,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323460096000,9257290321304223744,9257290323460128896,9257290321304223744,9257290323460096000,9257290321304223744,9257290323460128768,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323460096000,9257290321304223744,9257290323460128896,9257290321304223744,9257290323460096000,9257290321304223744,9257290323460128768,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9250534372107354112,9250534372107354112,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9259260096385384448,9259260096385384448,9258978621408673792,9258978621408673792,9259260096385384448,9259260096385384448,9258978621408673792,9258978621408673792,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9258415671455252480,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523646410752,9255038521490538496,9255038523646443648,9255038521490538496,9255038523646410752,9255038521490538496,9255038523646443520,9255038521490538496,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9257289771548409856,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534924010651648,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724755910656,9241527722608427008,9259260648288681984,9259260646141198336,9241527724755910656,9241527722608427008,9259260648288681984,9259260646141198336,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9258979173311971328,9258979171164487680,9258416223358550016,9258416221211066368,9258979173311971328,9258979171164487680,9258416223358550016,9258416221211066368,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9258416223358550016,9258416221211066368,9257290323451707392,9257290321304223744,9258416223358550016,9258416221211066368,9257290323451707392,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9255037971734724608,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9257290323451707392,9257290321304223744,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9257290323451707392,9257290321304223744,9255038523638022144,9255038521490538496,9257290323451707392,9257290321304223744,9255038523638022144,9255038521490538496,9241527172852613120,9241527172852613120,9259260096385384448,9259260096385384448,9241527172852613120,9241527172852613120,9259260096385384448,9259260096385384448,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9258978621408673792,9258978621408673792,9258415671455252480,9258415671455252480,9258978621408673792,9258978621408673792,9258415671455252480,9258415671455252480,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724764299264,9241527722608427008,9241527724764332160,9241527722608427008,9241527724764299264,9241527722608427008,9241527724764332032,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9255038523638022144,9255038521490538496,9258415671455252480,9258415671455252480,9257289771548409856,9257289771548409856,9258415671455252480,9258415671455252480,9257289771548409856,9257289771548409856,9250534924019040256,9250534921863168000,9250534924019073152,9250534921863168000,9250534924019040256,9250534921863168000,9250534924019073024,9250534921863168000,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9250534372107354112,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527724755910656,9241527722608427008,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527172852613120,9241527724764299264,9241527722608427008,0],[18302911464433844481,18302910360610406400,9079539423267258368,9079538323755630592,144397762564194304,144396663052566528,144397762564194304,144396663052566528,18302911464417001472,18302910360610406400,9079539423267258368,9079538323755630592,144397762564194304,144396663052566528,144397762564194304,144396663052566528,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,18302911464433844480,18302910360610406400,9079539423267258368,9079538323755630592,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,18302911464417001472,18302910360610406400,9079539423267258368,9079538323755630592,144397762564194304,144396663052566528,144397762564194304,144396663052566528,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,144397762564194304,144396663052566528,144397762564194304,144396663052566528,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397766876004609,144396663052566528,144397766876004352,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,2162010399937986817,2162009296114548736,2162010395626176512,2162009296114548736,144397766875938816,144396663052566528,144397762564194304,144396663052566528,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,144397766859161600,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010399937986816,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397766876004609,144396663052566528,144397766876004352,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,4467853409151680769,4467852305328242688,4467853404839870464,4467852305328242688,144397766875938816,144396663052566528,144397762564194304,144396663052566528,4467853409134837760,4467852305328242688,4467853404839870464,4467852305328242688,144397766859161600,144396663052566528,144397762564194304,144396663052566528,18302911464433778688,18302910360610406400,9079539423267258368,9079538323755630592,4467853409151680768,4467852305328242688,4467853404839870464,4467852305328242688,18302911464417001472,18302910360610406400,9079539423267258368,9079538323755630592,4467853409134837760,4467852305328242688,4467853404839870464,4467852305328242688,144397766876004609,144396663052566528,144397762564194304,144396663052566528,18302911464433778688,18302910360610406400,9079539423267258368,9079538323755630592,144397766859161600,144396663052566528,144397762564194304,144396663052566528,18302911464417001472,18302910360610406400,9079539423267258368,9079538323755630592,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766876004352,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,2162010399937986817,2162009296114548736,2162010395626176512,2162009296114548736,144397766875938816,144396663052566528,144397762564194304,144396663052566528,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,144397766859161600,144396663052566528,144397762564194304,144396663052566528,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,2162010399937986816,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,144397766876004609,144396663052566528,144397762564194304,144396663052566528,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,144397766859161600,144396663052566528,144397762564194304,144396663052566528,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139584,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766876004352,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,9079539427579068673,9079538323755630592,18302911464433844224,18302910360610406400,144397766875938816,144396663052566528,144397762564194304,144396663052566528,9079539427562225664,9079538323755630592,18302911464417001472,18302910360610406400,144397766859161600,144396663052566528,144397762564194304,144396663052566528,4467853409151614976,4467852305328242688,4467853404839870464,4467852305328242688,9079539427579068672,9079538323755630592,18302911464433844224,18302910360610406400,4467853409134837760,4467852305328242688,4467853404839870464,4467852305328242688,9079539427562225664,9079538323755630592,18302911464417001472,18302910360610406400,144397766876004609,144396663052566528,144397762564194304,144396663052566528,4467853409151614976,4467852305328242688,4467853404839870464,4467852305328242688,144397766859161600,144396663052566528,144397762564194304,144396663052566528,4467853409134837760,4467852305328242688,4467853404839870464,4467852305328242688,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397766876004352,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,2162010399937986817,2162009296114548736,2162010399937986560,2162009296114548736,144397766875938816,144396663052566528,144397766875938816,144396663052566528,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,144397766859161600,144396663052566528,144397766859161600,144396663052566528,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,2162010399937986816,2162009296114548736,2162010399937986560,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,144397766876004609,144396663052566528,144397762564194304,144396663052566528,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,144397766859161600,144396663052566528,144397762564194304,144396663052566528,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397766876004352,144396663052566528,1009088891019329536,1009087791507701760,1009088895331074048,1009087791507701760,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,4467853409151680769,4467852305328242688,4467853409151680512,4467852305328242688,144397766875938816,144396663052566528,144397766875938816,144396663052566528,4467853409134837760,4467852305328242688,4467853409134837760,4467852305328242688,144397766859161600,144396663052566528,144397766859161600,144396663052566528,9079539427579002880,9079538323755630592,18302911464433778688,18302910360610406400,4467853409151680768,4467852305328242688,4467853409151680512,4467852305328242688,9079539427562225664,9079538323755630592,18302911464417001472,18302910360610406400,4467853409134837760,4467852305328242688,4467853409134837760,4467852305328242688,144397766876004609,144396663052566528,144397766876004352,144396663052566528,9079539427579002880,9079538323755630592,18302911464433778688,18302910360610406400,144397766859161600,144396663052566528,144397766859161600,144396663052566528,9079539427562225664,9079538323755630592,18302911464417001472,18302910360610406400,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,2162010399937986817,2162009296114548736,2162010399937986560,2162009296114548736,144397766875938816,144396663052566528,144397766875938816,144396663052566528,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,144397766859161600,144396663052566528,144397766859161600,144396663052566528,2162010399937921024,2162009296114548736,2162010399937921024,2162009296114548736,2162010399937986816,2162009296114548736,2162010399937986560,2162009296114548736,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,144397766876004609,144396663052566528,144397766876004352,144396663052566528,2162010399937921024,2162009296114548736,2162010399937921024,2162009296114548736,144397766859161600,144396663052566528,144397766859161600,144396663052566528,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,18302911460122034176,18302910360610406400,9079539427579068416,9079538323755630592,144397766875938816,144396663052566528,144397766875938816,144396663052566528,18302911460122034176,18302910360610406400,9079539427562225664,9079538323755630592,144397766859161600,144396663052566528,144397766859161600,144396663052566528,4467853409151614976,4467852305328242688,4467853409151614976,4467852305328242688,18302911460122034176,18302910360610406400,9079539427579068416,9079538323755630592,4467853409134837760,4467852305328242688,4467853409134837760,4467852305328242688,18302911460122034176,18302910360610406400,9079539427562225664,9079538323755630592,144397766876004609,144396663052566528,144397766876004352,144396663052566528,4467853409151614976,4467852305328242688,4467853409151614976,4467852305328242688,144397766859161600,144396663052566528,144397766859161600,144396663052566528,4467853409134837760,4467852305328242688,4467853409134837760,4467852305328242688,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895331139841,1009087791507701760,1009088891019329536,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139840,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,2162010395626176512,2162009296114548736,2162010399937986560,2162009296114548736,144397762564194304,144396663052566528,144397766875938816,144396663052566528,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,144397762564194304,144396663052566528,144397766859161600,144396663052566528,2162010399937921024,2162009296114548736,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,2162010399937986560,2162009296114548736,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,144397766876004609,144396663052566528,144397766876004352,144396663052566528,2162010399937921024,2162009296114548736,2162010399937921024,2162009296114548736,144397766859161600,144396663052566528,144397766859161600,144396663052566528,2162010399921143808,2162009296114548736,2162010399921143808,2162009296114548736,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895331139841,1009087791507701760,1009088891019329536,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139840,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,1009088891019329536,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,4467853404839870464,4467852305328242688,4467853409151680512,4467852305328242688,144397762564194304,144396663052566528,144397766875938816,144396663052566528,4467853404839870464,4467852305328242688,4467853409134837760,4467852305328242688,144397762564194304,144396663052566528,144397766859161600,144396663052566528,18302911460122034176,18302910360610406400,9079539427579002880,9079538323755630592,4467853404839870464,4467852305328242688,4467853409151680512,4467852305328242688,18302911460122034176,18302910360610406400,9079539427562225664,9079538323755630592,4467853404839870464,4467852305328242688,4467853409134837760,4467852305328242688,144397762564194304,144396663052566528,144397766876004352,144396663052566528,18302911460122034176,18302910360610406400,9079539427579002880,9079538323755630592,144397762564194304,144396663052566528,144397766859161600,144396663052566528,18302911460122034176,18302910360610406400,9079539427562225664,9079538323755630592,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331139841,1009087791507701760,1009088891019329536,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139840,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766876004609,144396663052566528,144397762564194304,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010399937986560,2162009296114548736,144397762564194304,144396663052566528,144397766875938816,144396663052566528,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,144397762564194304,144396663052566528,144397766859161600,144396663052566528,2162010395626176512,2162009296114548736,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,2162010399937986560,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,144397762564194304,144396663052566528,144397766876004352,144396663052566528,2162010395626176512,2162009296114548736,2162010399937921024,2162009296114548736,144397762564194304,144396663052566528,144397766859161600,144396663052566528,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628143027716096,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628143027716352,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331139841,1009087791507701760,1009088891019329536,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139840,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766876004609,144396663052566528,144397762564194304,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,144397762564194304,144396663052566528,144397766875938816,144396663052566528,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,144397762564194304,144396663052566528,144397766859161600,144396663052566528,4467853404839870464,4467852305328242688,4467853409151614976,4467852305328242688,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,4467853404839870464,4467852305328242688,4467853409134837760,4467852305328242688,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,144397762564194304,144396663052566528,144397766876004352,144396663052566528,4467853404839870464,4467852305328242688,4467853409151614976,4467852305328242688,144397762564194304,144396663052566528,144397766859161600,144396663052566528,4467853404839870464,4467852305328242688,4467853409134837760,4467852305328242688,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331139841,1009087791507701760,1009088895331139584,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139840,1009087791507701760,1009088895331139584,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766876004609,144396663052566528,144397762564194304,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010399937921024,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397766876004352,144396663052566528,2162010395626176512,2162009296114548736,2162010399937921024,2162009296114548736,144397762564194304,144396663052566528,144397766859161600,144396663052566528,2162010395626176512,2162009296114548736,2162010399921143808,2162009296114548736,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628143010873344,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766876004609,144396663052566528,144397766876004352,144396663052566528,432628143027650560,432627039204278272,432628143027650560,432627039204278272,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143010873344,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331139841,1009087791507701760,1009088895331139584,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,1009088895331139840,1009087791507701760,1009088895331139584,1009087791507701760,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766876004609,144396663052566528,144397762564194304,144396663052566528,1009088895331074048,1009087791507701760,1009088891019329536,1009087791507701760,144397766859161600,144396663052566528,144397762564194304,144396663052566528,1009088895314296832,1009087791507701760,1009088891019329536,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,144397762564194304,144396663052566528,144397762564194304,144396663052566528,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,144397762564194304,144396663052566528,144397762564194304,144396663052566528,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,4467853404839870464,4467852305328242688,4467853404839870464,4467852305328242688,144397762564194304,144396663052566528,144397762564194304,144396663052566528,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,144397762564194304,144396663052566528,144397762564194304,144396663052566528,9079539423267258368,9079538323755630592,18302911460122034176,18302910360610406400,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088895331139841,1009087791507701760,1009088895331139584,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,1009088895331139840,1009087791507701760,1009088895331139584,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766876004609,144396663052566528,144397766876004352,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397762564194304,144396663052566528,2162010395626176512,2162009296114548736,2162010395626176512,2162009296114548736,144397762564194304,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,432628138715906048,432627039204278272,432628143027716096,432627039204278272,144397762564194304,144396663052566528,144397766875938816,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716096,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397762564194304,144396663052566528,144397766876004352,144396663052566528,432628138715906048,432627039204278272,432628143027650560,432627039204278272,144397762564194304,144396663052566528,144397766859161600,144396663052566528,432628138715906048,432627039204278272,432628143010873344,432627039204278272,144397766875938816,144396663052566528,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,1009088895331139841,1009087791507701760,1009088895331139584,1009087791507701760,144397766875938816,144396663052566528,144397766875938816,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,1009088895331139840,1009087791507701760,1009088895331139584,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766876004609,144396663052566528,144397766876004352,144396663052566528,1009088895331074048,1009087791507701760,1009088895331074048,1009087791507701760,144397766859161600,144396663052566528,144397766859161600,144396663052566528,1009088895314296832,1009087791507701760,1009088895314296832,1009087791507701760,144397766875938816,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397766876004352,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397766859161600,144396663052566528,432628143027716353,432627039204278272,432628138715906048,432627039204278272,144397766875938816,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,432628143027716352,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397766876004609,144396663052566528,144397762564194304,144396663052566528,432628143027650560,432627039204278272,432628138715906048,432627039204278272,144397766859161600,144396663052566528,144397762564194304,144396663052566528,432628143010873344,432627039204278272,432628138715906048,432627039204278272,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766876004608,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397762564194304,144396663052566528,144397766859161600,144396663052566528,144397762564194304,144396663052566528,0],[18231136449196065282,18231136449162379264,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,18231136449195933696,18231136449162379264,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,18231136449196065280,18231136449162379264,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,18231136449195933696,18231136449162379264,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,360853127789936640,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,18231136449196064768,18231136449162379264,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,18231136449195933696,18231136449162379264,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,18231136449196064768,18231136449162379264,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,18231136449195933696,18231136449162379264,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,9007762204694413312,9007762204694413312,937313880093360642,937313880059674624,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,2090235384700207618,2090235384666521600,937311672446484480,937311672446484480,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,9007762204694413312,9007762204694413312,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,2090235384700207616,2090235384666521600,9007762204694413312,9007762204694413312,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,9007762204694413312,9007762204694413312,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,360853127789936640,360853127756251136,9007762204694413312,9007762204694413312,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,2090235384700207104,2090235384666521600,360850920143060992,360850920143060992,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,9007762204694413312,9007762204694413312,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,2090235384700207104,2090235384666521600,9007762204694413312,9007762204694413312,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,9007762204694413312,9007762204694413312,18231136440572444672,18231136440572444672,2090233177053331456,2090233177053331456,937313880093360642,937313880059674624,9007762204694413312,9007762204694413312,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,4396078393913901570,4396078393880215552,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913901568,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,360853127789936640,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,4396078393913901056,4396078393880215552,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913901056,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,937313880093360642,937313880059674624,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,2090235384700207618,2090235384666521600,937311672446484480,937311672446484480,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700207616,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,360853127789936640,360853127756251136,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,2090235384700207104,2090235384666521600,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700207104,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,937313880093360642,937313880059674624,4396076186267025408,4396076186267025408,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,9007764412341289474,9007764412307603456,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,9007764412341157888,9007764412307603456,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,9007764412341289472,9007764412307603456,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,9007764412341157888,9007764412307603456,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,360853127789936640,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,9007764412341288960,9007764412307603456,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,9007764412341157888,9007764412307603456,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,9007764412341288960,9007764412307603456,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,9007764412341157888,9007764412307603456,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,18231134241549189120,18231134241549189120,937313880093360642,937313880059674624,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,2090235384700207618,2090235384666521600,937311672446484480,937311672446484480,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,18231134241549189120,18231134241549189120,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,2090235384700207616,2090235384666521600,18231134241549189120,18231134241549189120,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,18231134241549189120,18231134241549189120,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,360853127789936640,360853127756251136,18231134241549189120,18231134241549189120,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,2090235384700207104,2090235384666521600,360850920143060992,360850920143060992,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,18231134241549189120,18231134241549189120,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,2090235384700207104,2090235384666521600,18231134241549189120,18231134241549189120,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,18231134241549189120,18231134241549189120,9007764403717668864,9007764403717668864,2090233177053331456,2090233177053331456,937313880093360642,937313880059674624,18231134241549189120,18231134241549189120,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,4396078393913901570,4396078393880215552,937311672446484480,937311672446484480,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913901568,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,360853127789936640,360853127756251136,2090233177053331456,2090233177053331456,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,4396078393913901056,4396078393880215552,360850920143060992,360850920143060992,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913901056,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,4396078393913769984,4396078393880215552,2090233177053331456,2090233177053331456,2090235376076587008,2090235376076587008,4396076186267025408,4396076186267025408,937313880093360642,937313880059674624,2090233177053331456,2090233177053331456,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,2090235384700207618,2090235384666521600,937311672446484480,937311672446484480,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700207616,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,360853127789936640,360853127756251136,4396076186267025408,4396076186267025408,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,2090235384700207104,2090235384666521600,360850920143060992,360850920143060992,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700207104,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,2090235384700076032,2090235384666521600,4396076186267025408,4396076186267025408,4396078385290280960,4396078385290280960,2090233177053331456,2090233177053331456,937313880093360642,937313880059674624,4396076186267025408,4396076186267025408,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360640,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,360853127789936640,360853127756251136,937311672446484480,937311672446484480,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789936640,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937154,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789937152,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,360853127789805568,360853127756251136,360850920143060992,360850920143060992,360853119166316544,360853119166316544,360850920143060992,360850920143060992,937313880093360128,937313880059674624,360850920143060992,360850920143060992,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093360128,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,937313880093229056,937313880059674624,937311672446484480,937311672446484480,937313871469740032,937313871469740032,937311672446484480,937311672446484480,0],[18087586418720506884,793759434324049920,721706255579873280,721701840286121984,793763849617539072,793759434324049920,721706255579611136,1874623344892968960,18087586401473265664,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760186721284,721701840286121984,18087586418720505856,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,1874627742939480064,721701840286121984,18087586401473265664,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354224649216,18087582003426754560,1874627760186720256,721701840286121984,8864214381798359040,793759434324049920,721706255512502272,721701840286121984,1946685336977408000,18087582003426754560,1874627742939480064,721701840286121984,8864214364618489856,793759434324049920,721706238332633088,721701840286121984,4180470769333043200,1874623344892968960,1946685354224648192,18087582003426754560,1874627760186458112,721701840286121984,8864214381798359040,793759434324049920,4180470752153174016,1874623344892968960,1946685336977408000,18087582003426754560,1874627742939480064,721701840286121984,8864214364618489856,793759434324049920,793763849550430208,1946680938930896896,4180470769333043200,1874623344892968960,1946685354224386048,8864209966571978752,1874627760186458112,721701840286121984,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,8864209966571978752,1874627742939480064,721701840286121984,721706255579874308,4180466354106662912,793763849550430208,1946680938930896896,4180470769333043200,1874623344892968960,1946685354224386048,8864209966571978752,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,8864209966571978752,793763849617802240,793759434324049920,721706255579873280,4180466354106662912,793763849550430208,1946680938930896896,4180470769333043200,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255512502272,4180466354106662912,793763849550430208,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,793763849550430208,793759434324049920,721706255512502272,4180466354106662912,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,18015528824682578948,721701840286121984,1946685354157277184,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,18015528807435337728,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,18087586418720506880,1946680938930896896,18015528824682577920,721701840286121984,1946685354224386048,793759434324049920,721706255579611136,721701840286121984,18087586401473265664,1946680938930896896,18015528807435337728,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760186721280,18015524409388826624,18087586418720505856,1946680938930896896,8792156787760431104,721701840286121984,1946685354224386048,793759434324049920,1874627742939480064,18015524409388826624,18087586401473265664,1946680938930896896,8792156770580561920,721701840286121984,1946685336977408000,793759434324049920,793763849617802244,18087582003426754560,1874627760186720256,18015524409388826624,8864214381798359040,1946680938930896896,8792156787760431104,721701840286121984,793763832370561024,18087582003426754560,1874627742939480064,18015524409388826624,8864214364618489856,1946680938930896896,8792156770580561920,721701840286121984,721706255512502272,1874623344892968960,793763849617801216,18087582003426754560,1874627760186458112,8792152372534050816,8864214381798359040,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,18087582003426754560,1874627742939480064,8792152372534050816,8864214364618489856,1946680938930896896,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,793763849617539072,8864209966571978752,1874627760186458112,8792152372534050816,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,8864209966571978752,1874627742939480064,8792152372534050816,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,793763849617539072,8864209966571978752,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,8864209966571978752,4252528363438343172,793759434324049920,721706255579873280,721701840286121984,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760119349248,721701840286121984,4252528363438342144,793759434324049920,721706255512502272,721701840286121984,793763849550430208,793759434324049920,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354157277184,4252523948144590848,1874627760119349248,721701840286121984,4252528363370971136,793759434324049920,721706255512502272,721701840286121984,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,18015528824682578944,1874623344892968960,1946685354157277184,4252523948144590848,1874627760186458112,721701840286121984,4252528363370971136,793759434324049920,18015528807435337728,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,793763849550430208,1946680938930896896,18015528824682577920,1874623344892968960,1946685354224386048,4252523948144590848,1874627760186458112,721701840286121984,793763832370561024,1946680938930896896,18015528807435337728,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,721706255579874308,18015524409388826624,793763849550430208,1946680938930896896,8792156787760431104,1874623344892968960,1946685354224386048,4252523948144590848,721706238332633088,18015524409388826624,793763832370561024,1946680938930896896,8792156770580561920,1874623344892968960,1946685336977408000,4252523948144590848,793763849617802240,793759434324049920,721706255579873280,18015524409388826624,793763849550430208,1946680938930896896,8792156787760431104,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,18015524409388826624,793763832370561024,1946680938930896896,8792156770580561920,1874623344892968960,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255579611136,8792152372534050816,793763849550430208,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,8792152372534050816,793763832370561024,1946680938930896896,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,721706255579611136,8792152372534050816,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,8792152372534050816,4180470769400415236,721701840286121984,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,4252528363438343168,1946680938930896896,4180470769400414208,721701840286121984,1946685354224386048,793759434324049920,721706255512502272,721701840286121984,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760119349248,4180466354106662912,4252528363438342144,1946680938930896896,4180470769333043200,721701840286121984,1946685354224386048,793759434324049920,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,793763849617802244,4252523948144590848,1874627760119349248,4180466354106662912,4252528363370971136,1946680938930896896,4180470769333043200,721701840286121984,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,721706255512502272,1874623344892968960,793763849617801216,4252523948144590848,1874627760186458112,4180466354106662912,4252528363370971136,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,793763849617539072,4252523948144590848,1874627760186458112,4180466354106662912,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,793763849617539072,4252523948144590848,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,8864214381865731076,793759434324049920,721706255579873280,721701840286121984,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,8864214364618489856,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760119349248,721701840286121984,8864214381865730048,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,1874627742939480064,721701840286121984,8864214364618489856,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354157277184,8864209966571978752,1874627760119349248,721701840286121984,18087586418720243712,793759434324049920,721706255579611136,721701840286121984,1946685336977408000,8864209966571978752,1874627742939480064,721701840286121984,18087586401473265664,793759434324049920,721706238332633088,721701840286121984,4180470769400415232,1874623344892968960,1946685354157277184,8864209966571978752,1874627760186458112,721701840286121984,18087586418720243712,793759434324049920,4180470752153174016,1874623344892968960,1946685336977408000,8864209966571978752,1874627742939480064,721701840286121984,18087586401473265664,793759434324049920,793763849617802244,1946680938930896896,4180470769400414208,1874623344892968960,1946685354224386048,18087582003426754560,1874627760186458112,721701840286121984,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,18087582003426754560,1874627742939480064,721701840286121984,721706255579874308,4180466354106662912,793763849617801216,1946680938930896896,4180470769333043200,1874623344892968960,1946685354224386048,18087582003426754560,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,18087582003426754560,793763849617802240,793759434324049920,721706255579873280,4180466354106662912,793763849550430208,1946680938930896896,4180470769333043200,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255579611136,4180466354106662912,793763849550430208,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,721706255579611136,4180466354106662912,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,8792156787827803140,721701840286121984,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,8792156770580561920,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,8864214381865731072,1946680938930896896,8792156787827802112,721701840286121984,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,8864214364618489856,1946680938930896896,8792156770580561920,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760119349248,8792152372534050816,8864214381865730048,1946680938930896896,18015528824682315776,721701840286121984,1946685354157277184,793759434324049920,1874627742939480064,8792152372534050816,8864214364618489856,1946680938930896896,18015528807435337728,721701840286121984,1946685336977408000,793759434324049920,793763849550430208,8864209966571978752,1874627760119349248,8792152372534050816,18087586418720243712,1946680938930896896,18015528824682315776,721701840286121984,793763832370561024,8864209966571978752,1874627742939480064,8792152372534050816,18087586401473265664,1946680938930896896,18015528807435337728,721701840286121984,721706255579874308,1874623344892968960,793763849550430208,8864209966571978752,1874627760186458112,18015524409388826624,18087586418720243712,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,8864209966571978752,1874627742939480064,18015524409388826624,18087586401473265664,1946680938930896896,793763849617802240,793759434324049920,721706255579873280,1874623344892968960,793763849617539072,18087582003426754560,1874627760186458112,18015524409388826624,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,18087582003426754560,1874627742939480064,18015524409388826624,721706255579874304,721701840286121984,793763849617801216,793759434324049920,721706255512502272,1874623344892968960,793763849617539072,18087582003426754560,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,18087582003426754560,4252528363438343172,793759434324049920,721706255579873280,721701840286121984,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760119349248,721701840286121984,4252528363438342144,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354157277184,4252523948144590848,1874627760119349248,721701840286121984,4252528363438080000,793759434324049920,721706255579611136,721701840286121984,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,8792156787827803136,1874623344892968960,1946685354157277184,4252523948144590848,1874627760119349248,721701840286121984,4252528363438080000,793759434324049920,8792156770580561920,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,793763849617802244,1946680938930896896,8792156787827802112,1874623344892968960,1946685354157277184,4252523948144590848,1874627760119349248,721701840286121984,793763832370561024,1946680938930896896,8792156770580561920,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,721706255512502272,8792152372534050816,793763849617801216,1946680938930896896,18015528824682315776,1874623344892968960,1946685354157277184,4252523948144590848,721706238332633088,8792152372534050816,793763832370561024,1946680938930896896,18015528807435337728,1874623344892968960,1946685336977408000,4252523948144590848,793763849550430208,793759434324049920,721706255512502272,8792152372534050816,793763849550430208,1946680938930896896,18015528824682315776,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,8792152372534050816,793763832370561024,1946680938930896896,18015528807435337728,1874623344892968960,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255579611136,18015524409388826624,793763849550430208,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,18015524409388826624,793763832370561024,1946680938930896896,1946685354157277184,793759434324049920,721706255579873280,721701840286121984,793763849617539072,793759434324049920,721706255579611136,18015524409388826624,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,18015524409388826624,4180470769400415236,721701840286121984,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,4252528363438343168,1946680938930896896,4180470769400414208,721701840286121984,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760119349248,4180466354106662912,4252528363438342144,1946680938930896896,4180470769400152064,721701840286121984,1946685354157277184,793759434324049920,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,793763849550430208,4252523948144590848,1874627760119349248,4180466354106662912,4252528363438080000,1946680938930896896,4180470769400152064,721701840286121984,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,721706255579874308,1874623344892968960,793763849550430208,4252523948144590848,1874627760119349248,4180466354106662912,4252528363438080000,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,793763849617802240,793759434324049920,721706255579873280,1874623344892968960,793763849617539072,4252523948144590848,1874627760119349248,4180466354106662912,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255512502272,1874623344892968960,793763849617539072,4252523948144590848,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,18087586418653134848,793759434324049920,721706255512502272,721701840286121984,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,18087586401473265664,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760119349248,721701840286121984,18087586418653134848,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,1874627742939480064,721701840286121984,18087586401473265664,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354157277184,18087582003426754560,1874627760119349248,721701840286121984,8864214381865467904,793759434324049920,721706255579611136,721701840286121984,1946685336977408000,18087582003426754560,1874627742939480064,721701840286121984,8864214364618489856,793759434324049920,721706238332633088,721701840286121984,4180470769400415232,1874623344892968960,1946685354157277184,18087582003426754560,1874627760119349248,721701840286121984,8864214381865467904,793759434324049920,4180470752153174016,1874623344892968960,1946685336977408000,18087582003426754560,1874627742939480064,721701840286121984,8864214364618489856,793759434324049920,793763849617802244,1946680938930896896,4180470769400414208,1874623344892968960,1946685354157277184,8864209966571978752,1874627760119349248,721701840286121984,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,8864209966571978752,1874627742939480064,721701840286121984,721706255512502272,4180466354106662912,793763849617801216,1946680938930896896,4180470769400152064,1874623344892968960,1946685354157277184,8864209966571978752,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,8864209966571978752,793763849550430208,793759434324049920,721706255512502272,4180466354106662912,793763849617539072,1946680938930896896,4180470769400152064,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255579611136,4180466354106662912,793763849617539072,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,1946685354224649220,793759434324049920,721706255579873280,721701840286121984,793763849617539072,793759434324049920,721706255579611136,4180466354106662912,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,18015528824615206912,721701840286121984,1946685354224648192,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,18015528807435337728,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,18087586418653134848,1946680938930896896,18015528824615206912,721701840286121984,1946685354157277184,793759434324049920,721706255512502272,721701840286121984,18087586401473265664,1946680938930896896,18015528807435337728,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760119349248,18015524409388826624,18087586418653134848,1946680938930896896,8792156787827539968,721701840286121984,1946685354157277184,793759434324049920,1874627742939480064,18015524409388826624,18087586401473265664,1946680938930896896,8792156770580561920,721701840286121984,1946685336977408000,793759434324049920,793763849550430208,18087582003426754560,1874627760119349248,18015524409388826624,8864214381865467904,1946680938930896896,8792156787827539968,721701840286121984,793763832370561024,18087582003426754560,1874627742939480064,18015524409388826624,8864214364618489856,1946680938930896896,8792156770580561920,721701840286121984,721706255579874308,1874623344892968960,793763849550430208,18087582003426754560,1874627760119349248,8792152372534050816,8864214381865467904,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,18087582003426754560,1874627742939480064,8792152372534050816,8864214364618489856,1946680938930896896,793763849617802240,793759434324049920,721706255579873280,1874623344892968960,793763849550430208,8864209966571978752,1874627760119349248,8792152372534050816,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,8864209966571978752,1874627742939480064,8792152372534050816,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255579611136,1874623344892968960,793763849550430208,8864209966571978752,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,8864209966571978752,4252528363370971136,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,721706255579611136,1874623344892968960,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760186721284,721701840286121984,4252528363370971136,793759434324049920,721706255579611136,721701840286121984,793763849617539072,793759434324049920,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354224649216,4252523948144590848,1874627760186720256,721701840286121984,4252528363438080000,793759434324049920,721706255579611136,721701840286121984,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,18015528824615206912,1874623344892968960,1946685354224648192,4252523948144590848,1874627760119349248,721701840286121984,4252528363438080000,793759434324049920,18015528807435337728,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,793763849617802244,1946680938930896896,18015528824615206912,1874623344892968960,1946685354157277184,4252523948144590848,1874627760119349248,721701840286121984,793763832370561024,1946680938930896896,18015528807435337728,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,721706255512502272,18015524409388826624,793763849617801216,1946680938930896896,8792156787827539968,1874623344892968960,1946685354157277184,4252523948144590848,721706238332633088,18015524409388826624,793763832370561024,1946680938930896896,8792156770580561920,1874623344892968960,1946685336977408000,4252523948144590848,793763849550430208,793759434324049920,721706255512502272,18015524409388826624,793763849617539072,1946680938930896896,8792156787827539968,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,18015524409388826624,793763832370561024,1946680938930896896,8792156770580561920,1874623344892968960,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255512502272,8792152372534050816,793763849617539072,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,8792152372534050816,793763832370561024,1946680938930896896,1946685354224649220,793759434324049920,721706255579873280,721701840286121984,793763849550430208,793759434324049920,721706255512502272,8792152372534050816,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,8792152372534050816,4180470769333043200,721701840286121984,1946685354224648192,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,4252528363370971136,1946680938930896896,4180470769333043200,721701840286121984,1946685354157277184,793759434324049920,721706255579611136,721701840286121984,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760186721280,4180466354106662912,4252528363370971136,1946680938930896896,4180470769400152064,721701840286121984,1946685354157277184,793759434324049920,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,793763849550430208,4252523948144590848,1874627760186720256,4180466354106662912,4252528363438080000,1946680938930896896,4180470769400152064,721701840286121984,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,721706255579874308,1874623344892968960,793763849550430208,4252523948144590848,1874627760119349248,4180466354106662912,4252528363438080000,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,793763849617802240,793759434324049920,721706255579873280,1874623344892968960,793763849550430208,4252523948144590848,1874627760119349248,4180466354106662912,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255579611136,1874623344892968960,793763849550430208,4252523948144590848,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,8864214381798359040,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,721706255579611136,1874623344892968960,8864214364618489856,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760186721284,721701840286121984,8864214381798359040,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,1874627742939480064,721701840286121984,8864214364618489856,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354224649216,8864209966571978752,1874627760186720256,721701840286121984,18087586418653134848,793759434324049920,721706255512502272,721701840286121984,1946685336977408000,8864209966571978752,1874627742939480064,721701840286121984,18087586401473265664,793759434324049920,721706238332633088,721701840286121984,4180470769333043200,1874623344892968960,1946685354224648192,8864209966571978752,1874627760119349248,721701840286121984,18087586418653134848,793759434324049920,4180470752153174016,1874623344892968960,1946685336977408000,8864209966571978752,1874627742939480064,721701840286121984,18087586401473265664,793759434324049920,793763849550430208,1946680938930896896,4180470769333043200,1874623344892968960,1946685354157277184,18087582003426754560,1874627760119349248,721701840286121984,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,18087582003426754560,1874627742939480064,721701840286121984,721706255512502272,4180466354106662912,793763849550430208,1946680938930896896,4180470769400152064,1874623344892968960,1946685354157277184,18087582003426754560,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,1946685336977408000,18087582003426754560,793763849550430208,793759434324049920,721706255512502272,4180466354106662912,793763849617539072,1946680938930896896,4180470769400152064,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,4180470752153174016,1874623344892968960,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255512502272,4180466354106662912,793763849617539072,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,793763832370561024,1946680938930896896,1946685354224649220,793759434324049920,721706255579873280,721701840286121984,793763849550430208,793759434324049920,721706255512502272,4180466354106662912,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,4180466354106662912,8792156787760431104,721701840286121984,1946685354224648192,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,8792156770580561920,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,8864214381798359040,1946680938930896896,8792156787760431104,721701840286121984,1946685354224386048,793759434324049920,721706255579611136,721701840286121984,8864214364618489856,1946680938930896896,8792156770580561920,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760186721280,8792152372534050816,8864214381798359040,1946680938930896896,18015528824615206912,721701840286121984,1946685354224386048,793759434324049920,1874627742939480064,8792152372534050816,8864214364618489856,1946680938930896896,18015528807435337728,721701840286121984,1946685336977408000,793759434324049920,793763849617802244,8864209966571978752,1874627760186720256,8792152372534050816,18087586418653134848,1946680938930896896,18015528824615206912,721701840286121984,793763832370561024,8864209966571978752,1874627742939480064,8792152372534050816,18087586401473265664,1946680938930896896,18015528807435337728,721701840286121984,721706255512502272,1874623344892968960,793763849617801216,8864209966571978752,1874627760119349248,18015524409388826624,18087586418653134848,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,8864209966571978752,1874627742939480064,18015524409388826624,18087586401473265664,1946680938930896896,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,793763849550430208,18087582003426754560,1874627760119349248,18015524409388826624,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,18087582003426754560,1874627742939480064,18015524409388826624,721706255512502272,721701840286121984,793763849550430208,793759434324049920,721706255579611136,1874623344892968960,793763849550430208,18087582003426754560,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,18087582003426754560,4252528363370971136,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,721706255579611136,1874623344892968960,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,1874627760186721284,721701840286121984,4252528363370971136,793759434324049920,721706255512502272,721701840286121984,793763849617539072,793759434324049920,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,1946685354224649216,4252523948144590848,1874627760186720256,721701840286121984,4252528363370971136,793759434324049920,721706255512502272,721701840286121984,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,721706238332633088,721701840286121984,8792156787760431104,1874623344892968960,1946685354224648192,4252523948144590848,1874627760186458112,721701840286121984,4252528363370971136,793759434324049920,8792156770580561920,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,4252528346191101952,793759434324049920,793763849550430208,1946680938930896896,8792156787760431104,1874623344892968960,1946685354224386048,4252523948144590848,1874627760186458112,721701840286121984,793763832370561024,1946680938930896896,8792156770580561920,1874623344892968960,1946685336977408000,4252523948144590848,1874627742939480064,721701840286121984,721706255579874308,8792152372534050816,793763849550430208,1946680938930896896,18015528824615206912,1874623344892968960,1946685354224386048,4252523948144590848,721706238332633088,8792152372534050816,793763832370561024,1946680938930896896,18015528807435337728,1874623344892968960,1946685336977408000,4252523948144590848,793763849617802240,793759434324049920,721706255579873280,8792152372534050816,793763849617539072,1946680938930896896,18015528824615206912,1874623344892968960,793763832370561024,793759434324049920,721706238332633088,8792152372534050816,793763832370561024,1946680938930896896,18015528807435337728,1874623344892968960,721706255512502272,721701840286121984,793763849617801216,793759434324049920,721706255512502272,18015524409388826624,793763849617539072,1946680938930896896,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,18015524409388826624,793763832370561024,1946680938930896896,1946685354224649220,793759434324049920,721706255512502272,721701840286121984,793763849550430208,793759434324049920,721706255512502272,18015524409388826624,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,18015524409388826624,4180470769333043200,721701840286121984,1946685354224648192,793759434324049920,721706255579611136,721701840286121984,793763849550430208,793759434324049920,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,793763832370561024,793759434324049920,4252528363370971136,1946680938930896896,4180470769333043200,721701840286121984,1946685354224386048,793759434324049920,721706255579611136,721701840286121984,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,721706238332633088,721701840286121984,1874627760186721280,4180466354106662912,4252528363370971136,1946680938930896896,4180470769333043200,721701840286121984,1946685354224386048,793759434324049920,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,1946685336977408000,793759434324049920,793763849617802244,4252523948144590848,1874627760186720256,4180466354106662912,4252528363370971136,1946680938930896896,4180470769333043200,721701840286121984,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,4180470752153174016,721701840286121984,721706255512502272,1874623344892968960,793763849617801216,4252523948144590848,1874627760186458112,4180466354106662912,4252528363370971136,1946680938930896896,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,4252528346191101952,1946680938930896896,793763849550430208,793759434324049920,721706255512502272,1874623344892968960,793763849550430208,4252523948144590848,1874627760186458112,4180466354106662912,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,1874627742939480064,4180466354106662912,721706255579874304,721701840286121984,793763849550430208,793759434324049920,721706255579611136,1874623344892968960,793763849550430208,4252523948144590848,721706238332633088,721701840286121984,793763832370561024,793759434324049920,721706238332633088,1874623344892968960,793763832370561024,4252523948144590848,0],[17800486357769390088,1659585293273530368,1443403680572243968,3749246689785937920,3965428302352482304,1659585293273006080,17800477527181885440,1659576462686027776,3749255485878960128,1443412476665266176,3965419471899721728,1659576462686027776,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,1587527699235604488,8505056726741942272,8360932708213325824,1443403680572243968,1587527699235078144,3893370708314554368,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,17800477527181885440,1659576462686027776,3749255520238698496,1443412511159746560,3965419471899721728,1659576462686027776,17584313575520862208,1443412511025004544,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,8505047896289181696,1443412511025004544,3749255520373440512,1587518868648099840,3893361877861793792,1443412511025004544,8360941538800304128,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,17800486357769390080,1659585293273530368,17584304745068101632,1443403680572243968,3965428302352482304,1659585293273006080,17800477527181885440,1659576462686027776,1443412476665266176,3749255485878960128,3965419471899721728,1659576462686027776,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,1587527699235604480,8505056726741942272,1443403680572243968,8360932708213325824,1587527699235078144,3893370708314554368,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,17800477527181885440,1659576462686027776,3749255520238698496,1443412511159746560,3965419471899721728,1659576462686027776,17584313575520862208,1443412511025004544,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,8505047896289181696,1443412511025004544,3749255520373440512,1587518868648099840,3893361877861793792,1443412511025004544,8360941538800304128,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,1659585293138788352,17800486357769388032,17584304745068101632,1443403680572243968,1659585293273006080,3965428302352482304,1659576462686027776,17800477527181885440,1443412476665266176,3749255485878960128,1659576462686027776,3965419471899721728,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,3893370708314554368,1587527699235602432,1443403680572243968,8360932708213325824,8505056726741942272,1587527699235078144,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,17800477527181885440,1443412511159748616,3749255520238698496,1659576462686027776,3965419471899721728,1443412511159222272,17584313575520862208,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,3893361877861793792,1587518868648099840,17584313575520862208,1443412511025004544,8505047896289181696,1587518868648099840,3749255520372916224,1443412511025004544,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,1659585293138788352,17800486357769388032,1443403680572243968,17584304745068101632,1659585293273006080,3965428302352482304,1659576462686027776,17800477527181885440,17584313541161123840,1443412476665266176,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,3893370708314554368,1587527699235602432,3749246689785937920,1443403680572243968,8505056726741942272,1587527699235078144,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,17800477527181885440,1443412511159748608,3749255520238698496,1659576462686027776,3965419471899721728,1443412511159222272,17584313575520862208,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,3893361877861793792,1587518868648099840,17584313575520862208,1443412511025004544,8505047896289181696,1587518868648099840,3749255520372916224,1443412511025004544,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,3965428302487226376,1659585293138788352,1443403680572243968,17584304745068101632,17800486357768863744,1659585293273006080,3965419471899721728,1659576462686027776,17584313541161123840,1443412476665266176,17800477527181885440,1659576462686027776,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,1587527699235604488,3893370708314554368,3749246689785937920,1443403680572243968,1587527699235078144,8505056726741942272,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,3965419471899721728,1659576462686027776,8360941538666086400,1443412511159746560,17800477527181885440,1659576462686027776,3749255520238698496,1443412511159222272,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,1587518868648099840,3893361877861793792,1443412511159748616,17584313575520862208,1587518868648099840,8505047896289181696,1443412511025004544,3749255520372916224,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,3965428302487226368,1659585293138788352,3749246689785937920,1443403680572243968,17800486357768863744,1659585293273006080,3965419471899721728,1659576462686027776,1443412476665266176,17584313541161123840,17800477527181885440,1659576462686027776,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,1587527699235604480,3893370708314554368,1443403680572243968,3749246689785937920,1587527699235078144,8505056726741942272,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,3965419471899721728,1659576462686027776,8360941538666086400,1443412511159746560,17800477527181885440,1659576462686027776,3749255520238698496,1443412511159222272,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,1587518868648099840,3893361877861793792,1443412511159748608,17584313575520862208,1587518868648099840,8505047896289181696,1443412511025004544,3749255520372916224,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,1659585293138788352,3965428302487224320,3749246689785937920,1443403680572243968,1659585293138788352,17800486357768863744,1659576462686027776,3965419471899721728,1443412476665266176,17584313541161123840,1659576462686027776,17800477527181885440,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,17728428763731462152,1587527699235602432,1443403680572243968,3749246689785937920,3893370708314554368,1587527699235078144,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,1659576462686027776,3965419471899721728,1443412511159748616,8360941538666086400,1659576462686027776,17800477527181885440,1443412511159222272,3749255520238698496,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,17728419933143957504,1587518868648099840,3749255520238698496,1443412511159746560,3893361877861793792,1587518868648099840,17584313575520862208,1443412511025004544,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,1659585293138788352,3965428302487224320,1443403680572243968,3749246689785937920,1659585293138788352,17800486357768863744,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,1659576462686027776,17800477527181885440,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,17728428763731462144,1587527699235602432,17584304745068101632,1443403680572243968,3893370708314554368,1587527699235078144,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,1659576462686027776,3965419471899721728,1443412511159748608,8360941538666086400,1659576462686027776,17800477527181885440,1443412511159222272,3749255520238698496,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,17728419933143957504,1587518868648099840,3749255520238698496,1443412511159746560,3893361877861793792,1587518868648099840,17584313575520862208,1443412511025004544,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,8577114320914614280,1659585293138788352,1443403680572243968,3749246689785937920,3965428302486700032,1659585293138788352,8577105490327109632,1659576462686027776,3749255485878960128,1443412476665266176,3965419471899721728,1659576462686027776,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,1587527699100860416,17728428763731460096,17584304745068101632,1443403680572243968,1587527699235078144,3893370708314554368,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,8577105490327109632,1659576462686027776,3749255520238698496,1443412511159746560,3965419471899721728,1659576462686027776,8360941538666086400,1443412511159222272,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,17728419933143957504,1443412511159748616,3749255520238698496,1587518868648099840,3893361877861793792,1443412511159222272,17584313575520862208,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,8577114320914614272,1659585293138788352,8360932708213325824,1443403680572243968,3965428302486700032,1659585293138788352,8577105490327109632,1659576462686027776,1443412476665266176,3749255485878960128,3965419471899721728,1659576462686027776,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,1587527699100860416,17728428763731460096,1443403680572243968,17584304745068101632,1587527699235078144,3893370708314554368,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,8577105490327109632,1659576462686027776,3749255520238698496,1443412511159746560,3965419471899721728,1659576462686027776,8360941538666086400,1443412511159222272,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,17728419933143957504,1443412511159748608,3749255520238698496,1587518868648099840,3893361877861793792,1443412511159222272,17584313575520862208,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,1659585293138788352,8577114320914612224,8360932708213325824,1443403680572243968,1659585293138788352,3965428302486700032,1659576462686027776,8577105490327109632,1443412476665266176,3749255485878960128,1659576462686027776,3965419471899721728,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,3893370708449298440,1587527699100860416,1443403680572243968,17584304745068101632,17728428763730935808,1587527699235078144,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,8577105490327109632,1443412511159748616,3749255520238698496,1659576462686027776,3965419471899721728,1443412511159222272,8360941538666086400,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,3893361877861793792,1587518868648099840,8360941538666086400,1443412511159746560,17728419933143957504,1587518868648099840,3749255520238698496,1443412511159222272,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,1659585293138788352,8577114320914612224,1443403680572243968,8360932708213325824,1659585293138788352,3965428302486700032,1659576462686027776,8577105490327109632,8360941504306348032,1443412476665266176,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,3893370708449298432,1587527699100860416,3749246689785937920,1443403680572243968,17728428763730935808,1587527699235078144,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,8577105490327109632,1443412511159748608,3749255520238698496,1659576462686027776,3965419471899721728,1443412511159222272,8360941538666086400,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,3893361877861793792,1587518868648099840,8360941538666086400,1443412511159746560,17728419933143957504,1587518868648099840,3749255520238698496,1443412511159222272,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,3965428302487226376,1659585293138788352,1443403680572243968,8360932708213325824,8577114320914087936,1659585293138788352,3965419471899721728,1659576462686027776,8360941504306348032,1443412476665266176,8577105490327109632,1659576462686027776,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,1587527699100860416,3893370708449296384,3749246689785937920,1443403680572243968,1587527699100860416,17728428763730935808,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,3965419471899721728,1659576462686027776,17584313575655606280,1443412511159746560,8577105490327109632,1659576462686027776,3749255520238698496,1443412511159222272,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,1587518868648099840,3893361877861793792,1443412511159748616,8360941538666086400,1587518868648099840,17728419933143957504,1443412511159222272,3749255520238698496,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,3965428302487226368,1659585293138788352,3749246689785937920,1443403680572243968,8577114320914087936,1659585293138788352,3965419471899721728,1659576462686027776,1443412476665266176,8360941504306348032,8577105490327109632,1659576462686027776,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,1587527699100860416,3893370708449296384,1443403680572243968,3749246689785937920,1587527699100860416,17728428763730935808,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,3965419471899721728,1659576462686027776,17584313575655606272,1443412511159746560,8577105490327109632,1659576462686027776,3749255520238698496,1443412511159222272,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,1587518868648099840,3893361877861793792,1443412511159748608,8360941538666086400,1587518868648099840,17728419933143957504,1443412511159222272,3749255520238698496,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,1659585293138788352,3965428302487224320,3749246689785937920,1443403680572243968,1659585293138788352,8577114320914087936,1659576462686027776,3965419471899721728,1443412476665266176,8360941504306348032,1659576462686027776,8577105490327109632,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,8505056726876686344,1587527699100860416,1443403680572243968,3749246689785937920,3893370708448772096,1587527699100860416,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,1659576462686027776,3965419471899721728,1443412511025004544,17584313575655604224,1659576462686027776,8577105490327109632,1443412511159222272,3749255520238698496,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,8505047896289181696,1587518868648099840,3749255520238698496,1443412511159746560,3893361877861793792,1587518868648099840,8360941538666086400,1443412511159222272,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,1659585293138788352,3965428302487224320,1443403680572243968,3749246689785937920,1659585293138788352,8577114320914087936,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,1659576462686027776,8577105490327109632,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,8505056726876686336,1587527699100860416,8360932708213325824,1443403680572243968,3893370708448772096,1587527699100860416,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,1659576462686027776,3965419471899721728,1443412511025004544,17584313575655604224,1659576462686027776,8577105490327109632,1443412511159222272,3749255520238698496,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,8505047896289181696,1587518868648099840,3749255520238698496,1443412511159746560,3893361877861793792,1587518868648099840,8360941538666086400,1443412511159222272,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,17800486357634646016,1659585293138788352,1443403680572243968,3749246689785937920,3965428302486700032,1659585293138788352,17800477527181885440,1659576462686027776,3749255485878960128,1443412476665266176,3965419471899721728,1659576462686027776,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,1587527699100860416,8505056726876684288,8360932708213325824,1443403680572243968,1587527699100860416,3893370708448772096,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,17800477527181885440,1659576462686027776,3749255520373442568,1443412511025004544,3965419471899721728,1659576462686027776,17584313575655079936,1443412511159222272,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,8505047896289181696,1443412511159748616,3749255520238698496,1587518868648099840,3893361877861793792,1443412511159222272,8360941538666086400,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,17800486357634646016,1659585293138788352,17584304745068101632,1443403680572243968,3965428302486700032,1659585293138788352,17800477527181885440,1659576462686027776,1443412476665266176,3749255485878960128,3965419471899721728,1659576462686027776,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,1587527699100860416,8505056726876684288,1443403680572243968,8360932708213325824,1587527699100860416,3893370708448772096,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,17800477527181885440,1659576462686027776,3749255520373442560,1443412511025004544,3965419471899721728,1659576462686027776,17584313575655079936,1443412511159222272,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,8505047896289181696,1443412511159748608,3749255520238698496,1587518868648099840,3893361877861793792,1443412511159222272,8360941538666086400,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,1659585293273532424,17800486357634646016,17584304745068101632,1443403680572243968,1659585293138788352,3965428302486700032,1659576462686027776,17800477527181885440,1443412476665266176,3749255485878960128,1659576462686027776,3965419471899721728,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,3893370708449298440,1587527699100860416,1443403680572243968,8360932708213325824,8505056726876160000,1587527699100860416,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,17800477527181885440,1443412511025004544,3749255520373440512,1659576462686027776,3965419471899721728,1443412511025004544,17584313575655079936,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,3893361877861793792,1587518868648099840,17584313575655606280,1443412511159746560,8505047896289181696,1587518868648099840,3749255520238698496,1443412511159222272,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,1659585293273532416,17800486357634646016,1443403680572243968,17584304745068101632,1659585293138788352,3965428302486700032,1659576462686027776,17800477527181885440,17584313541161123840,1443412476665266176,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,3893370708449298432,1587527699100860416,3749246689785937920,1443403680572243968,8505056726876160000,1587527699100860416,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,17800477527181885440,1443412511025004544,3749255520373440512,1659576462686027776,3965419471899721728,1443412511025004544,17584313575655079936,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,3893361877861793792,1587518868648099840,17584313575655606272,1443412511159746560,8505047896289181696,1587518868648099840,3749255520238698496,1443412511159222272,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,3965428302352482304,1659585293273530368,1443403680572243968,17584304745068101632,17800486357634646016,1659585293138788352,3965419471899721728,1659576462686027776,17584313541161123840,1443412476665266176,17800477527181885440,1659576462686027776,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,1587527699100860416,3893370708449296384,3749246689785937920,1443403680572243968,1587527699100860416,8505056726876160000,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,3965419471899721728,1659576462686027776,8360941538800830472,1443412511025004544,17800477527181885440,1659576462686027776,3749255520372916224,1443412511025004544,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,1587518868648099840,3893361877861793792,1443412511025004544,17584313575655604224,1587518868648099840,8505047896289181696,1443412511159222272,3749255520238698496,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,3965428302352482304,1659585293273530368,3749246689785937920,1443403680572243968,17800486357634646016,1659585293138788352,3965419471899721728,1659576462686027776,1443412476665266176,17584313541161123840,17800477527181885440,1659576462686027776,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,1587527699100860416,3893370708449296384,1443403680572243968,3749246689785937920,1587527699100860416,8505056726876160000,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,8505047896289181696,17800486323274907648,1659585258779049984,3965419471899721728,1659576462686027776,8360941538800830464,1443412511025004544,17800477527181885440,1659576462686027776,3749255520372916224,1443412511025004544,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,8505056692382203904,1587518868648099840,3893361877861793792,1443412511025004544,17584313575655604224,1587518868648099840,8505047896289181696,1443412511159222272,3749255520238698496,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,1659585293273532424,3965428302352482304,3749246689785937920,1443403680572243968,1659585293273006080,17800486357634646016,1659576462686027776,3965419471899721728,1443412476665266176,17584313541161123840,1659576462686027776,17800477527181885440,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,17728428763596718080,1587527699100860416,1443403680572243968,3749246689785937920,3893370708448772096,1587527699100860416,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,1659576462686027776,3965419471899721728,1443412511025004544,8360941538800828416,1659576462686027776,17800477527181885440,1443412511025004544,3749255520372916224,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,17728419933143957504,1587518868648099840,3749255520373442568,1443412511025004544,3893361877861793792,1587518868648099840,17584313575655079936,1443412511159222272,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,1659585293273532416,3965428302352482304,1443403680572243968,3749246689785937920,1659585293273006080,17800486357634646016,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,1659576462686027776,17800477527181885440,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,17728428763596718080,1587527699100860416,17584304745068101632,1443403680572243968,3893370708448772096,1587527699100860416,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,17800486323274907648,1659576462686027776,3965419471899721728,1443412511025004544,8360941538800828416,1659576462686027776,17800477527181885440,1443412511025004544,3749255520372916224,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,17728419933143957504,1587518868648099840,3749255520373442560,1443412511025004544,3893361877861793792,1587518868648099840,17584313575655079936,1443412511159222272,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,17584304745068101632,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,8577114320779870208,1659585293273530368,1443403680572243968,3749246689785937920,3965428302352482304,1659585293273006080,8577105490327109632,1659576462686027776,3749255485878960128,1443412476665266176,3965419471899721728,1659576462686027776,17584313541161123840,1443412476665266176,3749246689785937920,1443403680572243968,1587527699235604488,17728428763596718080,17584304745068101632,1443403680572243968,1587527699100860416,3893370708448772096,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,8577105490327109632,1659576462686027776,3749255520373442568,1443412511025004544,3965419471899721728,1659576462686027776,8360941538800304128,1443412511025004544,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,17728419933143957504,1443412511025004544,3749255520373440512,1587518868648099840,3893361877861793792,1443412511025004544,17584313575655079936,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,8577114320779870208,1659585293273530368,8360932708213325824,1443403680572243968,3965428302352482304,1659585293273006080,8577105490327109632,1659576462686027776,1443412476665266176,3749255485878960128,3965419471899721728,1659576462686027776,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,1587527699235604480,17728428763596718080,1443403680572243968,17584304745068101632,1587527699100860416,3893370708448772096,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,8577105490327109632,1659576462686027776,3749255520373442560,1443412511025004544,3965419471899721728,1659576462686027776,8360941538800304128,1443412511025004544,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,8360932708213325824,1443403680572243968,1587527664741122048,3893370673954816000,1587518868648099840,17728419933143957504,1443412511025004544,3749255520373440512,1587518868648099840,3893361877861793792,1443412511025004544,17584313575655079936,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,1443403680572243968,17584304745068101632,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,1659585293273532424,8577114320779870208,8360932708213325824,1443403680572243968,1659585293273006080,3965428302352482304,1659576462686027776,8577105490327109632,1443412476665266176,3749255485878960128,1659576462686027776,3965419471899721728,1443412476665266176,17584313541161123840,1443403680572243968,3749246689785937920,3893370708314554368,1587527699235602432,1443403680572243968,17584304745068101632,17728428763596718080,1587527699100860416,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,8577105490327109632,1443412511025004544,3749255520373440512,1659576462686027776,3965419471899721728,1443412511025004544,8360941538800304128,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,3893361877861793792,1587518868648099840,8360941538800830472,1443412511025004544,17728419933143957504,1587518868648099840,3749255520372916224,1443412511025004544,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,1659585293273532416,8577114320779870208,1443403680572243968,8360932708213325824,1659585293273006080,3965428302352482304,1659576462686027776,8577105490327109632,8360941504306348032,1443412476665266176,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,3893370708314554368,1587527699235602432,3749246689785937920,1443403680572243968,17728428763596718080,1587527699100860416,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,17728419933143957504,1587518868648099840,1659585258779049984,3965428267992743936,1659576462686027776,8577105490327109632,1443412511025004544,3749255520373440512,1659576462686027776,3965419471899721728,1443412511025004544,8360941538800304128,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,1443403680572243968,8360932708213325824,17728428729236979712,1587527664741122048,3893361877861793792,1587518868648099840,8360941538800830464,1443412511025004544,17728419933143957504,1587518868648099840,3749255520372916224,1443412511025004544,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,3749246689785937920,1443403680572243968,1443412476665266176,8360941504306348032,1443403680572243968,3749246689785937920,3965428302352482304,1659585293273530368,1443403680572243968,8360932708213325824,8577114320779870208,1659585293273006080,3965419471899721728,1659576462686027776,8360941504306348032,1443412476665266176,8577105490327109632,1659576462686027776,3749255485878960128,1443412476665266176,8360932708213325824,1443403680572243968,1587527699235604488,3893370708314554368,3749246689785937920,1443403680572243968,1587527699235078144,17728428763596718080,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,3965419471899721728,1659576462686027776,17584313575520862208,1443412511025004544,8577105490327109632,1659576462686027776,3749255520372916224,1443412511025004544,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,1587518868648099840,3893361877861793792,1443412511025004544,8360941538800828416,1587518868648099840,17728419933143957504,1443412511025004544,3749255520372916224,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,3965428302352482304,1659585293273530368,3749246689785937920,1443403680572243968,8577114320779870208,1659585293273006080,3965419471899721728,1659576462686027776,1443412476665266176,8360941504306348032,8577105490327109632,1659576462686027776,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,1587527699235604480,3893370708314554368,1443403680572243968,3749246689785937920,1587527699235078144,17728428763596718080,1587518868648099840,3893361877861793792,3965428267992743936,1659585258779049984,1587518868648099840,17728419933143957504,8577114286420131840,1659585258779049984,3965419471899721728,1659576462686027776,17584313575520862208,1443412511025004544,8577105490327109632,1659576462686027776,3749255520372916224,1443412511025004544,17584304745068101632,1443403680572243968,1587527664741122048,3893370673954816000,3749246689785937920,1443403680572243968,1587527664741122048,17728428729236979712,1587518868648099840,3893361877861793792,1443412511025004544,8360941538800828416,1587518868648099840,17728419933143957504,1443412511025004544,3749255520372916224,1443403680572243968,8360932708213325824,17584313541161123840,1443412476665266176,1443403680572243968,3749246689785937920,3749255485878960128,1443412476665266176,17584304745068101632,1443403680572243968,1659585293273532424,3965428302352482304,3749246689785937920,1443403680572243968,1659585293273006080,8577114320779870208,1659576462686027776,3965419471899721728,1443412476665266176,8360941504306348032,1659576462686027776,8577105490327109632,1443412476665266176,3749255485878960128,1443403680572243968,8360932708213325824,8505056726741942272,1587527699235602432,1443403680572243968,3749246689785937920,3893370708314554368,1587527699235078144,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,1659576462686027776,3965419471899721728,1443412511159748616,17584313575520862208,1659576462686027776,8577105490327109632,1443412511025004544,3749255520372916224,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,8505047896289181696,1587518868648099840,3749255520373442568,1443412511025004544,3893361877861793792,1587518868648099840,8360941538800304128,1443412511025004544,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,1659585293273532416,3965428302352482304,1443403680572243968,3749246689785937920,1659585293273006080,8577114320779870208,1659576462686027776,3965419471899721728,3749255485878960128,1443412476665266176,1659576462686027776,8577105490327109632,8360941504306348032,1443412476665266176,3749246689785937920,1443403680572243968,8505056726741942272,1587527699235602432,8360932708213325824,1443403680572243968,3893370708314554368,1587527699235078144,8505047896289181696,1587518868648099840,1659585258779049984,3965428267992743936,3893361877861793792,1587518868648099840,1659585258779049984,8577114286420131840,1659576462686027776,3965419471899721728,1443412511159748608,17584313575520862208,1659576462686027776,8577105490327109632,1443412511025004544,3749255520372916224,1443403680572243968,17584304745068101632,8505056692382203904,1587527664741122048,1443403680572243968,3749246689785937920,3893370673954816000,1587527664741122048,8505047896289181696,1587518868648099840,3749255520373442560,1443412511025004544,3893361877861793792,1587518868648099840,8360941538800304128,1443412511025004544,3749246689785937920,1443403680572243968,1443412476665266176,17584313541161123840,8360932708213325824,1443403680572243968,1443412476665266176,3749255485878960128,1443403680572243968,17584304745068101632,0],[17226286235867156496,7498493379571875840,17226286235867152384,7498493379571875840,17226286235597668352,7498493379571875840,17226286235597668352,7498493379571875840,3391228180583940096,2886807361144487936,3391228180583940096,2886807361144487936,3391228180315504640,2886807361144487936,3391228180315504640,2886807361144487936,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3319170586547064848,8002896537837371392,3319170586547060736,8002896537837371392,3319170586277576704,8002896537837371392,3319170586277576704,8002896537837371392,7930856604973400064,3391210519409983488,7930856604973400064,3391210519409983488,7930856604704964608,3391210519409983488,7930856604704964608,3391210519409983488,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,7786741416898596880,3319152925372055552,7786741416898592768,3319152925372055552,7786741416629108736,3319152925372055552,7786741416629108736,3319152925372055552,3175055398470156288,17154210980654219264,3175055398470156288,17154210980654219264,3175055398201720832,17154210980654219264,3175055398201720832,17154210980654219264,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055398471208976,17010095792578363392,3175055398471204864,17010095792578363392,3175055398201720832,17010095792578363392,3175055398201720832,17010095792578363392,17010113453752320000,3175037737296199680,17010113453752320000,3175037737296199680,17010113453483884544,3175037737296199680,17010113453483884544,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,16721883077601660944,3175037737296199680,16721883077601656832,3175037737296199680,16721883077332172800,3175037737296199680,16721883077332172800,3175037737296199680,2886825022318444544,7786723755723587584,2886825022318444544,7786723755723587584,2886825022050009088,7786723755723587584,2886825022050009088,7786723755723587584,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497232,7498493379571875840,2886825022319493120,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498511040745832448,2886807361144487936,7498511040745832448,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,7498511040746885136,2886807361144487936,7498511040746881024,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886825022318444544,16721865416426651648,2886825022318444544,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497232,16721865416426651648,2886825022319493120,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883077600608256,2886807361144487936,16721883077600608256,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,17226286235867156480,2886807361144487936,17226286235867152384,2886807361144487936,17226286235597668352,2886807361144487936,17226286235597668352,2886807361144487936,3391228180583940096,7498493379571875840,3391228180583940096,7498493379571875840,3391228180315504640,7498493379571875840,3391228180315504640,7498493379571875840,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3319170586547064832,8002896537837371392,3319170586547060736,8002896537837371392,3319170586277576704,8002896537837371392,3319170586277576704,8002896537837371392,7930856604973400064,3391210519409983488,7930856604973400064,3391210519409983488,7930856604704964608,3391210519409983488,7930856604704964608,3391210519409983488,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,7786741416898596864,3319152925372055552,7786741416898592768,3319152925372055552,7786741416629108736,3319152925372055552,7786741416629108736,3319152925372055552,3175055398470156288,17154210980654219264,3175055398470156288,17154210980654219264,3175055398201720832,17154210980654219264,3175055398201720832,17154210980654219264,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055398471208960,17010095792578363392,3175055398471204864,17010095792578363392,3175055398201720832,17010095792578363392,3175055398201720832,17010095792578363392,17010113453752320000,3175037737296199680,17010113453752320000,3175037737296199680,17010113453483884544,3175037737296199680,17010113453483884544,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,16721883077601660928,3175037737296199680,16721883077601656832,3175037737296199680,16721883077332172800,3175037737296199680,16721883077332172800,3175037737296199680,2886825022318444544,7786723755723587584,2886825022318444544,7786723755723587584,2886825022050009088,7786723755723587584,2886825022050009088,7786723755723587584,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497216,7498493379571875840,2886825022319493120,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498511040745832448,2886807361144487936,7498511040745832448,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,7498511040746885120,2886807361144487936,7498511040746881024,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886825022318444544,16721865416426651648,2886825022318444544,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497216,16721865416426651648,2886825022319493120,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883077600608256,2886807361144487936,16721883077600608256,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,3391228180584992784,2886807361144487936,3391228180584988672,2886807361144487936,3391228180315504640,2886807361144487936,3391228180315504640,2886807361144487936,17226286235866103808,7498493379571875840,17226286235866103808,7498493379571875840,17226286235597668352,7498493379571875840,17226286235597668352,7498493379571875840,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,17154228641829228560,3391210519409983488,17154228641829224448,3391210519409983488,17154228641559740416,3391210519409983488,17154228641559740416,3391210519409983488,3319170586546012160,8002896537837371392,3319170586546012160,8002896537837371392,3319170586277576704,8002896537837371392,3319170586277576704,8002896537837371392,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3175055398471208976,7930838943799443456,3175055398471204864,7930838943799443456,3175055398201720832,7930838943799443456,3175055398201720832,7930838943799443456,7786741416897544192,3319152925372055552,7786741416897544192,3319152925372055552,7786741416629108736,3319152925372055552,7786741416629108736,3319152925372055552,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,7786741416898596880,3175037737296199680,7786741416898592768,3175037737296199680,7786741416629108736,3175037737296199680,7786741416629108736,3175037737296199680,3175055398470156288,17010095792578363392,3175055398470156288,17010095792578363392,3175055398201720832,17010095792578363392,3175055398201720832,17010095792578363392,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,2886825022319497232,17010095792578363392,2886825022319493120,17010095792578363392,2886825022050009088,17010095792578363392,2886825022050009088,17010095792578363392,16721883077600608256,3175037737296199680,16721883077600608256,3175037737296199680,16721883077332172800,3175037737296199680,16721883077332172800,3175037737296199680,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,16721883077601660944,2886807361144487936,16721883077601656832,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886825022318444544,7498493379571875840,2886825022318444544,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497232,7498493379571875840,2886825022319493120,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498511040745832448,2886807361144487936,7498511040745832448,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,7498511040746885136,2886807361144487936,7498511040746881024,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886825022318444544,16721865416426651648,2886825022318444544,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,3391228180584992768,16721865416426651648,3391228180584988672,16721865416426651648,3391228180315504640,16721865416426651648,3391228180315504640,16721865416426651648,17226286235866103808,2886807361144487936,17226286235866103808,2886807361144487936,17226286235597668352,2886807361144487936,17226286235597668352,2886807361144487936,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,8002914130023415808,17226268574692147200,17154228641829228544,3391210519409983488,17154228641829224448,3391210519409983488,17154228641559740416,3391210519409983488,17154228641559740416,3391210519409983488,3319170586546012160,8002896537837371392,3319170586546012160,8002896537837371392,3319170586277576704,8002896537837371392,3319170586277576704,8002896537837371392,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3175055398471208960,7930838943799443456,3175055398471204864,7930838943799443456,3175055398201720832,7930838943799443456,3175055398201720832,7930838943799443456,7786741416897544192,3319152925372055552,7786741416897544192,3319152925372055552,7786741416629108736,3319152925372055552,7786741416629108736,3319152925372055552,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,7786741416898596864,3175037737296199680,7786741416898592768,3175037737296199680,7786741416629108736,3175037737296199680,7786741416629108736,3175037737296199680,3175055398470156288,17010095792578363392,3175055398470156288,17010095792578363392,3175055398201720832,17010095792578363392,3175055398201720832,17010095792578363392,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,2886825022319497216,17010095792578363392,2886825022319493120,17010095792578363392,2886825022050009088,17010095792578363392,2886825022050009088,17010095792578363392,16721883077600608256,3175037737296199680,16721883077600608256,3175037737296199680,16721883077332172800,3175037737296199680,16721883077332172800,3175037737296199680,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,16721883077601660928,2886807361144487936,16721883077601656832,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886825022318444544,7498493379571875840,2886825022318444544,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497216,7498493379571875840,2886825022319493120,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498511040745832448,2886807361144487936,7498511040745832448,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,7498511040746885120,2886807361144487936,7498511040746881024,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886825022318444544,16721865416426651648,2886825022318444544,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,8002914199012380688,16721865416426651648,8002914199012376576,16721865416426651648,8002914198742892544,16721865416426651648,8002914198742892544,16721865416426651648,3391228180583940096,2886807361144487936,3391228180583940096,2886807361144487936,3391228180315504640,2886807361144487936,3391228180315504640,2886807361144487936,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3319170586547064848,17226268574692147200,3319170586547060736,17226268574692147200,3319170586277576704,17226268574692147200,3319170586277576704,17226268574692147200,17154228641828175872,3391210519409983488,17154228641828175872,3391210519409983488,17154228641559740416,3391210519409983488,17154228641559740416,3391210519409983488,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,17010113453753372688,3319152925372055552,17010113453753368576,3319152925372055552,17010113453483884544,3319152925372055552,17010113453483884544,3319152925372055552,3175055398470156288,7930838943799443456,3175055398470156288,7930838943799443456,3175055398201720832,7930838943799443456,3175055398201720832,7930838943799443456,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055398471208976,7786723755723587584,3175055398471204864,7786723755723587584,3175055398201720832,7786723755723587584,3175055398201720832,7786723755723587584,7786741416897544192,3175037737296199680,7786741416897544192,3175037737296199680,7786741416629108736,3175037737296199680,7786741416629108736,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,7498511040746885136,3175037737296199680,7498511040746881024,3175037737296199680,7498511040477396992,3175037737296199680,7498511040477396992,3175037737296199680,2886825022318444544,17010095792578363392,2886825022318444544,17010095792578363392,2886825022050009088,17010095792578363392,2886825022050009088,17010095792578363392,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497232,16721865416426651648,2886825022319493120,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883077600608256,2886807361144487936,16721883077600608256,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,16721883077601660944,2886807361144487936,16721883077601656832,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886825022318444544,7498493379571875840,2886825022318444544,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497232,7498493379571875840,2886825022319493120,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498511040745832448,2886807361144487936,7498511040745832448,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,8002914199012380672,2886807361144487936,8002914199012376576,2886807361144487936,8002914198742892544,2886807361144487936,8002914198742892544,2886807361144487936,3391228180583940096,16721865416426651648,3391228180583940096,16721865416426651648,3391228180315504640,16721865416426651648,3391228180315504640,16721865416426651648,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3319170586547064832,17226268574692147200,3319170586547060736,17226268574692147200,3319170586277576704,17226268574692147200,3319170586277576704,17226268574692147200,17154228641828175872,3391210519409983488,17154228641828175872,3391210519409983488,17154228641559740416,3391210519409983488,17154228641559740416,3391210519409983488,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,7930856535985487872,17154210980654219264,17010113453753372672,3319152925372055552,17010113453753368576,3319152925372055552,17010113453483884544,3319152925372055552,17010113453483884544,3319152925372055552,3175055398470156288,7930838943799443456,3175055398470156288,7930838943799443456,3175055398201720832,7930838943799443456,3175055398201720832,7930838943799443456,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055398471208960,7786723755723587584,3175055398471204864,7786723755723587584,3175055398201720832,7786723755723587584,3175055398201720832,7786723755723587584,7786741416897544192,3175037737296199680,7786741416897544192,3175037737296199680,7786741416629108736,3175037737296199680,7786741416629108736,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,17010113384764407808,7786723755723587584,7498511040746885120,3175037737296199680,7498511040746881024,3175037737296199680,7498511040477396992,3175037737296199680,7498511040477396992,3175037737296199680,2886825022318444544,17010095792578363392,2886825022318444544,17010095792578363392,2886825022050009088,17010095792578363392,2886825022050009088,17010095792578363392,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497216,16721865416426651648,2886825022319493120,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883077600608256,2886807361144487936,16721883077600608256,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,16721883077601660928,2886807361144487936,16721883077601656832,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886825022318444544,7498493379571875840,2886825022318444544,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497216,7498493379571875840,2886825022319493120,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498511040745832448,2886807361144487936,7498511040745832448,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,3391228180584992784,2886807361144487936,3391228180584988672,2886807361144487936,3391228180315504640,2886807361144487936,3391228180315504640,2886807361144487936,8002914199011328000,16721865416426651648,8002914199011328000,16721865416426651648,8002914198742892544,16721865416426651648,8002914198742892544,16721865416426651648,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,7930856604974452752,3391210519409983488,7930856604974448640,3391210519409983488,7930856604704964608,3391210519409983488,7930856604704964608,3391210519409983488,3319170586546012160,17226268574692147200,3319170586546012160,17226268574692147200,3319170586277576704,17226268574692147200,3319170586277576704,17226268574692147200,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3175055398471208976,17154210980654219264,3175055398471204864,17154210980654219264,3175055398201720832,17154210980654219264,3175055398201720832,17154210980654219264,17010113453752320000,3319152925372055552,17010113453752320000,3319152925372055552,17010113453483884544,3319152925372055552,17010113453483884544,3319152925372055552,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,17010113453753372688,3175037737296199680,17010113453753368576,3175037737296199680,17010113453483884544,3175037737296199680,17010113453483884544,3175037737296199680,3175055398470156288,7786723755723587584,3175055398470156288,7786723755723587584,3175055398201720832,7786723755723587584,3175055398201720832,7786723755723587584,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,2886825022319497232,7786723755723587584,2886825022319493120,7786723755723587584,2886825022050009088,7786723755723587584,2886825022050009088,7786723755723587584,7498511040745832448,3175037737296199680,7498511040745832448,3175037737296199680,7498511040477396992,3175037737296199680,7498511040477396992,3175037737296199680,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,7498511040746885136,2886807361144487936,7498511040746881024,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886825022318444544,16721865416426651648,2886825022318444544,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497232,16721865416426651648,2886825022319493120,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883077600608256,2886807361144487936,16721883077600608256,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,16721883077601660944,2886807361144487936,16721883077601656832,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886825022318444544,7498493379571875840,2886825022318444544,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,3391228180584992768,7498493379571875840,3391228180584988672,7498493379571875840,3391228180315504640,7498493379571875840,3391228180315504640,7498493379571875840,8002914199011328000,2886807361144487936,8002914199011328000,2886807361144487936,8002914198742892544,2886807361144487936,8002914198742892544,2886807361144487936,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,3391228111596027904,3391210519409983488,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,17226286166878191616,8002896537837371392,7930856604974452736,3391210519409983488,7930856604974448640,3391210519409983488,7930856604704964608,3391210519409983488,7930856604704964608,3391210519409983488,3319170586546012160,17226268574692147200,3319170586546012160,17226268574692147200,3319170586277576704,17226268574692147200,3319170586277576704,17226268574692147200,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,17154228572840263680,7930838943799443456,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3319170517558099968,3319152925372055552,3175055398471208960,17154210980654219264,3175055398471204864,17154210980654219264,3175055398201720832,17154210980654219264,3175055398201720832,17154210980654219264,17010113453752320000,3319152925372055552,17010113453752320000,3319152925372055552,17010113453483884544,3319152925372055552,17010113453483884544,3319152925372055552,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,17010113453753372672,3175037737296199680,17010113453753368576,3175037737296199680,17010113453483884544,3175037737296199680,17010113453483884544,3175037737296199680,3175055398470156288,7786723755723587584,3175055398470156288,7786723755723587584,3175055398201720832,7786723755723587584,3175055398201720832,7786723755723587584,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,7786741347909632000,17010095792578363392,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,3175055329482244096,3175037737296199680,2886825022319497216,7786723755723587584,2886825022319493120,7786723755723587584,2886825022050009088,7786723755723587584,2886825022050009088,7786723755723587584,7498511040745832448,3175037737296199680,7498511040745832448,3175037737296199680,7498511040477396992,3175037737296199680,7498511040477396992,3175037737296199680,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,7498511040746885120,2886807361144487936,7498511040746881024,2886807361144487936,7498511040477396992,2886807361144487936,7498511040477396992,2886807361144487936,2886825022318444544,16721865416426651648,2886825022318444544,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,16721883008612696064,7498493379571875840,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886825022319497216,16721865416426651648,2886825022319493120,16721865416426651648,2886825022050009088,16721865416426651648,2886825022050009088,16721865416426651648,16721883077600608256,2886807361144487936,16721883077600608256,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,16721883077601660928,2886807361144487936,16721883077601656832,2886807361144487936,16721883077332172800,2886807361144487936,16721883077332172800,2886807361144487936,2886825022318444544,7498493379571875840,2886825022318444544,7498493379571875840,2886825022050009088,7498493379571875840,2886825022050009088,7498493379571875840,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,7498510971757920256,16721865416426651648,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,2886824953330532352,2886807361144487936,0],[16077885992062689312,6350110658964488192,5773614722288975872,6638305850744111104,16077885992060583936,14997022080954793984,5773614722288975872,14996986759143751680,16077885992062681088,14997022080954793984,5773614722288975872,14996986759143751680,16077885992060583936,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6350075474592399360,14996986759143751680,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6782456361169985568,15573482695819264000,14996986759143751680,15861677887598886912,6782456361167880192,5773650044100018176,14996986759143751680,5773614722288975872,6782456361169977344,5773650044100018176,14996986759143751680,5773614722288975872,6782456361167880192,5773650044100018176,14996986759143751680,5773614722288975872,14997021943515840512,5773650044100018176,15573447511447175168,5773614722288975872,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,15861713209948905504,6350110658964488192,16077850669712670720,6350075474592399360,15861713209946800128,6854513954668937216,16077850669712670720,14996986759143751680,15861713209948897280,6854513954668937216,16077850669712670720,14996986759143751680,15861713209946800128,6854513954668937216,16077850669712670720,14996986759143751680,5773649906661064704,6854513954668937216,6350075474592399360,14996986759143751680,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,6638341173094129696,15573482695819264000,6782421038819966976,15573447511447175168,6638341173092024320,16005828397485785088,6782421038819966976,5773614722288975872,6638341173094121472,16005828397485785088,6782421038819966976,5773614722288975872,6638341173092024320,16005828397485785088,6782421038819966976,5773614722288975872,14997021943515840512,16005828397485785088,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,15573482833797193760,5773649906661064704,15861677887598886912,6350075474592399360,15573482833795088384,6638341172555153408,15861677887598886912,6854478632857894912,15573482833797185536,6638341172555153408,15861677887598886912,6854478632857894912,15573482833795088384,6638341172555153408,15861677887598886912,6854478632857894912,5773649906661064704,6638341172555153408,5773614722288975872,6854478632857894912,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,6350110796942417952,14997021943515840512,6638305850744111104,15573447511447175168,6350110796940312576,15861713209409929216,6638305850744111104,16005793075674742784,6350110796942409728,15861713209409929216,6638305850744111104,16005793075674742784,6350110796940312576,15861713209409929216,6638305850744111104,16005793075674742784,14997021943515840512,15861713209409929216,14996986759143751680,16005793075674742784,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,15573482833797193760,5773649906661064704,15573447511447175168,5773614722288975872,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,15573482833797185536,6350110796403441664,15573447511447175168,6638305850744111104,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,5773649906661064704,6350110796403441664,5773614722288975872,6638305850744111104,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,6350110796942417952,14997021943515840512,6350075474592399360,14996986759143751680,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,6350110796942409728,15573482833258217472,6350075474592399360,15861677887598886912,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,14997021943515840512,15573482833258217472,14996986759143751680,15861677887598886912,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997022081493770272,5773649906661064704,15573447511447175168,5773614722288975872,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,14997022081493762048,6350110796403441664,15573447511447175168,6350075474592399360,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,5773649906661064704,6350110796403441664,5773614722288975872,6350075474592399360,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773650044638994464,14997021943515840512,6350075474592399360,14996986759143751680,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,5773650044638986240,15573482833258217472,6350075474592399360,15573447511447175168,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,6854513817229983744,15573482833258217472,14996986759143751680,15573447511447175168,6854513817229983744,5773649906661064704,14996986759143751680,5773614722288975872,6854513817229983744,5773649906661064704,14996986759143751680,5773614722288975872,6854513817229983744,5773649906661064704,14996986759143751680,5773614722288975872,14997022081493770272,5773649906661064704,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,14997022081493762048,5773650044100018176,14996986759143751680,6350075474592399360,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,16005828260046831616,5773650044100018176,5773614722288975872,6350075474592399360,16005828260046831616,14997021943515840512,5773614722288975872,14996986759143751680,16005828260046831616,14997021943515840512,5773614722288975872,14996986759143751680,16005828260046831616,14997021943515840512,5773614722288975872,14996986759143751680,5773650044638994464,14997021943515840512,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,5773650044638986240,14997022080954793984,5773614722288975872,15573447511447175168,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,6638341035116199936,14997022080954793984,6854478632857894912,15573447511447175168,6638341035116199936,16077885854084759552,6854478632857894912,5773614722288975872,6638341035116199936,16077885854084759552,6854478632857894912,5773614722288975872,6638341035116199936,16077885854084759552,6854478632857894912,5773614722288975872,14997022081493770272,16077885854084759552,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15861713071970975744,5773650044100018176,16005793075674742784,5773614722288975872,15861713071970975744,6782456223192055808,16005793075674742784,14996986759143751680,15861713071970975744,6782456223192055808,16005793075674742784,14996986759143751680,15861713071970975744,6782456223192055808,16005793075674742784,14996986759143751680,5773650044638994464,6782456223192055808,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6638305850744111104,14996986759143751680,6350110658964488192,15861713071970975744,6638305850744111104,16077850669712670720,6350110658964488192,15861713071970975744,6638305850744111104,16077850669712670720,6350110658964488192,15861713071970975744,6638305850744111104,16077850669712670720,14997022081493770272,15861713071970975744,14996986759143751680,16077850669712670720,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15861677887598886912,5773614722288975872,15573482695819264000,6638341035116199936,15861677887598886912,6782421038819966976,15573482695819264000,6638341035116199936,15861677887598886912,6782421038819966976,15573482695819264000,6638341035116199936,15861677887598886912,6782421038819966976,5773650044638994464,6638341035116199936,5773614722288975872,6782421038819966976,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6350075474592399360,14996986759143751680,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,16077885992062689280,15573482695819264000,14996986759143751680,15861677887598886912,16077885992060583936,5773650044100018176,14996986759143751680,5773614722288975872,16077885992062681088,5773650044100018176,14996986759143751680,5773614722288975872,16077885992060583936,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15573447511447175168,5773614722288975872,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,6782456361169985536,6350110658964488192,5773614722288975872,6638305850744111104,6782456361167880192,14997022080954793984,5773614722288975872,14996986759143751680,6782456361169977344,14997022080954793984,5773614722288975872,14996986759143751680,6782456361167880192,14997022080954793984,5773614722288975872,14996986759143751680,5773649906661064704,14997022080954793984,6350075474592399360,14996986759143751680,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,15861713209948905472,15573482695819264000,16077850669712670720,15573447511447175168,15861713209946800128,6854513954668937216,16077850669712670720,5773614722288975872,15861713209948897280,6854513954668937216,16077850669712670720,5773614722288975872,15861713209946800128,6854513954668937216,16077850669712670720,5773614722288975872,14997021943515840512,6854513954668937216,15573447511447175168,5773614722288975872,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,6638341173094129664,6350110658964488192,6782421038819966976,6350075474592399360,6638341173092024320,16005828397485785088,6782421038819966976,14996986759143751680,6638341173094121472,16005828397485785088,6782421038819966976,14996986759143751680,6638341173092024320,16005828397485785088,6782421038819966976,14996986759143751680,5773649906661064704,16005828397485785088,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,15573482833797193728,14997021943515840512,15861677887598886912,15573447511447175168,15573482833795088384,6638341172555153408,15861677887598886912,6854478632857894912,15573482833797185536,6638341172555153408,15861677887598886912,6854478632857894912,15573482833795088384,6638341172555153408,15861677887598886912,6854478632857894912,14997021943515840512,6638341172555153408,14996986759143751680,6854478632857894912,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,6350110796942417920,5773649906661064704,6638305850744111104,6350075474592399360,6350110796940312576,15861713209409929216,6638305850744111104,16005793075674742784,6350110796942409728,15861713209409929216,6638305850744111104,16005793075674742784,6350110796940312576,15861713209409929216,6638305850744111104,16005793075674742784,5773649906661064704,15861713209409929216,5773614722288975872,16005793075674742784,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,15573482833797193728,14997021943515840512,15573447511447175168,14996986759143751680,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,15573482833797185536,6350110796403441664,15573447511447175168,6638305850744111104,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,14997021943515840512,6350110796403441664,14996986759143751680,6638305850744111104,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,6350110796942417920,5773649906661064704,6350075474592399360,5773614722288975872,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,6350110796942409728,15573482833258217472,6350075474592399360,15861677887598886912,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,5773649906661064704,15573482833258217472,5773614722288975872,15861677887598886912,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,14997022081493770240,14997021943515840512,15573447511447175168,14996986759143751680,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,14997022081493762048,6350110796403441664,15573447511447175168,6350075474592399360,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,14997021943515840512,6350110796403441664,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,5773650044638994432,5773649906661064704,6350075474592399360,5773614722288975872,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,5773650044638986240,15573482833258217472,6350075474592399360,15573447511447175168,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,6854513817229983744,15573482833258217472,5773614722288975872,15573447511447175168,6854513817229983744,14997021943515840512,5773614722288975872,14996986759143751680,6854513817229983744,14997021943515840512,5773614722288975872,14996986759143751680,6854513817229983744,14997021943515840512,5773614722288975872,14996986759143751680,14997022081493770240,14997021943515840512,14996986759143751680,14996986759143751680,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,14997022081493762048,5773650044100018176,14996986759143751680,6350075474592399360,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,16005828260046831616,5773650044100018176,14996986759143751680,6350075474592399360,16005828260046831616,5773649906661064704,14996986759143751680,5773614722288975872,16005828260046831616,5773649906661064704,14996986759143751680,5773614722288975872,16005828260046831616,5773649906661064704,14996986759143751680,5773614722288975872,5773650044638994432,5773649906661064704,5773614722288975872,5773614722288975872,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,5773650044638986240,14997022080954793984,5773614722288975872,15573447511447175168,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,6638341035116199936,14997022080954793984,6854478632857894912,15573447511447175168,6638341035116199936,16077885854084759552,6854478632857894912,14996986759143751680,6638341035116199936,16077885854084759552,6854478632857894912,14996986759143751680,6638341035116199936,16077885854084759552,6854478632857894912,14996986759143751680,14997022081493770240,16077885854084759552,14996986759143751680,14996986759143751680,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15861713071970975744,5773650044100018176,16005793075674742784,5773614722288975872,15861713071970975744,6782456223192055808,16005793075674742784,5773614722288975872,15861713071970975744,6782456223192055808,16005793075674742784,5773614722288975872,15861713071970975744,6782456223192055808,16005793075674742784,5773614722288975872,5773650044638994432,6782456223192055808,5773614722288975872,5773614722288975872,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6638305850744111104,14996986759143751680,6350110658964488192,15861713071970975744,6638305850744111104,16077850669712670720,6350110658964488192,15861713071970975744,6638305850744111104,16077850669712670720,6350110658964488192,15861713071970975744,6638305850744111104,16077850669712670720,14997022081493770240,15861713071970975744,14996986759143751680,16077850669712670720,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15861677887598886912,5773614722288975872,15573482695819264000,6638341035116199936,15861677887598886912,6782421038819966976,15573482695819264000,6638341035116199936,15861677887598886912,6782421038819966976,15573482695819264000,6638341035116199936,15861677887598886912,6782421038819966976,5773650044638994432,6638341035116199936,5773614722288975872,6782421038819966976,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6350075474592399360,14996986759143751680,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6854513955207913504,15573482695819264000,14996986759143751680,15861677887598886912,6854513955205808128,5773650044100018176,14996986759143751680,5773614722288975872,6854513955207905280,5773650044100018176,14996986759143751680,5773614722288975872,6854513955205808128,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15573447511447175168,5773614722288975872,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,16005828398024761376,6350110658964488192,5773614722288975872,6638305850744111104,16005828398022656000,14997022080954793984,5773614722288975872,14996986759143751680,16005828398024753152,14997022080954793984,5773614722288975872,14996986759143751680,16005828398022656000,14997022080954793984,5773614722288975872,14996986759143751680,5773649906661064704,14997022080954793984,6350075474592399360,14996986759143751680,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,6638341173094129696,15573482695819264000,6854478632857894912,15573447511447175168,6638341173092024320,16077885991523713024,6854478632857894912,5773614722288975872,6638341173094121472,16077885991523713024,6854478632857894912,5773614722288975872,6638341173092024320,16077885991523713024,6854478632857894912,5773614722288975872,14997021943515840512,16077885991523713024,15573447511447175168,5773614722288975872,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,15861713209948905504,6350110658964488192,16005793075674742784,6350075474592399360,15861713209946800128,6782456360631009280,16005793075674742784,14996986759143751680,15861713209948897280,6782456360631009280,16005793075674742784,14996986759143751680,15861713209946800128,6782456360631009280,16005793075674742784,14996986759143751680,5773649906661064704,6782456360631009280,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,6350110796942417952,14997021943515840512,6638305850744111104,15573447511447175168,6350110796940312576,15861713209409929216,6638305850744111104,16077850669712670720,6350110796942409728,15861713209409929216,6638305850744111104,16077850669712670720,6350110796940312576,15861713209409929216,6638305850744111104,16077850669712670720,14997021943515840512,15861713209409929216,14996986759143751680,16077850669712670720,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,15573482833797193760,5773649906661064704,15861677887598886912,6350075474592399360,15573482833795088384,6638341172555153408,15861677887598886912,6782421038819966976,15573482833797185536,6638341172555153408,15861677887598886912,6782421038819966976,15573482833795088384,6638341172555153408,15861677887598886912,6782421038819966976,5773649906661064704,6638341172555153408,5773614722288975872,6782421038819966976,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,6350110796942417952,14997021943515840512,6350075474592399360,14996986759143751680,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,6350110796942409728,15573482833258217472,6350075474592399360,15861677887598886912,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,14997021943515840512,15573482833258217472,14996986759143751680,15861677887598886912,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,15573482833797193760,5773649906661064704,15573447511447175168,5773614722288975872,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,15573482833797185536,6350110796403441664,15573447511447175168,6638305850744111104,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,5773649906661064704,6350110796403441664,5773614722288975872,6638305850744111104,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773650044638994464,14997021943515840512,6350075474592399360,14996986759143751680,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,5773650044638986240,15573482833258217472,6350075474592399360,15573447511447175168,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,14997021943515840512,15573482833258217472,14996986759143751680,15573447511447175168,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997022081493770272,5773649906661064704,15573447511447175168,5773614722288975872,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,14997022081493762048,6350110796403441664,15573447511447175168,6350075474592399360,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,16077885854084759552,6350110796403441664,5773614722288975872,6350075474592399360,16077885854084759552,14997021943515840512,5773614722288975872,14996986759143751680,16077885854084759552,14997021943515840512,5773614722288975872,14996986759143751680,16077885854084759552,14997021943515840512,5773614722288975872,14996986759143751680,5773650044638994464,14997021943515840512,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,5773650044638986240,14997022080954793984,5773614722288975872,15573447511447175168,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,6782456223192055808,14997022080954793984,14996986759143751680,15573447511447175168,6782456223192055808,5773649906661064704,14996986759143751680,5773614722288975872,6782456223192055808,5773649906661064704,14996986759143751680,5773614722288975872,6782456223192055808,5773649906661064704,14996986759143751680,5773614722288975872,14997022081493770272,5773649906661064704,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,14997022081493762048,5773650044100018176,14996986759143751680,6350075474592399360,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,15861713071970975744,5773650044100018176,16077850669712670720,6350075474592399360,15861713071970975744,6854513817229983744,16077850669712670720,14996986759143751680,15861713071970975744,6854513817229983744,16077850669712670720,14996986759143751680,15861713071970975744,6854513817229983744,16077850669712670720,14996986759143751680,5773650044638994464,6854513817229983744,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6638341035116199936,14997022080954793984,6782421038819966976,14996986759143751680,6638341035116199936,16005828260046831616,6782421038819966976,5773614722288975872,6638341035116199936,16005828260046831616,6782421038819966976,5773614722288975872,6638341035116199936,16005828260046831616,6782421038819966976,5773614722288975872,14997022081493770272,16005828260046831616,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15861677887598886912,5773614722288975872,15573482695819264000,6638341035116199936,15861677887598886912,6854478632857894912,15573482695819264000,6638341035116199936,15861677887598886912,6854478632857894912,15573482695819264000,6638341035116199936,15861677887598886912,6854478632857894912,5773650044638994464,6638341035116199936,5773614722288975872,6854478632857894912,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6638305850744111104,14996986759143751680,6350110658964488192,15861713071970975744,6638305850744111104,16005793075674742784,6350110658964488192,15861713071970975744,6638305850744111104,16005793075674742784,6350110658964488192,15861713071970975744,6638305850744111104,16005793075674742784,14997022081493770272,15861713071970975744,14996986759143751680,16005793075674742784,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15573447511447175168,5773614722288975872,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,6854513955207913472,6350110658964488192,5773614722288975872,6638305850744111104,6854513955205808128,14997022080954793984,5773614722288975872,14996986759143751680,6854513955207905280,14997022080954793984,5773614722288975872,14996986759143751680,6854513955205808128,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6350075474592399360,14996986759143751680,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,6350110658964488192,15573482695819264000,6350075474592399360,15861677887598886912,16005828398024761344,15573482695819264000,14996986759143751680,15861677887598886912,16005828398022656000,5773650044100018176,14996986759143751680,5773614722288975872,16005828398024753152,5773650044100018176,14996986759143751680,5773614722288975872,16005828398022656000,5773650044100018176,14996986759143751680,5773614722288975872,14997021943515840512,5773650044100018176,15573447511447175168,5773614722288975872,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,14997021943515840512,6350110658964488192,15573447511447175168,6350075474592399360,6638341173094129664,6350110658964488192,6854478632857894912,6350075474592399360,6638341173092024320,16077885991523713024,6854478632857894912,14996986759143751680,6638341173094121472,16077885991523713024,6854478632857894912,14996986759143751680,6638341173092024320,16077885991523713024,6854478632857894912,14996986759143751680,5773649906661064704,16077885991523713024,6350075474592399360,14996986759143751680,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,5773649906661064704,15573482695819264000,6350075474592399360,15573447511447175168,15861713209948905472,15573482695819264000,16005793075674742784,15573447511447175168,15861713209946800128,6782456360631009280,16005793075674742784,5773614722288975872,15861713209948897280,6782456360631009280,16005793075674742784,5773614722288975872,15861713209946800128,6782456360631009280,16005793075674742784,5773614722288975872,14997021943515840512,6782456360631009280,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,14997021943515840512,5773649906661064704,14996986759143751680,6350075474592399360,6350110796942417920,5773649906661064704,6638305850744111104,6350075474592399360,6350110796940312576,15861713209409929216,6638305850744111104,16077850669712670720,6350110796942409728,15861713209409929216,6638305850744111104,16077850669712670720,6350110796940312576,15861713209409929216,6638305850744111104,16077850669712670720,5773649906661064704,15861713209409929216,5773614722288975872,16077850669712670720,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,15573447511447175168,15573482833797193728,14997021943515840512,15861677887598886912,15573447511447175168,15573482833795088384,6638341172555153408,15861677887598886912,6782421038819966976,15573482833797185536,6638341172555153408,15861677887598886912,6782421038819966976,15573482833795088384,6638341172555153408,15861677887598886912,6782421038819966976,14997021943515840512,6638341172555153408,14996986759143751680,6782421038819966976,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,6350110796942417920,5773649906661064704,6350075474592399360,5773614722288975872,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,6350110796942409728,15573482833258217472,6350075474592399360,15861677887598886912,6350110796940312576,15573482833258217472,6350075474592399360,15861677887598886912,5773649906661064704,15573482833258217472,5773614722288975872,15861677887598886912,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,15573482833797193728,14997021943515840512,15573447511447175168,14996986759143751680,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,15573482833797185536,6350110796403441664,15573447511447175168,6638305850744111104,15573482833795088384,6350110796403441664,15573447511447175168,6638305850744111104,14997021943515840512,6350110796403441664,14996986759143751680,6638305850744111104,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,14997021943515840512,5773649906661064704,14996986759143751680,5773614722288975872,5773650044638994432,5773649906661064704,6350075474592399360,5773614722288975872,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,5773650044638986240,15573482833258217472,6350075474592399360,15573447511447175168,5773650044636889088,15573482833258217472,6350075474592399360,15573447511447175168,5773649906661064704,15573482833258217472,5773614722288975872,15573447511447175168,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,5773649906661064704,14997021943515840512,5773614722288975872,14996986759143751680,14997022081493770240,14997021943515840512,15573447511447175168,14996986759143751680,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,14997022081493762048,6350110796403441664,15573447511447175168,6350075474592399360,14997022081491664896,6350110796403441664,15573447511447175168,6350075474592399360,16077885854084759552,6350110796403441664,14996986759143751680,6350075474592399360,16077885854084759552,5773649906661064704,14996986759143751680,5773614722288975872,16077885854084759552,5773649906661064704,14996986759143751680,5773614722288975872,16077885854084759552,5773649906661064704,14996986759143751680,5773614722288975872,5773650044638994432,5773649906661064704,5773614722288975872,5773614722288975872,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,5773650044638986240,14997022080954793984,5773614722288975872,15573447511447175168,5773650044636889088,14997022080954793984,5773614722288975872,15573447511447175168,6782456223192055808,14997022080954793984,5773614722288975872,15573447511447175168,6782456223192055808,14997021943515840512,5773614722288975872,14996986759143751680,6782456223192055808,14997021943515840512,5773614722288975872,14996986759143751680,6782456223192055808,14997021943515840512,5773614722288975872,14996986759143751680,14997022081493770240,14997021943515840512,14996986759143751680,14996986759143751680,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,14997022081493762048,5773650044100018176,14996986759143751680,6350075474592399360,14997022081491664896,5773650044100018176,14996986759143751680,6350075474592399360,15861713071970975744,5773650044100018176,16077850669712670720,6350075474592399360,15861713071970975744,6854513817229983744,16077850669712670720,5773614722288975872,15861713071970975744,6854513817229983744,16077850669712670720,5773614722288975872,15861713071970975744,6854513817229983744,16077850669712670720,5773614722288975872,5773650044638994432,6854513817229983744,5773614722288975872,5773614722288975872,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6638341035116199936,14997022080954793984,6782421038819966976,14996986759143751680,6638341035116199936,16005828260046831616,6782421038819966976,14996986759143751680,6638341035116199936,16005828260046831616,6782421038819966976,14996986759143751680,6638341035116199936,16005828260046831616,6782421038819966976,14996986759143751680,14997022081493770240,16005828260046831616,14996986759143751680,14996986759143751680,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15861677887598886912,5773614722288975872,15573482695819264000,6638341035116199936,15861677887598886912,6854478632857894912,15573482695819264000,6638341035116199936,15861677887598886912,6854478632857894912,15573482695819264000,6638341035116199936,15861677887598886912,6854478632857894912,5773650044638994432,6638341035116199936,5773614722288975872,6854478632857894912,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,5773650044638986240,14997022080954793984,5773614722288975872,14996986759143751680,5773650044636889088,14997022080954793984,5773614722288975872,14996986759143751680,6350110658964488192,14997022080954793984,6638305850744111104,14996986759143751680,6350110658964488192,15861713071970975744,6638305850744111104,16005793075674742784,6350110658964488192,15861713071970975744,6638305850744111104,16005793075674742784,6350110658964488192,15861713071970975744,6638305850744111104,16005793075674742784,14997022081493770240,15861713071970975744,14996986759143751680,16005793075674742784,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,14997022081493762048,5773650044100018176,14996986759143751680,5773614722288975872,14997022081491664896,5773650044100018176,14996986759143751680,5773614722288975872,15573482695819264000,5773650044100018176,15573447511447175168,5773614722288975872,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,15573482695819264000,6350110658964488192,15573447511447175168,6638305850744111104,0],[13781085504453754944,13276611701488222208,11547300089277972480,13564842077639933952,13781085228497895424,13276611701488222208,11547299813322129408,13564842077639933952,11547229444577951744,13781085504453754880,12700150949184798720,11547300089277972480,11547229444577951744,13781085228497895424,12700150949184798720,11547299813322129408,13781085503375802368,11547229444577951744,11547300088200036352,12700150949184798720,13781085228497895424,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13781085503375802368,12700150949184798720,11547300088200036352,11547229444577951744,13781085228497895424,12700150949184798720,11547299813322129408,11547300089273778176,11547229444577951744,11547300089273778176,12700150949184798720,11547299813322129408,11547229444577951744,11547299813322129408,12700150949184798720,12700150949184798720,11547300089273778176,13276611701488222208,11547300089273778176,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,13709027910415827008,12700150949184798720,11547300089277972480,13276611701488222208,13709027634459967488,12700150949184798720,11547299813322129408,13276611701488222208,11547229444577951744,13709027910415826944,12700150949184798720,11547300089277972480,11547229444577951744,13709027634459967488,12700150949184798720,11547299813322129408,13709027909337874432,11547229444577951744,11547300088200036352,12700150949184798720,13709027634459967488,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13709027909337874432,12700150949184798720,11547300088200036352,11547229444577951744,13709027634459967488,12700150949184798720,11547299813322129408,11547300089273778176,11547229444577951744,11547300089273778176,12700150949184798720,11547299813322129408,11547229444577951744,11547299813322129408,12700150949184798720,12700150949184798720,11547300089273778176,13276611701488222208,11547300089273778176,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,13564912722339971136,12700150949184798720,11547300089277972480,13276611701488222208,13564912446384111616,12700150949184798720,11547299813322129408,13276611701488222208,11547229444577951744,13564912722339971072,12700150949184798720,11547300089277972480,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,13564912721262018560,11547229444577951744,11547300088200036352,12700150949184798720,13564912446384111616,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13564912721262018560,12700150949184798720,11547300088200036352,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,11547300089273778176,11547229444577951744,11547300089273778176,12700150949184798720,11547299813322129408,11547229444577951744,11547299813322129408,12700150949184798720,12700150949184798720,11547300089273778176,13276611701488222208,11547300089273778176,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,13564912722339971136,12700150949184798720,11547300089277972480,13276611701488222208,13564912446384111616,12700150949184798720,11547299813322129408,13276611701488222208,11547229444577951744,13564912722339971072,12700150949184798720,11547300089277972480,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,13564912721262018560,11547229444577951744,11547300088200036352,12700150949184798720,13564912446384111616,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13564912721262018560,12700150949184798720,11547300088200036352,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,11547300089273778176,11547229444577951744,11547300089273778176,12700150949184798720,11547299813322129408,11547229444577951744,11547299813322129408,12700150949184798720,12700150949184798720,11547300089273778176,13276611701488222208,11547300089273778176,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,13276682346188259392,12700150949184798720,13781085504453738496,13276611701488222208,13276682070232399872,12700150949184798720,13781085228497895424,13276611701488222208,11547229444577951744,13276682346188259328,11547229444577951744,13781085504453738496,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,13276682345110306816,11547229444577951744,13781085503375802368,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13781085503375802368,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,11547300089273778176,11547229444577951744,11547300089273778176,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,12700150949184798720,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,13276682346188259392,12700150949184798720,13709027910415810560,12700150949184798720,13276682070232399872,12700150949184798720,13709027634459967488,12700150949184798720,11547229444577951744,13276682346188259328,11547229444577951744,13709027910415810560,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,13276682345110306816,11547229444577951744,13709027909337874432,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13709027909337874432,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,11547300089273778176,11547229444577951744,11547300089273778176,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,12700150949184798720,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,13276682346188259392,12700150949184798720,13564912722339954688,12700150949184798720,13276682070232399872,12700150949184798720,13564912446384111616,12700150949184798720,11547229444577951744,13276682346188259328,11547229444577951744,13564912722339954688,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547300089273778176,11547229444577951744,11547300089273778176,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,12700150949184798720,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,13276682346188259392,12700150949184798720,13564912722339954688,12700150949184798720,13276682070232399872,12700150949184798720,13564912446384111616,12700150949184798720,11547229444577951744,13276682346188259328,11547229444577951744,13564912722339954688,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547300089273778176,11547229444577951744,11547300089273778176,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,12700150949184798720,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700221593884835904,12700150949184798720,13276682346188242944,12700150949184798720,12700221317928976384,12700150949184798720,13276682070232399872,12700150949184798720,11547229444577951744,12700221593884835840,11547229444577951744,13276682346188242944,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,13781085504449544192,11547229444577951744,11547300089273778176,11547229444577951744,13781085228497895424,11547229444577951744,11547299813322129408,11547229444577951744,11547229444577951744,13781085504449544192,12700150949184798720,11547300089273778176,11547229444577951744,13781085228497895424,12700150949184798720,11547299813322129408,13781085503375802368,11547229444577951744,11547300088200036352,12700150949184798720,13781085228497895424,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13781085503375802368,12700150949184798720,11547300088200036352,11547229444577951744,13781085228497895424,12700150949184798720,11547299813322129408,12700221593884835904,11547229444577951744,13276682346188242944,12700150949184798720,12700221317928976384,11547229444577951744,13276682070232399872,12700150949184798720,11547229444577951744,12700221593884835840,11547229444577951744,13276682346188242944,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,13709027910411616256,11547229444577951744,11547300089273778176,11547229444577951744,13709027634459967488,11547229444577951744,11547299813322129408,11547229444577951744,11547229444577951744,13709027910411616256,12700150949184798720,11547300089273778176,11547229444577951744,13709027634459967488,12700150949184798720,11547299813322129408,13709027909337874432,11547229444577951744,11547300088200036352,12700150949184798720,13709027634459967488,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13709027909337874432,12700150949184798720,11547300088200036352,11547229444577951744,13709027634459967488,12700150949184798720,11547299813322129408,12700221593884835904,11547229444577951744,13276682346188242944,12700150949184798720,12700221317928976384,11547229444577951744,13276682070232399872,12700150949184798720,11547229444577951744,12700221593884835840,11547229444577951744,13276682346188242944,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,13564912722335760384,11547229444577951744,11547300089273778176,11547229444577951744,13564912446384111616,11547229444577951744,11547299813322129408,11547229444577951744,11547229444577951744,13564912722335760384,12700150949184798720,11547300089273778176,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,13564912721262018560,11547229444577951744,11547300088200036352,12700150949184798720,13564912446384111616,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13564912721262018560,12700150949184798720,11547300088200036352,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,12700221593884835904,11547229444577951744,13276682346188242944,12700150949184798720,12700221317928976384,11547229444577951744,13276682070232399872,12700150949184798720,11547229444577951744,12700221593884835840,11547229444577951744,13276682346188242944,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,13564912722335760384,11547229444577951744,11547300089273778176,11547229444577951744,13564912446384111616,11547229444577951744,11547299813322129408,11547229444577951744,11547229444577951744,13564912722335760384,12700150949184798720,11547300089273778176,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,13564912721262018560,11547229444577951744,11547300088200036352,12700150949184798720,13564912446384111616,11547229444577951744,11547299813322129408,12700150949184798720,11547229444577951744,13564912721262018560,12700150949184798720,11547300088200036352,11547229444577951744,13564912446384111616,12700150949184798720,11547299813322129408,12700221593884835904,11547229444577951744,12700221593884819456,12700150949184798720,12700221317928976384,11547229444577951744,12700221317928976384,12700150949184798720,11547229444577951744,12700221593884835840,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,13276682346184048640,11547229444577951744,13781085504449544192,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,11547229444577951744,11547229444577951744,13276682346184048640,11547229444577951744,13781085504449544192,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,13276682345110306816,11547229444577951744,13781085503375802368,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13781085503375802368,11547229444577951744,13276682070232399872,11547229444577951744,13781085228497895424,12700221593884835904,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221593884835840,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,13276682346184048640,11547229444577951744,13709027910411616256,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,11547229444577951744,11547229444577951744,13276682346184048640,11547229444577951744,13709027910411616256,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,13276682345110306816,11547229444577951744,13709027909337874432,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13709027909337874432,11547229444577951744,13276682070232399872,11547229444577951744,13709027634459967488,12700221593884835904,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221593884835840,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,13276682346184048640,11547229444577951744,13564912722335760384,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547229444577951744,11547229444577951744,13276682346184048640,11547229444577951744,13564912722335760384,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,12700221593884835904,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221593884835840,11547229444577951744,12700221593884819456,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,13276682346184048640,11547229444577951744,13564912722335760384,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547229444577951744,11547229444577951744,13276682346184048640,11547229444577951744,13564912722335760384,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547229444577951744,11547229444577951744,13276682345110306816,11547229444577951744,13564912721262018560,11547229444577951744,13276682070232399872,11547229444577951744,13564912446384111616,11547300089277988928,11547229444577951744,12700221593884819456,11547229444577951744,11547299813322129408,11547229444577951744,12700221317928976384,11547229444577951744,13781014859753717760,11547300089277988864,11547229444577951744,12700221593884819456,13781014859753717760,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13781014859753717760,12700221592806883328,11547229444577951744,11547299813322129408,13781014859753717760,12700221317928976384,11547229444577951744,13781014859753717760,11547300088200036352,11547229444577951744,12700221592806883328,13781014859753717760,11547299813322129408,11547229444577951744,12700221317928976384,12700221593880625152,13781014859753717760,13276682346184048640,11547229444577951744,12700221317928976384,13781014859753717760,13276682070232399872,11547229444577951744,11547229444577951744,12700221593880625152,11547229444577951744,13276682346184048640,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547300089277988928,11547229444577951744,12700221593884819456,11547229444577951744,11547299813322129408,11547229444577951744,12700221317928976384,11547229444577951744,13708957265715789824,11547300089277988864,11547229444577951744,12700221593884819456,13708957265715789824,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13708957265715789824,12700221592806883328,11547229444577951744,11547299813322129408,13708957265715789824,12700221317928976384,11547229444577951744,13708957265715789824,11547300088200036352,11547229444577951744,12700221592806883328,13708957265715789824,11547299813322129408,11547229444577951744,12700221317928976384,12700221593880625152,13708957265715789824,13276682346184048640,11547229444577951744,12700221317928976384,13708957265715789824,13276682070232399872,11547229444577951744,11547229444577951744,12700221593880625152,11547229444577951744,13276682346184048640,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547300089277988928,11547229444577951744,12700221593884819456,11547229444577951744,11547299813322129408,11547229444577951744,12700221317928976384,11547229444577951744,13564842077639933952,11547300089277988864,11547229444577951744,12700221593884819456,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13564842077639933952,12700221592806883328,11547229444577951744,11547299813322129408,13564842077639933952,12700221317928976384,11547229444577951744,13564842077639933952,11547300088200036352,11547229444577951744,12700221592806883328,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,12700221593880625152,13564842077639933952,13276682346184048640,11547229444577951744,12700221317928976384,13564842077639933952,13276682070232399872,11547229444577951744,11547229444577951744,12700221593880625152,11547229444577951744,13276682346184048640,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547300089277988928,11547229444577951744,12700221593884819456,11547229444577951744,11547299813322129408,11547229444577951744,12700221317928976384,11547229444577951744,13564842077639933952,11547300089277988864,11547229444577951744,12700221593884819456,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13564842077639933952,12700221592806883328,11547229444577951744,11547299813322129408,13564842077639933952,12700221317928976384,11547229444577951744,13564842077639933952,11547300088200036352,11547229444577951744,12700221592806883328,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,12700221593880625152,13564842077639933952,13276682346184048640,11547229444577951744,12700221317928976384,13564842077639933952,13276682070232399872,11547229444577951744,11547229444577951744,12700221593880625152,11547229444577951744,13276682346184048640,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,13276682345110306816,11547229444577951744,12700221317928976384,11547229444577951744,13276682070232399872,11547300089277988928,11547229444577951744,11547300089277972480,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,13276611701488222208,11547300089277988864,13781014859753717760,11547300089277972480,13276611701488222208,11547299813322129408,13781014859753717760,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13781014859753717760,11547299813322129408,13276611701488222208,11547299813322129408,13781014859753717760,13276611701488222208,11547300088200036352,13781014859753717760,11547300088200036352,13276611701488222208,11547299813322129408,13781014859753717760,11547299813322129408,12700221593880625152,13276611701488222208,12700221593880625152,13781014859753717760,12700221317928976384,13276611701488222208,12700221317928976384,13781014859753717760,11547229444577951744,12700221593880625152,11547229444577951744,12700221593880625152,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547300089277988928,11547229444577951744,11547300089277972480,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,13276611701488222208,11547300089277988864,13708957265715789824,11547300089277972480,13276611701488222208,11547299813322129408,13708957265715789824,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13708957265715789824,11547299813322129408,13276611701488222208,11547299813322129408,13708957265715789824,13276611701488222208,11547300088200036352,13708957265715789824,11547300088200036352,13276611701488222208,11547299813322129408,13708957265715789824,11547299813322129408,12700221593880625152,13276611701488222208,12700221593880625152,13708957265715789824,12700221317928976384,13276611701488222208,12700221317928976384,13708957265715789824,11547229444577951744,12700221593880625152,11547229444577951744,12700221593880625152,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547300089277988928,11547229444577951744,11547300089277972480,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,13276611701488222208,11547300089277988864,13564842077639933952,11547300089277972480,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13564842077639933952,11547299813322129408,13276611701488222208,11547299813322129408,13564842077639933952,13276611701488222208,11547300088200036352,13564842077639933952,11547300088200036352,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,12700221593880625152,13276611701488222208,12700221593880625152,13564842077639933952,12700221317928976384,13276611701488222208,12700221317928976384,13564842077639933952,11547229444577951744,12700221593880625152,11547229444577951744,12700221593880625152,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547300089277988928,11547229444577951744,11547300089277972480,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,13276611701488222208,11547300089277988864,13564842077639933952,11547300089277972480,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13564842077639933952,11547299813322129408,13276611701488222208,11547299813322129408,13564842077639933952,13276611701488222208,11547300088200036352,13564842077639933952,11547300088200036352,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,12700221593880625152,13276611701488222208,12700221593880625152,13564842077639933952,12700221317928976384,13276611701488222208,12700221317928976384,13564842077639933952,11547229444577951744,12700221593880625152,11547229444577951744,12700221593880625152,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547229444577951744,11547229444577951744,12700221592806883328,11547229444577951744,12700221592806883328,11547229444577951744,12700221317928976384,11547229444577951744,12700221317928976384,11547300089277988928,11547229444577951744,11547300089277972480,11547229444577951744,11547299813322129408,11547229444577951744,11547299813322129408,11547229444577951744,12700150949184798720,11547300089277988864,13276611701488222208,11547300089277972480,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300089273778176,12700150949184798720,12700221593880625152,13276611701488222208,11547299813322129408,12700150949184798720,12700221317928976384,13276611701488222208,13781014859753717760,11547300089273778176,11547229444577951744,12700221593880625152,13781014859753717760,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13781014859753717760,12700221592806883328,11547229444577951744,11547299813322129408,13781014859753717760,12700221317928976384,11547229444577951744,13781014859753717760,11547300088200036352,11547229444577951744,12700221592806883328,13781014859753717760,11547299813322129408,11547229444577951744,12700221317928976384,11547300089277988928,13781014859753717760,11547300089277972480,11547229444577951744,11547299813322129408,13781014859753717760,11547299813322129408,11547229444577951744,12700150949184798720,11547300089277988864,13276611701488222208,11547300089277972480,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300089273778176,12700150949184798720,12700221593880625152,13276611701488222208,11547299813322129408,12700150949184798720,12700221317928976384,13276611701488222208,13708957265715789824,11547300089273778176,11547229444577951744,12700221593880625152,13708957265715789824,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13708957265715789824,12700221592806883328,11547229444577951744,11547299813322129408,13708957265715789824,12700221317928976384,11547229444577951744,13708957265715789824,11547300088200036352,11547229444577951744,12700221592806883328,13708957265715789824,11547299813322129408,11547229444577951744,12700221317928976384,11547300089277988928,13708957265715789824,11547300089277972480,11547229444577951744,11547299813322129408,13708957265715789824,11547299813322129408,11547229444577951744,12700150949184798720,11547300089277988864,13276611701488222208,11547300089277972480,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300089273778176,12700150949184798720,12700221593880625152,13276611701488222208,11547299813322129408,12700150949184798720,12700221317928976384,13276611701488222208,13564842077639933952,11547300089273778176,11547229444577951744,12700221593880625152,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13564842077639933952,12700221592806883328,11547229444577951744,11547299813322129408,13564842077639933952,12700221317928976384,11547229444577951744,13564842077639933952,11547300088200036352,11547229444577951744,12700221592806883328,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,11547300089277988928,13564842077639933952,11547300089277972480,11547229444577951744,11547299813322129408,13564842077639933952,11547299813322129408,11547229444577951744,12700150949184798720,11547300089277988864,13276611701488222208,11547300089277972480,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,13276611701488222208,11547299813322129408,12700150949184798720,11547299813322129408,13276611701488222208,12700150949184798720,11547300088200036352,13276611701488222208,11547300088200036352,12700150949184798720,11547299813322129408,13276611701488222208,11547299813322129408,11547300089273778176,12700150949184798720,12700221593880625152,13276611701488222208,11547299813322129408,12700150949184798720,12700221317928976384,13276611701488222208,13564842077639933952,11547300089273778176,11547229444577951744,12700221593880625152,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,11547300088200036352,13564842077639933952,12700221592806883328,11547229444577951744,11547299813322129408,13564842077639933952,12700221317928976384,11547229444577951744,13564842077639933952,11547300088200036352,11547229444577951744,12700221592806883328,13564842077639933952,11547299813322129408,11547229444577951744,12700221317928976384,11547300089277988928,13564842077639933952,11547300089277972480,11547229444577951744,11547299813322129408,13564842077639933952,11547299813322129408,11547229444577951744,12700150949184798720,11547300089277988864,12700150949184798720,11547300089277972480,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,13276611701488222208,11547300089273778176,13781014859753717760,11547300089273778176,13276611701488222208,11547299813322129408,13781014859753717760,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13781014859753717760,11547299813322129408,13276611701488222208,11547299813322129408,13781014859753717760,13276611701488222208,11547300088200036352,13781014859753717760,11547300088200036352,13276611701488222208,11547299813322129408,13781014859753717760,11547299813322129408,11547300089277988928,13276611701488222208,11547300089277972480,13781014859753717760,11547299813322129408,13276611701488222208,11547299813322129408,13781014859753717760,12700150949184798720,11547300089277988864,12700150949184798720,11547300089277972480,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,13276611701488222208,11547300089273778176,13708957265715789824,11547300089273778176,13276611701488222208,11547299813322129408,13708957265715789824,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13708957265715789824,11547299813322129408,13276611701488222208,11547299813322129408,13708957265715789824,13276611701488222208,11547300088200036352,13708957265715789824,11547300088200036352,13276611701488222208,11547299813322129408,13708957265715789824,11547299813322129408,11547300089277988928,13276611701488222208,11547300089277972480,13708957265715789824,11547299813322129408,13276611701488222208,11547299813322129408,13708957265715789824,12700150949184798720,11547300089277988864,12700150949184798720,11547300089277972480,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,13276611701488222208,11547300089273778176,13564842077639933952,11547300089273778176,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13564842077639933952,11547299813322129408,13276611701488222208,11547299813322129408,13564842077639933952,13276611701488222208,11547300088200036352,13564842077639933952,11547300088200036352,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,11547300089277988928,13276611701488222208,11547300089277972480,13564842077639933952,11547299813322129408,13276611701488222208,11547299813322129408,13564842077639933952,12700150949184798720,11547300089277988864,12700150949184798720,11547300089277972480,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,12700150949184798720,11547300088200036352,12700150949184798720,11547300088200036352,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,11547300089273778176,12700150949184798720,11547300089273778176,12700150949184798720,11547299813322129408,12700150949184798720,11547299813322129408,12700150949184798720,13276611701488222208,11547300089273778176,13564842077639933952,11547300089273778176,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,11547300088200036352,13276611701488222208,11547300088200036352,13564842077639933952,11547299813322129408,13276611701488222208,11547299813322129408,13564842077639933952,13276611701488222208,11547300088200036352,13564842077639933952,11547300088200036352,13276611701488222208,11547299813322129408,13564842077639933952,11547299813322129408,0],[9187484529235886208,9187484529235853312,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,9115426935197958272,9115426935197925376,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8971311747122102400,8971311747122069504,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8971311747122102400,8971311747122069504,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390656,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390656,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390656,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390656,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8106620618666967168,8106620618666934272,9187484529227464704,9187484529227464704,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,9115426935189536768,9115426935189536768,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,8971311747113680896,8971311747113680896,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,8971311747113680896,8971311747113680896,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967168,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187484527079981056,9187484527079981056,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115426933042053120,9115426933042053120,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311744966197248,8971311744966197248,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311744966197248,8971311744966197248,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,9187484527079981056,9187484527079981056,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,9115426933042053120,9115426933042053120,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8971311744966197248,8971311744966197248,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8971311744966197248,8971311744966197248,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120192,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,9187483977324167168,9187483977324167168,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,9115426383286239232,9115426383286239232,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,9187483977324167168,9187483977324167168,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,9115426383286239232,9115426383286239232,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187483977324167168,9187483977324167168,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115426383286239232,9115426383286239232,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,9187483977324167168,9187483977324167168,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,9115426383286239232,9115426383286239232,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,4647856104846426240,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,9187484529235886080,9187484529235853312,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,9115426935197958144,9115426935197925376,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8971311747122102272,8971311747122069504,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8971311747122102272,8971311747122069504,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390528,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390528,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390528,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8683081370970390528,8683081370970357760,4647856104838004736,4647856104838004736,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,8106620618666967040,8106620618666934272,9187484529227464704,9187484529227464704,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,9115426935189536768,9115426935189536768,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,8971311747113680896,8971311747113680896,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,8971311747113680896,8971311747113680896,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,8106620618666967040,8106620618666934272,8683081370961969152,8683081370961969152,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187484527079981056,9187484527079981056,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115426933042053120,9115426933042053120,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311744966197248,8971311744966197248,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311744966197248,8971311744966197248,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,8106620618658545664,8106620618658545664,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683081368814485504,8683081368814485504,4647856102690521088,4647856102690521088,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,6953698562148401152,6953698562148401152,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,9187484527079981056,9187484527079981056,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,9115426933042053120,9115426933042053120,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8971311744966197248,8971311744966197248,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8971311744966197248,8971311744966197248,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,6953699114060120064,6953699114060087296,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620616511062016,8106620616511062016,8683081368814485504,8683081368814485504,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,9187483977324167168,9187483977324167168,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,9115426383286239232,9115426383286239232,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,6953699114051698688,6953699114051698688,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953699111904215040,6953699111904215040,8106620616511062016,8106620616511062016,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,9187483977324167168,9187483977324167168,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,9115426383286239232,9115426383286239232,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953699111904215040,6953699111904215040,6953699111904215040,6953699111904215040,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647855552934707200,4647855552934707200,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9187483977324167168,9187483977324167168,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,9115426383286239232,9115426383286239232,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8971311195210383360,8971311195210383360,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,6953699111904215040,6953699111904215040,6953698562148401152,6953698562148401152,8106620066755248128,8106620066755248128,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106479329266892800,8106479329266892800,8683080819058671616,8683080819058671616,4647855552934707200,4647855552934707200,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,9187483977324167168,9187483977324167168,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,9187343239835811840,9187343239835811840,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,9115426383286239232,9115426383286239232,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,9115285645797883904,9115285645797883904,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8971311195210383360,8971311195210383360,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8971170457722028032,8971170457722028032,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,4647856104846426112,4647856104846393344,4647856104838004736,4647856104838004736,8106479329266892800,8106479329266892800,8682940081570316288,8682940081570316288,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,4647856102690521088,4647856102690521088,4647856102690521088,4647856102690521088,6953698562148401152,6953698562148401152,6953698562148401152,6953698562148401152,4647714815446351872,4647714815446351872,4647714815446351872,4647714815446351872,6953557824660045824,6953557824660045824,6953557824660045824,6953557824660045824,8106620066755248128,8106620066755248128,8683080819058671616,8683080819058671616,0]]} \ No newline at end of file diff --git a/Chess/nimfish/nimfishpkg/tui.nim b/Chess/nimfish/nimfishpkg/tui.nim index 829c244..40feadb 100644 --- a/Chess/nimfish/nimfishpkg/tui.nim +++ b/Chess/nimfish/nimfishpkg/tui.nim @@ -62,7 +62,7 @@ proc perft*(board: Chessboard, ply: int, verbose: bool = false, divide: bool = f for move in moves: if verbose: - let canCastle = board.canCastle(board.position.sideToMove) + let canCastle = board.canCastle() echo &"Ply (from root): {board.position.plyFromRoot}" echo &"Move: {move.startSquare.toAlgebraic()}{move.targetSquare.toAlgebraic()}" echo &"Turn: {board.position.sideToMove}" @@ -91,7 +91,7 @@ proc perft*(board: Chessboard, ply: int, verbose: bool = false, divide: bool = f # Opponent king is in check inc(result.checks) if verbose: - let canCastle = board.canCastle(board.position.sideToMove) + let canCastle = board.canCastle() echo "\n" echo &"Opponent in check: {(if board.inCheck(): \"yes\" else: \"no\")}" echo &"Opponent can castle:\n - King side: {(if canCastle.king: \"yes\" else: \"no\")}\n - Queen side: {(if canCastle.queen: \"yes\" else: \"no\")}" @@ -239,11 +239,9 @@ proc handleMoveCommand(board: Chessboard, command: seq[string]): Move {.discarda var move = createMove(startSquare, targetSquare, flags) let piece = board.getPiece(move.startSquare) if piece.kind == King and move.startSquare == board.position.sideToMove.getKingStartingSquare(): - if move.targetSquare == longCastleKing(piece.color): - move.flags = move.flags or CastleLong.uint16 - elif move.targetSquare == shortCastleKing(piece.color): - move.flags = move.flags or CastleShort.uint16 - if move.targetSquare == board.position.enPassantSquare: + if move.targetSquare in [piece.kingSideCastling(), piece.queenSideCastling()]: + move.flags = move.flags or Castle.uint16 + elif move.targetSquare == board.position.enPassantSquare: move.flags = move.flags or EnPassant.uint16 result = board.makeMove(move) if result == nullMove(): @@ -258,8 +256,11 @@ proc handlePositionCommand(board: var Chessboard, command: seq[string]) = # some error occurs var tempBoard: Chessboard case command[1]: - of "startpos": - tempBoard = newDefaultChessboard() + of "startpos", "kiwipete": + if command[1] == "kiwipete": + tempBoard = newChessboardFromFen("r3k2r/p1ppqpb1/bn2pnp1/3PN3/1p2P3/2N2Q1p/PPPBBPPP/R3K2R w KQkq -") + else: + tempBoard = newDefaultChessboard() if command.len() > 2: let args = command[2].splitWhitespace() if args.len() > 0: @@ -337,18 +338,19 @@ const HELP_TEXT = """Nimfish help menu: - fen [string]: Set the board to the given fen string if one is provided, or print the current position as a FEN string if no arguments are given - startpos: Set the board to the starting position + - kiwipete: Set the board to famous kiwipete position - pretty: Pretty-print the current position - print: Print the current position using ASCII characters only Options: - moves {moveList}: Perform the given moves (space-separated, all-lowercase) in algebraic notation after the position is loaded. This option only applies - to the "startpos" and "fen" subcommands: it is ignored otherwise + to the subcommands that set a position, it is ignored otherwise Examples: - position startpos - position fen "..." moves a2a3 a7a6 - clear: Clear the screen - move : Perform the given move in algebraic notation - - castle: Print castlingRights rights for each side + - castle: Print castling rights for the side to move - check: Print if the current side to move is in check - unmove, u: Unmakes the last move. Can be used in succession - stm: Print which side is to move @@ -358,7 +360,8 @@ const HELP_TEXT = """Nimfish help menu: - fen: Shorthand for "position fen" - pos : Shorthand for "position " - get : Get the piece on the given square - - atk : Print the attack bitboard of the given square for the side to move + - def : Print the attack bitboard of the given square for the side to move + - atk : Print the attack bitboard of the given square for the opponent side - pins: Print the current pin mask - checks: Print the current checks mask - skip: Swap the side to move @@ -412,12 +415,21 @@ proc commandLoop*: int = board.unmakeMove() of "stm": echo &"Side to move: {board.position.sideToMove}" + of "def": + if len(cmd) != 2: + echo "error: def: invalid number of arguments" + continue + try: + echo board.getAttacksTo(cmd[1].toSquare(), board.position.sideToMove) + except ValueError: + echo "error: def: invalid square" + continue of "atk": if len(cmd) != 2: echo "error: atk: invalid number of arguments" continue try: - echo board.getAttacksTo(cmd[1].toSquare(), board.position.sideToMove) + echo board.getAttacksTo(cmd[1].toSquare(), board.position.sideToMove.opposite()) except ValueError: echo "error: atk: invalid square" continue @@ -437,13 +449,15 @@ proc commandLoop*: int = echo "error: get: invalid square" continue of "castle": - let canCastle = board.canCastle(board.position.sideToMove) + let canCastle = board.canCastle() echo &"Castling rights for {($board.position.sideToMove).toLowerAscii()}:\n - King side: {(if canCastle.king: \"yes\" else: \"no\")}\n - Queen side: {(if canCastle.queen: \"yes\" else: \"no\")}" of "check": echo &"{board.position.sideToMove} king in check: {(if board.inCheck(): \"yes\" else: \"no\")}" of "pins": - echo &"Ortogonal pins:\n{board.position.orthogonalPins}" - echo &"Diagonal pins:\n{board.position.diagonalPins}" + if board.position.orthogonalPins != 0: + echo &"Orthogonal pins:\n{board.position.orthogonalPins}" + if board.position.diagonalPins != 0: + echo &"Diagonal pins:\n{board.position.diagonalPins}" of "checks": echo board.position.checkers of "quit": diff --git a/Chess/tests/compare_positions.py b/Chess/tests/compare_positions.py index 59e4d7c..870af83 100644 --- a/Chess/tests/compare_positions.py +++ b/Chess/tests/compare_positions.py @@ -19,7 +19,7 @@ def main(args: Namespace) -> int: print(f"Could not locate stockfish executable -> {type(e).__name__}: {e}") return 2 try: - NIMFISH = (args.nimfish or (Path.cwd() / "bin" / "nimfish")).resolve(strict=True) + NIMFISH = (args.nimfish or Path(which("nimfish"))).resolve(strict=True) except Exception as e: print(f"Could not locate nimfish executable -> {type(e).__name__}: {e}") return 2 @@ -166,4 +166,7 @@ if __name__ == "__main__": parser.add_argument("--stockfish", type=Path, help="Path to the stockfish executable. Defaults to '' (detected automatically)", default=None) parser.add_argument("--nimfish", type=Path, help="Path to the nimfish executable. Defaults to '' (detected automatically)", default=None) parser.add_argument("--silent", action="store_true", help="Disable all output (a return code of 0 means the test was successful)", default=False) - sys.exit(main(parser.parse_args())) \ No newline at end of file + try: + sys.exit(main(parser.parse_args())) + except KeyboardInterrupt: + sys.exit(255) diff --git a/Chess/tests/positions.txt b/Chess/tests/positions.txt index b47c93f..f301b17 100644 --- a/Chess/tests/positions.txt +++ b/Chess/tests/positions.txt @@ -1,3 +1,6 @@ +1B6/8/8/8/5pP1/8/7k/4K3 b - g3 0 1 +1k6/8/8/8/4Pp2/8/7B/4K3 b - e3 0 1 +1k6/8/8/8/5pP1/8/7B/4K3 b - g3 0 1 1r2k2r/8/8/8/8/8/8/R3K2R b KQk - 0 1 1r2k2r/8/8/8/8/8/8/R3K2R w KQk - 0 1 2K2r2/4P3/8/8/8/8/8/3k4 w - - 0 1 @@ -14,21 +17,56 @@ 4k2r/8/8/8/8/8/8/4K3 b k - 0 1 4k2r/8/8/8/8/8/8/4K3 w k - 0 1 4k3/1P6/8/8/8/8/K7/8 w - - 0 1 +4k3/2rn4/8/2K1pP2/8/8/8/8 w - e6 0 1 4k3/4p3/4K3/8/8/8/8/8 b - - 0 1 +4k3/7K/8/5Pp1/8/8/8/1b6 w - g6 0 1 +4k3/7b/8/4pP2/4K3/8/8/8 w - e6 0 1 +4k3/7b/8/4pP2/8/8/8/1K6 w - e6 0 1 +4k3/7b/8/5Pp1/8/8/8/1K6 w - g6 0 1 +4k3/8/1b6/2Pp4/3K4/8/8/8 w - d6 0 1 +4k3/8/3K4/1pP5/8/q7/8/8 w - b6 0 1 +4k3/8/4q3/8/8/8/3b4/4K3 w - - 0 1 +4k3/8/4r3/8/8/8/3p4/4K3 w - - 0 1 +4k3/8/6b1/4pP2/4K3/8/8/8 w - e6 0 1 +4k3/8/7b/5pP1/5K2/8/8/8 w - f6 0 1 +4k3/8/8/2PpP3/8/8/8/4K3 w - d6 0 1 +4k3/8/8/4pP2/3K4/8/8/8 w - e6 0 1 +4k3/8/8/8/1b2r3/8/3Q4/4K3 w - - 0 1 +4k3/8/8/8/1b2r3/8/3QP3/4K3 w - - 0 1 +4k3/8/8/8/1b5b/2Q5/5P2/4K3 w - - 0 1 +4k3/8/8/8/1b5b/2R5/5P2/4K3 w - - 0 1 +4k3/8/8/8/1b5b/8/3Q4/4K3 w - - 0 1 +4k3/8/8/8/1b5b/8/3R4/4K3 w - - 0 1 +4k3/8/8/8/2pPp3/8/8/4K3 b - d3 0 1 4k3/8/8/8/8/8/8/4K2R b K - 0 1 4k3/8/8/8/8/8/8/4K2R w K - 0 1 4k3/8/8/8/8/8/8/R3K2R b KQ - 0 1 4k3/8/8/8/8/8/8/R3K2R w KQ - 0 1 4k3/8/8/8/8/8/8/R3K3 b Q - 0 1 4k3/8/8/8/8/8/8/R3K3 w Q - 0 1 +4k3/8/8/K2pP2q/8/8/8/8 w - d6 0 1 +4k3/8/8/K2pP2r/8/8/8/8 w - d6 0 1 +4k3/8/8/q2pP2K/8/8/8/8 w - d6 0 1 +4k3/8/8/r2pP2K/8/8/8/8 w - d6 0 1 +4k3/8/K6q/3pP3/8/8/8/8 w - d6 0 1 +4k3/8/K6r/3pP3/8/8/8/8 w - d6 0 1 +4k3/8/b7/1Pp5/2K5/8/8/8 w - c6 0 1 +4k3/K7/8/1pP5/8/8/8/6b1 w - b6 0 1 +4k3/b7/8/1pP5/8/8/8/6K1 w - b6 0 1 +4k3/b7/8/2Pp4/3K4/8/8/8 w - d6 0 1 +4k3/b7/8/2Pp4/8/8/8/6K1 w - d6 0 1 5k2/8/8/8/8/8/8/4K2R w K - 0 1 +6B1/8/8/8/1Pp5/8/k7/4K3 b - b3 0 1 6KQ/8/8/8/8/8/8/7k b - - 0 1 +6k1/8/8/8/1Pp5/8/B7/4K3 b - b3 0 1 +6k1/8/8/8/2pP4/8/B7/3K4 b - d3 0 1 6kq/8/8/8/8/8/8/7K w - - 0 1 6qk/8/8/8/8/8/8/7K b - - 0 1 -7k/3p4/8/8/3P4/8/8/K7 b - - 0 1 -7k/3p4/8/8/3P4/8/8/K7 w - - 0 1 7K/7p/7k/8/8/8/8/8 b - - 0 1 7K/7p/7k/8/8/8/8/8 w - - 0 1 +7k/3p4/8/8/3P4/8/8/K7 b - - 0 1 +7k/3p4/8/8/3P4/8/8/K7 w - - 0 1 +7k/4K3/8/1pP5/8/q7/8/8 w - b6 0 1 7k/8/1p6/8/8/P7/8/7K b - - 0 1 7k/8/1p6/8/8/P7/8/7K w - - 0 1 7k/8/8/1p6/P7/8/8/7K b - - 0 1 @@ -52,8 +90,8 @@ 8/3k4/3p4/8/3P4/3K4/8/8 w - - 0 1 8/8/1B6/7b/7k/8/2B1b3/7K b - - 0 1 8/8/1B6/7b/7k/8/2B1b3/7K w - - 0 1 -8/8/1k6/2b5/2pP4/8/5K2/8 b - d3 0 1 8/8/1P2K3/8/2n5/1q6/8/5k2 b - - 0 1 +8/8/1k6/2b5/2pP4/8/5K2/8 b - d3 0 1 8/8/2k5/5q2/5n2/8/5K2/8 b - - 0 1 8/8/3K4/3Nn3/3nN3/4k3/8/8 b - - 0 1 8/8/3k4/3p4/3P4/3K4/8/8 b - - 0 1 @@ -65,6 +103,11 @@ 8/8/7k/7p/7P/7K/8/8 b - - 0 1 8/8/7k/7p/7P/7K/8/8 w - - 0 1 8/8/8/2k5/2pP4/8/B7/4K3 b - d3 0 3 +8/8/8/4k3/5Pp1/8/8/3K4 b - f3 0 1 +8/8/8/8/1R1Pp2k/8/8/4K3 b - d3 0 1 +8/8/8/8/1k1Pp2R/8/8/4K3 b - d3 0 1 +8/8/8/8/1k1PpN1R/8/8/4K3 b - d3 0 1 +8/8/8/8/1k1Ppn1R/8/8/4K3 b - d3 0 1 8/8/8/8/8/4k3/4P3/4K3 w - - 0 1 8/8/8/8/8/7K/7P/7k b - - 0 1 8/8/8/8/8/7K/7P/7k w - - 0 1 @@ -76,45 +119,49 @@ 8/8/8/8/8/K7/P7/k7 w - - 0 1 8/8/k7/p7/P7/K7/8/8 b - - 0 1 8/8/k7/p7/P7/K7/8/8 w - - 0 1 -8/k1P5/8/1K6/8/8/8/8 w - - 0 1 8/P1k5/K7/8/8/8/8/8 w - - 0 1 -8/Pk6/8/8/8/8/6Kp/8 b - - 0 1 -8/Pk6/8/8/8/8/6Kp/8 w - - 0 1 8/PPPk4/8/8/8/8/4Kppp/8 b - - 0 1 8/PPPk4/8/8/8/8/4Kppp/8 w - - 0 1 +8/Pk6/8/8/8/8/6Kp/8 b - - 0 1 +8/Pk6/8/8/8/8/6Kp/8 w - - 0 1 +8/k1P5/8/1K6/8/8/8/8 w - - 0 1 B6b/8/8/8/2K5/4k3/8/b6B w - - 0 1 B6b/8/8/8/2K5/5k2/8/b6B b - - 0 1 K1k5/8/P7/8/8/8/8/8 w - - 0 1 +K7/8/2n5/1n6/8/8/8/k6N b - - 0 1 +K7/8/2n5/1n6/8/8/8/k6N w - - 0 1 +K7/8/8/3Q4/4q3/8/8/7k b - - 0 1 +K7/8/8/3Q4/4q3/8/8/7k w - - 0 1 +K7/b7/1b6/1b6/8/8/8/k6B b - - 0 1 +K7/b7/1b6/1b6/8/8/8/k6B w - - 0 1 +K7/p7/k7/8/8/8/8/8 b - - 0 1 +K7/p7/k7/8/8/8/8/8 w - - 0 1 +R6r/8/8/2K5/5k2/8/8/r6R b - - 0 1 +R6r/8/8/2K5/5k2/8/8/r6R w - - 0 1 +k3K3/8/8/3pP3/8/8/8/4r3 w - d6 0 1 k7/6p1/8/8/8/8/7P/K7 b - - 0 1 k7/6p1/8/8/8/8/7P/K7 w - - 0 1 k7/7p/8/8/8/8/6P1/K7 b - - 0 1 k7/7p/8/8/8/8/6P1/K7 w - - 0 1 -K7/8/2n5/1n6/8/8/8/k6N b - - 0 1 k7/8/2N5/1N6/8/8/8/K6n b - - 0 1 -K7/8/2n5/1n6/8/8/8/k6N w - - 0 1 k7/8/2N5/1N6/8/8/8/K6n w - - 0 1 k7/8/3p4/8/3P4/8/8/7K b - - 0 1 k7/8/3p4/8/3P4/8/8/7K w - - 0 1 k7/8/3p4/8/8/4P3/8/7K b - - 0 1 k7/8/3p4/8/8/4P3/8/7K w - - 0 1 +k7/8/4r3/3pP3/8/8/8/4K3 w - d6 0 1 k7/8/6p1/8/8/7P/8/K7 b - - 0 1 k7/8/6p1/8/8/7P/8/K7 w - - 0 1 k7/8/7p/8/8/6P1/8/K7 b - - 0 1 k7/8/7p/8/8/6P1/8/K7 w - - 0 1 k7/8/8/3p4/4p3/8/8/7K b - - 0 1 k7/8/8/3p4/4p3/8/8/7K w - - 0 1 -K7/8/8/3Q4/4q3/8/8/7k b - - 0 1 -K7/8/8/3Q4/4q3/8/8/7k w - - 0 1 k7/8/8/6p1/7P/8/8/K7 b - - 0 1 k7/8/8/6p1/7P/8/8/K7 w - - 0 1 k7/8/8/7p/6P1/8/8/K7 b - - 0 1 k7/8/8/7p/6P1/8/8/K7 w - - 0 1 k7/B7/1B6/1B6/8/8/8/K6b b - - 0 1 -K7/b7/1b6/1b6/8/8/8/k6B b - - 0 1 k7/B7/1B6/1B6/8/8/8/K6b w - - 0 1 -K7/b7/1b6/1b6/8/8/8/k6B w - - 0 1 -K7/p7/k7/8/8/8/8/8 b - - 0 1 -K7/p7/k7/8/8/8/8/8 w - - 0 1 n1n5/1Pk5/8/8/8/8/5Kp1/5N1N b - - 0 1 n1n5/1Pk5/8/8/8/8/5Kp1/5N1N w - - 0 1 n1n5/PPPk4/8/8/8/8/4Kppp/5N1N b - - 0 1 @@ -142,8 +189,6 @@ r3k3/8/8/8/8/8/8/4K3 b q - 0 1 r3k3/8/8/8/8/8/8/4K3 w q - 0 1 r4rk1/1pp1qppp/p1np1n2/2b1p1B1/2B1P1b1/P1NP1N2/1PP1QPPP/R4RK1 w - - 0 10 r6r/1b2k1bq/8/8/7B/8/8/R3K2R b KQ - 3 2 -R6r/8/8/2K5/5k2/8/8/r6R b - - 0 1 -R6r/8/8/2K5/5k2/8/8/r6R w - - 0 1 rnb2k1r/pp1Pbppp/2p5/q7/2B5/8/PPPQNnPP/RNB1K2R w KQ - 3 9 rnbq1k1r/pp1Pbppp/2p5/8/2B5/8/PPP1NnPP/RNBQK2R w KQ - 1 8 rnbqkb1r/ppppp1pp/7n/4Pp2/8/8/PPPP1PPP/RNBQKBNR w KQkq f6 0 3 diff --git a/Chess/tests/suite.py b/Chess/tests/suite.py index 877e9a1..f1a5650 100644 --- a/Chess/tests/suite.py +++ b/Chess/tests/suite.py @@ -3,31 +3,62 @@ import timeit from pathlib import Path from argparse import Namespace, ArgumentParser from compare_positions import main as test - +from concurrent.futures import ThreadPoolExecutor, as_completed +from multiprocessing import cpu_count +from copy import deepcopy def main(args: Namespace) -> int: - print("[S] Starting test suite") + # We try to be polite with resource usage + if not args.parallel: + print("[S] Starting test suite") + else: + print(f"[S] Starting test suite with {args.workers} workers") successful = [] failed = [] positions = args.positions.read_text().splitlines() - start = timeit.default_timer() longest_fen = max(sorted([len(fen) for fen in positions])) - for i, fen in enumerate(positions): - fen = fen.strip(" ") - fen += " " * (longest_fen - len(fen)) - sys.stdout.write(f"\r[S] Testing {fen} ({i + 1}/{len(positions)})\033[K") - args.fen = fen - args.silent = not args.no_silent - if test(args) == 0: - successful.append(fen) + start = timeit.default_timer() + if not args.parallel: + for i, fen in enumerate(positions): + fen = fen.strip(" ") + fen += " " * (longest_fen - len(fen)) + sys.stdout.write(f"\r[S] Testing {fen} ({i + 1}/{len(positions)})\033[K") + args.fen = fen + args.silent = not args.no_silent + if test(args) == 0: + successful.append(fen) + else: + failed.append(fen) + else: + # There is no compute going on in the Python thread, + # it's just I/O waiting for the processes to finish, + # so using a thread as opposed to a process doesn't + # make much different w.r.t. the GIL (and threads are + # cheaper than processes on some platforms) + futures = {} + try: + pool = ThreadPoolExecutor(args.workers) + for fen in positions: + args = deepcopy(args) + args.fen = fen.strip(" ") + args.silent = not args.no_silent + futures[pool.submit(test, args)] = args.fen + for i, future in enumerate(as_completed(futures)): + sys.stdout.write(f"\r[S] Testing in progress ({i + 1}/{len(positions)})\033[K") + if future.result() == 0: + successful.append(futures[future]) + else: + failed.append(futures[future]) + except KeyboardInterrupt: + pool.shutdown(cancel_futures=True) + print(f"\r[S] Interrupted\033[K") else: - failed.append(fen) - stop = timeit.default_timer() - print(f"\r[S] Ran {len(positions)} tests at depth {args.ply} in {stop - start:.2f} seconds ({len(successful)} successful, {len(failed)} failed)\033[K") - if failed and args.show_failures: - print("[S] The following FENs failed to pass the test:", end="") - print("\n\t".join(failed)) + stop = timeit.default_timer() + print(f"\r[S] Ran {len(positions)} tests at depth {args.ply} in {stop - start:.2f} seconds ({len(successful)} successful, {len(failed)} failed)\033[K") + if failed and args.show_failures: + print("[S] The following FENs failed to pass the test:", end="") + print("\n\t".join(failed)) if __name__ == "__main__": @@ -38,6 +69,11 @@ if __name__ == "__main__": parser.add_argument("--nimfish", type=Path, help="Path to the nimfish executable. Defaults to '' (detected automatically)", default=None) parser.add_argument("--positions", type=Path, help="Location of the file containing FENs to test, one per line. Defaults to 'tests/positions.txt'", default=Path("tests/positions.txt")) - parser.add_argument("--no-silent", action="store_true", help="Do not suppress output from compare_positions.py (defaults)", default=False) + parser.add_argument("--no-silent", action="store_true", help="Do not suppress output from compare_positions.py (defaults to False)", default=False) + parser.add_argument("-p", "--parallel", action="store_true", help="Run multiple tests in parallel", default=False) + parser.add_argument("--workers", "-w", type=int, required=False, help="How many workers to use in parallel mode (defaults to cpu_count() / 2)", default=cpu_count() // 2) parser.add_argument("--show-failures", action="store_true", help="Show which FENs failed to pass the test", default=False) - sys.exit(main(parser.parse_args())) \ No newline at end of file + try: + sys.exit(main(parser.parse_args())) + except KeyboardInterrupt: + sys.exit(255) \ No newline at end of file