ETH Price: $3,639.03 (+0.71%)
Gas: 9.19 Gwei
 

Overview

Max Total Supply

100 T-T

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
krick-cold.eth
Balance
1 T-T
0xdc01a8bd0a61d72da5128ef08582f82df0a0078c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Transition

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Transition.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.15;

import "./ERC721A.sol";
import "./TransitionAuctionHouse.sol";

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = sqrt(a);
            return
                result +
                (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log2(value);
            return
                result +
                (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log10(value);
            return
                result +
                (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding)
        internal
        pure
        returns (uint256)
    {
        unchecked {
            uint256 result = log256(value);
            return
                result +
                (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// #################################################
// #################################################
//
//                 THE TRANSITION
//
// #################################################
// #################################################

contract Transition is ERC721A {
    struct BlockData {
        uint256 chainId;
        uint256 blockNumber;
        uint256 timestamp;
        address feeRecipient;
        uint256 difficulty;
        uint256 baseFee;
    }
    BlockData public blockdata;

    address public deployer;
    uint256 public _totalSupply = 100;
    address public auctionHouse = 0x953Fc389a59d1FeC79e83A93891CD954552E2F5a;

    constructor() ERC721A("The Transition", "T-T") {
        deployer = msg.sender;
        _prime(auctionHouse, _totalSupply);
        blockdata = BlockData(block.chainid, 1, 1, auctionHouse, 1, 1);
    }

    /**
     * @dev Mints the collection
     * @param _blockNumber Block Number at which we want to mint
     */
    function mint(uint256 _blockNumber) public {
        require(block.number == _blockNumber);
        require(deployer == msg.sender);
        require(block.difficulty > 2**64 || block.difficulty == 0);
        require(blockdata.blockNumber == 1);

        blockdata.blockNumber = block.number;
        blockdata.timestamp = block.timestamp;
        blockdata.feeRecipient = block.coinbase;
        blockdata.difficulty = block.difficulty;
        blockdata.baseFee = block.basefee;

        _mintERC2309(auctionHouse, _totalSupply);
    }

    /**
     * @dev A distinct URI (RFC 3986) for a given NFT.
     * @param _tokenId Id for which we want uri.
     * @return URI of _tokenId.
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist");
        return draw(_tokenId);
    }

    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     */
    function burn(uint256 _tokenId) public {
        require(_exists(_tokenId));
        require(msg.sender == ownerOf(_tokenId));
        _burn(_tokenId);
    }

    /**
     * @dev Helper function for draw(uint256)
     */
    function getspan(
        string memory x,
        string memory y,
        string memory fontsize,
        bool preserve,
        string memory c
    ) public pure returns (string memory) {
        string memory preserves = 'xml:space="preserve" ';
        if (!preserve) {
            preserves = "";
        }

        string memory tspan = string.concat(
            '<tspan x="',
            x,
            '" ',
            'y="',
            y,
            '" ',
            preserves,
            'font-size="',
            fontsize,
            '">',
            c,
            "</tspan>"
        );

        return tspan;
    }

    /**
     * @dev Renders art corresponding to _tokenId
     */
    function draw(uint256 _tokenId)
        public
        view
        virtual
        returns (string memory)
    {
        string[58] memory parts;
        uint256 i = 0;
        parts[
            i++
        ] = '<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080"><rect width="1920" height="1080" fill="black" />';
        parts[
            i++
        ] = '<text x="320" y="60" fill="white" font-family="Courier New, Courier, monospace" font-size="24px">';

        // Panda
        parts[i++] = getspan(
            "1300",
            "122",
            "x-small",
            true,
            "         .%%%%.                                               .%HHHHHH*"
        );
        parts[i++] = getspan(
            "1300",
            "134",
            "x-small",
            true,
            "     %HHHHHHHHHHHHHHH%       .HHHHHHHHHHHHHHHHHHHHH%     .%HHHHHHHHHHHHHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "146",
            "x-small",
            true,
            "   HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "158",
            "x-small",
            true,
            " MHHHHHHHHHHHHHHHHHHHHHHHHHH*                        /HHHHHHHHHHHHHHHHHHHHHHHHHM"
        );
        parts[i++] = getspan(
            "1300",
            "170",
            "x-small",
            true,
            " HHHHHHHHHHHHHHHHHHHHHH                                    HHHHHHHHHHHHHHHHHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "182",
            "x-small",
            true,
            " HHHHHHHHHHHHHHHHHH                                            HHHHHHHHHHHHHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "194",
            "x-small",
            true,
            " HHHHHHHHHHHHHHH*                                                HHHHHHHHHHHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "206",
            "x-small",
            true,
            "  HHHHHHHHHHHH                                                     /HHHHHHHHHHH "
        );
        parts[i++] = getspan(
            "1300",
            "218",
            "x-small",
            true,
            "   HHHHHHHHH(                                                        @HHHHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "230",
            "x-small",
            true,
            "    HHHHHHH                                                            HHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "242",
            "x-small",
            true,
            "     HHHHH                                                              HHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "254",
            "x-small",
            true,
            "    HHHHH                                                                HHHHM"
        );
        parts[i++] = getspan(
            "1300",
            "266",
            "x-small",
            true,
            "   *HHHH            HHHHHHHHHH                    HHHHHHHHHHHHH           HHHH"
        );
        parts[i++] = getspan(
            "1300",
            "278",
            "x-small",
            true,
            "   HHHH*        HHHHHHHHHHHHHHHHH              MHHHHHHHHHHHHHHHHHH        %HHHH"
        );
        parts[i++] = getspan(
            "1300",
            "290",
            "x-small",
            true,
            "   HHHH      MHHHHHHHHH       HHHH            HHHHHH      @HHHHHHHHH@      HHHH"
        );
        parts[i++] = getspan(
            "1300",
            "302",
            "x-small",
            true,
            "  (HHHH    (HHHHHHHHHH.       HHHHM           HHHHH        HHHHHHHHHHHH    HHHH."
        );
        parts[i++] = getspan(
            "1300",
            "314",
            "x-small",
            true,
            "  %HHHH   HHHHHHHHHHHHHM     HHHHH             HHHHH      HHHHHHHHHHHHHH   HHHH/"
        );
        parts[i++] = getspan(
            "1300",
            "326",
            "x-small",
            true,
            "  MHHHH  .HHHHHHHHHHHHHHHHHHHHHHH               HHHHHHHHHHHHHHHHHHHHHHHH/  HHHH*"
        );
        parts[i++] = getspan(
            "1300",
            "338",
            "x-small",
            true,
            "  ,HHHH  %HHHHHHHHHHHHHHHHHHHHH      HHHHHHHM    ,HHHHHHHHHHHHHHHHHHHHHH@  HHHH"
        );
        parts[i++] = getspan(
            "1300",
            "350",
            "x-small",
            true,
            "   HHHH. .HHHHHHHHHHHHHHHHHHH      HHHHHHHHHHHH     HHHHHHHHHHHHHHHHHHHH( /HHHH"
        );
        parts[i++] = getspan(
            "1300",
            "362",
            "x-small",
            true,
            "   (HHHH  (HHHHHHHHHHHHHHHH       .HHHHHHHHHHHH       HHHHHHHHHHHHHHHHHH  HHHH,"
        );
        parts[i++] = getspan(
            "1300",
            "374",
            "x-small",
            true,
            "    HHHHH   @HHHHHHHHHHH%           HHHHHHHHH           HHHHHHHHHHHHHH   HHHH%"
        );
        parts[i++] = getspan(
            "1300",
            "386",
            "x-small",
            true,
            "     HHHHH     HHHHHHH                                      HHHHHHH     HHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "398",
            "x-small",
            true,
            "      MHHHH@                   %HHH           (HHH                    HHHHH."
        );
        parts[i++] = getspan(
            "1300",
            "410",
            "x-small",
            true,
            "        HHHHHH                   ,HHHHHHHHHHHHHH                    HHHHHH"
        );
        parts[i++] = getspan(
            "1300",
            "422",
            "x-small",
            true,
            "          %HHHHHH                                               ,HHHHHH("
        );
        parts[i++] = getspan(
            "1300",
            "434",
            "x-small",
            true,
            "             %HHHHHHH@                                      HHHHHHHHM"
        );
        parts[i++] = getspan(
            "1300",
            "446",
            "x-small",
            true,
            "                 HHHHHHHHHHHH*                      (HHHHHHHHHHH%"
        );
        parts[i++] = getspan(
            "1300",
            "458",
            "x-small",
            true,
            "                      (HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH*"
        );
        parts[i++] = getspan(
            "1300",
            "470",
            "x-small",
            true,
            "                               .M%HHHHHHHHHHHHHH%*."
        );

        // Metadata Labels
        parts[i++] = getspan("100", "650", "2em", false, "The Transition");
        parts[i++] = getspan(
            "100",
            "710",
            "1.5em",
            false,
            "Non-Fungible Ethereum Merge Token"
        );
        parts[i++] = getspan(
            "100",
            "755",
            "larger",
            true,
            "Edition           / 100"
        );
        parts[i++] = getspan("100", "795", "larger", true, "Chain ID      :");
        parts[i++] = getspan("100", "835", "larger", true, "Block Number  :");
        parts[i++] = getspan("100", "875", "larger", true, "Timestamp     :");
        parts[i++] = getspan("100", "915", "larger", true, "Fee Recipient :");
        parts[i++] = getspan("100", "955", "larger", true, "Difficulty    :");
        parts[i++] = getspan("100", "995", "larger", true, "Base Fee      :");

        // metadata values
        parts[i++] = getspan(
            "340",
            "755",
            "larger",
            false,
            Strings.toString(_tokenId + 1)
        );
        parts[i++] = getspan(
            "400",
            "795",
            "larger",
            false,
            Strings.toString(blockdata.chainId)
        );
        parts[i++] = getspan(
            "400",
            "835",
            "larger",
            false,
            Strings.toString(blockdata.blockNumber)
        );
        parts[i++] = getspan(
            "400",
            "875",
            "larger",
            false,
            Strings.toString(blockdata.timestamp)
        );
        parts[i++] = getspan(
            "400",
            "915",
            "larger",
            false,
            Strings.toHexString(blockdata.feeRecipient)
        );
        parts[i++] = getspan(
            "400",
            "955",
            "larger",
            false,
            Strings.toString(blockdata.difficulty)
        );
        parts[i++] = getspan(
            "400",
            "995",
            "larger",
            false,
            Strings.toString(blockdata.baseFee)
        );
        parts[i++] = "</text></svg>";

        string memory art = string(
            abi.encodePacked(
                parts[0],
                parts[1],
                parts[2],
                parts[3],
                parts[4],
                parts[5],
                parts[6],
                parts[7],
                parts[8]
            )
        );
        art = string(
            abi.encodePacked(
                art,
                parts[9],
                parts[10],
                parts[11],
                parts[12],
                parts[13],
                parts[14],
                parts[15],
                parts[16]
            )
        );
        art = string(
            abi.encodePacked(
                art,
                parts[17],
                parts[18],
                parts[19],
                parts[20],
                parts[21],
                parts[22],
                parts[23],
                parts[24]
            )
        );
        art = string(
            abi.encodePacked(
                art,
                parts[25],
                parts[26],
                parts[27],
                parts[28],
                parts[29],
                parts[30],
                parts[31],
                parts[32]
            )
        );
        art = string(
            abi.encodePacked(
                art,
                parts[33],
                parts[34],
                parts[35],
                parts[36],
                parts[37],
                parts[38],
                parts[39],
                parts[40]
            )
        );
        art = string(
            abi.encodePacked(
                art,
                parts[41],
                parts[42],
                parts[43],
                parts[44],
                parts[45],
                parts[46],
                parts[47],
                parts[48]
            )
        );
        art = string(
            abi.encodePacked(
                art,
                parts[49],
                parts[50],
                parts[51],
                parts[52],
                parts[53],
                parts[54],
                parts[55],
                parts[56]
            )
        );
        string memory output = string(abi.encodePacked(art, parts[57]));
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "The Transition #',
                        Strings.toString(_tokenId + 1),
                        '", "description": "A Non-Fungible Ethereum Merge Token.", "external_url": "https://thetransition.wtf", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(output)),
                        '"}'
                    )
                )
            )
        );
        return string(abi.encodePacked("data:application/json;base64,", json));
    }
}

File 2 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "./IERC721A.sol";

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return
            (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) &
            _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return
            (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) &
            _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed =
            (packed & _BITMASK_AUX_COMPLEMENT) |
            (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length != 0
                ? string(abi.encodePacked(baseURI, _toString(tokenId)))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        virtual
        returns (TokenOwnership memory)
    {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index)
        internal
        view
        virtual
        returns (TokenOwnership memory)
    {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId)
        private
        view
        returns (uint256)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed)
        private
        pure
        returns (TokenOwnership memory ownership)
    {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags)
        private
        view
        returns (uint256 result)
    {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(
                owner,
                or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)
            )
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity)
        private
        pure
        returns (uint256 result)
    {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId)
        public
        payable
        virtual
        override
    {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from)
            revert TransferFromIncorrectOwner();

        (
            uint256 approvedAddressSlot,
            address approvedAddress
        ) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (
            !_isSenderApprovedOrOwner(
                approvedAddress,
                from,
                _msgSenderERC721A()
            )
        )
            if (!isApprovedForAll(from, _msgSenderERC721A()))
                revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED |
                    _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            ERC721A__IERC721Receiver(to).onERC721Received(
                _msgSenderERC721A(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return
                retval ==
                ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev 
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     */
    function _prime(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert PrimeZeroQuantity();
        unchecked {
            _packedAddressData[to] = 1;
            _packedOwnerships[startTokenId] = 1;
        }
    }


    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] +=
                quantity *
                ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) |
                    _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT)
            revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] =
                quantity *
                ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) |
                    _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(
                startTokenId,
                startTokenId + quantity - 1,
                address(0),
                to
            );

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            index++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, "");
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (
            uint256 approvedAddressSlot,
            address approvedAddress
        ) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (
                !_isSenderApprovedOrOwner(
                    approvedAddress,
                    from,
                    _msgSenderERC721A()
                )
            )
                if (!isApprovedForAll(from, _msgSenderERC721A()))
                    revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) |
                    _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed =
            (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) |
            (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value)
        internal
        pure
        virtual
        returns (string memory str)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 3 of 8 : TransitionAuctionHouse.sol
// SPDX-License-Identifier: GPL-3.0

// LICENSE
//
// TransitionAuctionHouse.sol is a modified version of Zora's AuctionHouse.sol:
// https://github.com/ourzora/auction-house/blob/54a12ec1a6cf562e49f0a4917990474b11350a2d/contracts/AuctionHouse.sol
//
// TransitionAuctionHouse.sol source code Copyright Zora licensed under the GPL-3.0 license.

pragma solidity ^0.8.6;

import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {ITransitionAuctionHouse} from "./ITransitionAuctionHouse.sol";

import {Transition} from "./Transition.sol";
import {IWETH} from "./IWETH.sol";

// #################################################
// #################################################
//
//         THE TRANSITION AUCTION HOUSE
//
// #################################################
// #################################################

contract TransitionAuctionHouse is ITransitionAuctionHouse, ReentrancyGuard {
    address payable public deployer;
    Transition public transition;
    bool transitionFinalized;
    ITransitionAuctionHouse.Auction public auction;

    address public weth;
    uint256 public timeBuffer;
    uint256 public reservePrice;
    uint8 public minBidIncrementPercentage;
    uint256 public duration;

    uint256 public tokenId = 99;
    bool public started = false;
    bool public done = false;

    address public vitalik = 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045;
    address public ethFoundation = 0xde0B295669a9FD93d5F28D9Ec85E40f4cb697BAe;
    bool public vitalikOrEFClaimed = false;

    constructor(
        address _weth,
        uint256 _timeBuffer,
        uint256 _reservePrice,
        uint8 _minBidIncrementPercentage,
        uint256 _duration
    ) {
        deployer = payable(msg.sender);
        weth = _weth;
        timeBuffer = _timeBuffer;
        reservePrice = _reservePrice;
        minBidIncrementPercentage = _minBidIncrementPercentage;
        duration = _duration;
    }

    /**
     * @dev Vitalik and the Ethereum Foundation can claim all un-auctioned NFTs
     */
    function vitalikOrEthFoundationSpecialClaim() public {
        require(msg.sender == vitalik || msg.sender == ethFoundation);
        require(
            vitalikOrEFClaimed == false && done == false && started == true
        );

        vitalikOrEFClaimed = true;
        done = true;

        for (uint256 id = 0; id <= tokenId - 1; id++) {
            transition.transferFrom(address(this), msg.sender, id);
        }
    }

    /**
     * @dev Settle the current auction, and begin next auction
     */
    function settleCurrentAndCreateNewAuction() external override nonReentrant {
        if (started == false) {
            require(transition.balanceOf(address(this)) == 100);
            started = true;
            _createAuction();
            return;
        }

        _settleAuction();
        _createAuction();
    }

    /**
     * @dev Create a bid for a Noun, with a given amount.
     * This contract only accepts payment in ETH.
     */
    function createBid(uint256 transitionId)
        external
        payable
        override
        nonReentrant
    {
        ITransitionAuctionHouse.Auction memory _auction = auction;

        require(
            _auction.transitionId == transitionId,
            "Transition ID not up for auction"
        );
        require(block.timestamp < _auction.endTime, "Auction expired");
        require(msg.value >= reservePrice, "Must send at least reservePrice");
        require(
            msg.value >=
                _auction.amount +
                    ((_auction.amount * minBidIncrementPercentage) / 100),
            "Must send more than last bid by minBidIncrementPercentage amount"
        );

        address payable lastBidder = _auction.bidder;

        if (lastBidder != address(0)) {
            _safeTransferETHWithFallback(lastBidder, _auction.amount);
        }

        auction.amount = msg.value;
        auction.bidder = payable(msg.sender);

        bool extended = _auction.endTime - block.timestamp < timeBuffer;
        if (extended) {
            auction.endTime = _auction.endTime = block.timestamp + timeBuffer;
        }

        emit AuctionBid(_auction.transitionId, msg.sender, msg.value, extended);

        if (extended) {
            emit AuctionExtended(_auction.transitionId, _auction.endTime);
        }
    }

    /**
     * @dev Set Transition token address.
     */
    function setTransition(Transition _transition) public {
        require(msg.sender == deployer);
        require(!transitionFinalized);
        transition = _transition;
        transitionFinalized = true;
    }

    /**
     * @dev Create an auction.
     * Store the auction details in the `auction` state variable and emit an AuctionCreated event.
     */
    function _createAuction() internal {
        if (done || vitalikOrEFClaimed) {
            return;
        }
        if (tokenId == 0) {
            done = true;
        }

        uint256 startTime = block.timestamp;
        uint256 endTime = startTime + duration;

        auction = Auction({
            transitionId: tokenId,
            amount: 0,
            startTime: startTime,
            endTime: endTime,
            bidder: payable(0),
            settled: false
        });

        emit AuctionCreated(tokenId, startTime, endTime);
    }

    /**
     * @dev Settle an auction, finalizing the bid and paying out to the owner.
     * If there are no bids, the Transition is burned.
     */
    function _settleAuction() internal {
        ITransitionAuctionHouse.Auction memory _auction = auction;

        require(_auction.startTime != 0, "Auction hasn't begun");
        require(!_auction.settled, "Auction has already been settled");
        require(
            block.timestamp >= _auction.endTime,
            "Auction hasn't completed"
        );

        auction.settled = true;

        if (_auction.bidder == address(0)) {
            transition.burn(_auction.transitionId);
        } else {
            transition.transferFrom(
                address(this),
                _auction.bidder,
                _auction.transitionId
            );
        }

        if (_auction.amount > 0) {
            _safeTransferETHWithFallback(deployer, _auction.amount);
        }

        emit AuctionSettled(
            _auction.transitionId,
            _auction.bidder,
            _auction.amount
        );

        if (done || vitalikOrEFClaimed) {
            tokenId = 0;
        } else if (tokenId != 0) {
            tokenId -= 1;
        }
    }

    /**
     * @dev Transfer ETH. If the ETH transfer fails, wrap the ETH and try send it as WETH.
     */
    function _safeTransferETHWithFallback(address to, uint256 amount) internal {
        if (!_safeTransferETH(to, amount)) {
            IWETH(weth).deposit{value: amount}();
            IERC20(weth).transfer(to, amount);
        }
    }

    /**
     * @dev Transfer ETH and return the success status.
     * This function only forwards 30,000 gas to the callee.
     */
    function _safeTransferETH(address to, uint256 value)
        internal
        returns (bool)
    {
        (bool success, ) = to.call{value: value, gas: 30_000}(new bytes(0));
        return success;
    }
}

File 4 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens primed must be more than zero.
     */
    error PrimeZeroQuantity();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(
        uint256 indexed fromTokenId,
        uint256 toTokenId,
        address indexed from,
        address indexed to
    );
}

File 5 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 8 : ITransitionAuctionHouse.sol
// SPDX-License-Identifier: GPL-3.0

/// @title Interface for Auction Houses
/// Modified from INounsAuctionHouse

pragma solidity ^0.8.6;

interface ITransitionAuctionHouse {
    struct Auction {
        // ID for the Transition (ERC721 token ID)
        uint256 transitionId;
        // The current highest bid amount
        uint256 amount;
        // The time that the auction started
        uint256 startTime;
        // The time that the auction is scheduled to end
        uint256 endTime;
        // The address of the current highest bid
        address payable bidder;
        // Whether or not the auction has been settled
        bool settled;
    }

    event AuctionCreated(
        uint256 indexed transitionId,
        uint256 startTime,
        uint256 endTime
    );

    event AuctionBid(
        uint256 indexed transitionId,
        address sender,
        uint256 value,
        bool extended
    );

    event AuctionExtended(uint256 indexed transitionId, uint256 endTime);

    event AuctionSettled(
        uint256 indexed transitionId,
        address winner,
        uint256 amount
    );

    event AuctionTimeBufferUpdated(uint256 timeBuffer);

    event AuctionReservePriceUpdated(uint256 reservePrice);

    event AuctionMinBidIncrementPercentageUpdated(
        uint256 minBidIncrementPercentage
    );

    function settleCurrentAndCreateNewAuction() external;

    function createBid(uint256 transitionId) external payable;
}

File 8 of 8 : IWETH.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.6;

interface IWETH {
    function deposit() external payable;

    function withdraw(uint256 wad) external;

    function transfer(address to, uint256 value) external returns (bool);
}

Settings
{
  "remappings": [
    "@chainlink/=lib/chainlink/",
    "@openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@prb/test/=lib/prb-test/src/",
    "chainlink/=lib/chainlink/contracts/src/v0.8/dev/vendor/@arbitrum/nitro-contracts/src/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "src/=src/",
    "test/=test/",
    "script/=script/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PrimeZeroQuantity","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auctionHouse","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockdata","outputs":[{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"address","name":"feeRecipient","type":"address"},{"internalType":"uint256","name":"difficulty","type":"uint256"},{"internalType":"uint256","name":"baseFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"draw","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"x","type":"string"},{"internalType":"string","name":"y","type":"string"},{"internalType":"string","name":"fontsize","type":"string"},{"internalType":"bool","name":"preserve","type":"bool"},{"internalType":"string","name":"c","type":"string"}],"name":"getspan","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526064600f55601080546001600160a01b03191673953fc389a59d1fec79e83a93891cd954552e2f5a1790553480156200003c57600080fd5b506040518060400160405280600e81526020016d2a3432902a3930b739b4ba34b7b760911b81525060405180604001604052806003815260200162150b5560ea1b81525081600290816200009191906200023f565b506003620000a082826200023f565b50600080555050600e80546001600160a01b03191633179055601054600f54620000d4916001600160a01b03169062000141565b6040805160c081018252468082526001602083018190529282018390526010546001600160a01b0316606083018190526080830184905260a09092018390526008556009829055600a829055600b80546001600160a01b0319169091179055600c819055600d556200030b565b600080549082900362000167576040516303019b9560e01b815260040160405180910390fd5b6001600160a01b039092166000908152600560209081526040808320600190819055948352600490915290209190915550565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c557607f821691505b602082108103620001e657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023a57600081815260208120601f850160051c81016020861015620002155750805b601f850160051c820191505b81811015620002365782815560010162000221565b5050505b505050565b81516001600160401b038111156200025b576200025b6200019a565b62000273816200026c8454620001b0565b84620001ec565b602080601f831160018114620002ab5760008415620002925750858301515b600019600386901b1c1916600185901b17855562000236565b600085815260208120601f198616915b82811015620002dc57888601518255948401946001909101908401620002bb565b5085821015620002fb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61463f806200031b6000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063b88d4fde1161006f578063b88d4fde1461037c578063c77543a01461038f578063c87b56dd146103af578063d5f39488146103cf578063e985e9c5146103ef578063ed9152c81461043857600080fd5b806370a082311461029d57806377f8afdc146102bd57806395d89b4114610327578063a0712d681461033c578063a22cb4651461035c57600080fd5b806323b872dd116100fd57806323b872dd146102015780633b304147146102145780633eaaf86b1461023457806342842e0e1461024a57806342966c681461025d5780636352211e1461027d57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a6101553660046133dd565b610458565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b506101846104aa565b6040516101669190613452565b34801561019d57600080fd5b506101b16101ac366004613465565b61053c565b6040516001600160a01b039091168152602001610166565b6101dc6101d736600461349a565b610580565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f3660046134c4565b610620565b34801561022057600080fd5b5061018461022f366004613465565b6107c2565b34801561024057600080fd5b506101f3600f5481565b6101dc6102583660046134c4565b61286f565b34801561026957600080fd5b506101dc610278366004613465565b61288f565b34801561028957600080fd5b506101b1610298366004613465565b6128d3565b3480156102a957600080fd5b506101f36102b8366004613500565b6128de565b3480156102c957600080fd5b50600854600954600a54600b54600c54600d546102f1959493926001600160a01b0316919086565b604080519687526020870195909552938501929092526001600160a01b03166060840152608083015260a082015260c001610166565b34801561033357600080fd5b5061018461292d565b34801561034857600080fd5b506101dc610357366004613465565b61293c565b34801561036857600080fd5b506101dc61037736600461352b565b6129c7565b6101dc61038a3660046135ea565b612a33565b34801561039b57600080fd5b506101846103aa366004613686565b612a7d565b3480156103bb57600080fd5b506101846103ca366004613465565b612af9565b3480156103db57600080fd5b50600e546101b1906001600160a01b031681565b3480156103fb57600080fd5b5061015a61040a366004613744565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561044457600080fd5b506010546101b1906001600160a01b031681565b60006301ffc9a760e01b6001600160e01b03198316148061048957506380ac58cd60e01b6001600160e01b03198316145b806104a45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104b99061376e565b80601f01602080910402602001604051908101604052809291908181526020018280546104e59061376e565b80156105325780601f1061050757610100808354040283529160200191610532565b820191906000526020600020905b81548152906001019060200180831161051557829003601f168201915b5050505050905090565b600061054782612b55565b610564576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061058b826128d3565b9050336001600160a01b038216146105c4576105a7813361040a565b6105c4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061062b82612b7c565b9050836001600160a01b0316816001600160a01b03161461065e5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260409020805461068a8187335b6001600160a01b039081169116811491141790565b6106b557610698863361040a565b6106b557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106dc57604051633a954ecd60e21b815260040160405180910390fd5b80156106e757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610779576001840160008181526004602052604081205490036107775760005481146107775760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60606107cc61339f565b60006040518060a0016040528060738152602001613bf86073913982826107f2816137be565b9350603a8110610804576108046137d7565b60200201819052506040518060a0016040528060618152602001614347606191398282610830816137be565b9350603a8110610842576108426137d7565b60200201819052506108c6604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016218991960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060478152602001613e9660479139612a7d565b82826108d1816137be565b9350603a81106108e3576108e36137d7565b6020020181905250610967604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620c4ccd60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604c8152602001614438604c9139612a7d565b8282610972816137be565b9350603a8110610984576109846137d7565b6020020181905250610a08604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162189a1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e8152602001614484604e9139612a7d565b8282610a13816137be565b9350603a8110610a2557610a256137d7565b6020020181905250610aa9604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620626a760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b815250600160405180608001604052806050815260200161401260509139612a7d565b8282610ab4816137be565b9350603a8110610ac657610ac66137d7565b6020020181905250610b4a604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203137360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b815250600160405180608001604052806050815260200161412e60509139612a7d565b8282610b55816137be565b9350603a8110610b6757610b676137d7565b6020020181905250610beb604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162189c1960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280605081526020016142f760509139612a7d565b8282610bf6816137be565b9350603a8110610c0857610c086137d7565b6020020181905250610c8c604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620c4e4d60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280605081526020016145ba60509139612a7d565b8282610c97816137be565b9350603a8110610ca957610ca96137d7565b6020020181905250610d2d604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016219181b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060508152602001613f2a60509139612a7d565b8282610d38816137be565b9350603a8110610d4a57610d4a6137d7565b6020020181905250610dce604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016206462760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e8152602001613c6b604e9139612a7d565b8282610dd9816137be565b9350603a8110610deb57610deb6137d7565b6020020181905250610e6f604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203233360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604c81526020016144d2604c9139612a7d565b8282610e7a816137be565b9350603a8110610e8c57610e8c6137d7565b6020020181905250610f10604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162191a1960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604d8152602001613edd604d9139612a7d565b8282610f1b816137be565b9350603a8110610f2d57610f2d6137d7565b6020020181905250610fb1604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620c8d4d60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e815260200161451e604e9139612a7d565b8282610fbc816137be565b9350603a8110610fce57610fce6137d7565b6020020181905250611052604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162191b1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e815260200161425a604e9139612a7d565b828261105d816137be565b9350603a811061106f5761106f6137d7565b60200201819052506110f3604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620646e760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f8152602001613e47604f9139612a7d565b82826110fe816137be565b9350603a8110611110576111106137d7565b6020020181905250611194604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203239360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f8152602001613dd7604f9139612a7d565b828261119f816137be565b9350603a81106111b1576111b16137d7565b6020020181905250611235604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016219981960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060508152602001613f7a60509139612a7d565b8282611240816137be565b9350603a8110611252576112526137d7565b60200201819052506112d6604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620ccc4d60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280605081526020016141ca60509139612a7d565b82826112e1816137be565b9350603a81106112f3576112f36137d7565b6020020181905250611377604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016219991b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060508152602001613cb960509139612a7d565b8282611382816137be565b9350603a8110611394576113946137d7565b6020020181905250611418604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016206666760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f81526020016142a8604f9139612a7d565b8282611423816137be565b9350603a8110611435576114356137d7565b60200201819052506114b9604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203335360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f81526020016143a8604f9139612a7d565b82826114c4816137be565b9350603a81106114d6576114d66137d7565b602002018190525061155a604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162199b1960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f8152602001614062604f9139612a7d565b8282611565816137be565b9350603a8110611577576115776137d7565b60200201819052506115fb604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620ccdcd60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e815260200161456c604e9139612a7d565b8282611606816137be565b9350603a8110611618576116186137d7565b602002018190525061169c604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162199c1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604d8152602001613d8a604d9139612a7d565b82826116a7816137be565b9350603a81106116b9576116b96137d7565b602002018190525061173d604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016206672760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604c815260200161417e604c9139612a7d565b8282611748816137be565b9350603a811061175a5761175a6137d7565b60200201819052506117de604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203431360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604a81526020016140e4604a9139612a7d565b82826117e9816137be565b9350603a81106117fb576117fb6137d7565b602002018190525061187f604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001621a191960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060488152602001613fca60489139612a7d565b828261188a816137be565b9350603a811061189c5761189c6137d7565b6020020181905250611920604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620d0ccd60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060458152602001613d0960459139612a7d565b828261192b816137be565b9350603a811061193d5761193d6137d7565b60200201819052506119c1604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001621a1a1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604181526020016143f760419139612a7d565b82826119cc816137be565b9350603a81106119de576119de6137d7565b6020020181905250611a62604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620686a760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060600160405280603c8152602001613d4e603c9139612a7d565b8282611a6d816137be565b9350603a8110611a7f57611a7f6137d7565b6020020181905250611b03604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203437360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060600160405280603381526020016140b160339139612a7d565b8282611b0e816137be565b9350603a8110611b2057611b206137d7565b6020020181905250611bad6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016203635360ec1b8152506040518060400160405280600381526020016232656d60e81b81525060006040518060400160405280600e81526020016d2a3432902a3930b739b4ba34b7b760911b815250612a7d565b8282611bb8816137be565b9350603a8110611bca57611bca6137d7565b6020020181905250611c4b6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016203731360ec1b81525060405180604001604052806005815260200164312e35656d60d81b8152506000604051806060016040528060218152602001613e2660219139612a7d565b8282611c56816137be565b9350603a8110611c6857611c686137d7565b6020020181905250611d076040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016237353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280601781526020017f45646974696f6e20202020202020202020202f20313030000000000000000000815250612a7d565b8282611d12816137be565b9350603a8110611d2457611d246137d7565b6020020181905250611db56040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016237393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e21b430b4b71024a21010101010101d60891b815250612a7d565b8282611dc0816137be565b9350603a8110611dd257611dd26137d7565b6020020181905250611e636040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016238333560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e213637b1b590273ab6b132b910101d60891b815250612a7d565b8282611e6e816137be565b9350603a8110611e8057611e806137d7565b6020020181905250611f116040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016238373560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2a34b6b2b9ba30b6b810101010101d60891b815250612a7d565b8282611f1c816137be565b9350603a8110611f2e57611f2e6137d7565b6020020181905250611fbf6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016239313560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2332b2902932b1b4b834b2b73a101d60891b815250612a7d565b8282611fca816137be565b9350603a8110611fdc57611fdc6137d7565b602002018190525061206d6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016239353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2234b33334b1bab63a3c901010101d60891b815250612a7d565b8282612078816137be565b9350603a811061208a5761208a6137d7565b602002018190525061211b6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016239393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2130b9b2902332b29010101010101d60891b815250612a7d565b8282612126816137be565b9350603a8110612138576121386137d7565b60200201819052506121b16040518060400160405280600381526020016203334360ec1b8152506040518060400160405280600381526020016237353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa8960016121ac91906137ed565b612bea565b82826121bc816137be565b9350603a81106121ce576121ce6137d7565b60200201819052506122406040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016237393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860000154612bea565b828261224b816137be565b9350603a811061225d5761225d6137d7565b60200201819052506122cf6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016238333560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860010154612bea565b82826122da816137be565b9350603a81106122ec576122ec6137d7565b602002018190525061235e6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016238373560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860020154612bea565b8282612369816137be565b9350603a811061237b5761237b6137d7565b60200201819052506124006040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016239313560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860030160009054906101000a90046001600160a01b0316612c7d565b828261240b816137be565b9350603a811061241d5761241d6137d7565b602002018190525061248f6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016239353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860040154612bea565b828261249a816137be565b9350603a81106124ac576124ac6137d7565b602002018190525061251e6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016239393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860050154612bea565b8282612529816137be565b9350603a811061253b5761253b6137d7565b60200201819052506040518060400160405280600d81526020016c1e17ba32bc3a1f1e17b9bb339f60991b815250828280612575906137be565b9350603a8110612587576125876137d7565b602090810291909101919091528251838201516040808601516060870151608088015160a089015160c08a015160e08b01516101008c0151965160009a6125d19a99989101613821565b60408051808303601f19018152908290526101208501516101408601516101608701516101808801516101a08901516101c08a01516101e08b01516102008c0151979950612624988a9890602001613821565b60408051808303601f19018152908290526102208501516102408601516102608701516102808801516102a08901516102c08a01516102e08b01516103008c0151979950612677988a9890602001613821565b60408051601f19818403018152908290526103208501516103408601516103608701516103808801516103a08901516103c08a01516103e08b01516104008c01519799506126ca988a9890602001613821565b60408051808303601f19018152908290526104208501516104408601516104608701516104808801516104a08901516104c08a01516104e08b01516105008c015197995061271d988a9890602001613821565b60408051808303601f19018152908290526105208501516105408601516105608701516105808801516105a08901516105c08a01516105e08b01516106008c0151979950612770988a9890602001613821565b60408051808303601f19018152908290526106208501516106408601516106608701516106808801516106a08901516106c08a01516106e08b01516107008c01519799506127c3988a9890602001613821565b60408051808303601f19018152908290526107208501519092506000916127ee9184916020016138e2565b60408051601f19818403018152919052905060006128416128136121ac8960016137ed565b61281c84612c93565b60405160200161282d929190613911565b604051602081830303815290604052612c93565b9050806040516020016128549190613a27565b60405160208183030381529060405295505050505050919050565b61288a83838360405180602001604052806000815250612a33565b505050565b61289881612b55565b6128a157600080fd5b6128aa816128d3565b6001600160a01b0316336001600160a01b0316146128c757600080fd5b6128d081612dfd565b50565b60006104a482612b7c565b60006001600160a01b038216612907576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546104b99061376e565b80431461294857600080fd5b600e546001600160a01b0316331461295f57600080fd5b68010000000000000000441180612974575044155b61297d57600080fd5b60095460011461298c57600080fd5b4360095542600a55600b80546001600160a01b0319164117905544600c5548600d55601054600f546128d0916001600160a01b031690612e08565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612a3e848484610620565b6001600160a01b0383163b15612a7757612a5a84848484612ef6565b612a77576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051808201909152601581527403c36b61d39b830b1b29e91383932b9b2b93b32911605d1b602082015260609083612ac257506040805160208101909152600081525b60008787838887604051602001612add959493929190613a6c565b60408051808303601f1901815291905298975050505050505050565b6060612b0482612b55565b612b4c5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064015b60405180910390fd5b6104a4826107c2565b60008054821080156104a4575050600090815260046020526040902054600160e01b161590565b600081600054811015612bd15760008181526004602052604081205490600160e01b82169003612bcf575b80600003612bc8575060001901600081815260046020526040902054612ba7565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60606000612bf783612fe1565b600101905060008167ffffffffffffffff811115612c1757612c1761355e565b6040519080825280601f01601f191660200182016040528015612c41576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612c4b57509392505050565b60606104a46001600160a01b03831660146130b9565b80516060906000819003612cb7575050604080516020810190915260008152919050565b60006003612cc68360026137ed565b612cd09190613b45565b612cdb906004613b67565b90506000612cea8260206137ed565b67ffffffffffffffff811115612d0257612d0261355e565b6040519080825280601f01601f191660200182016040528015612d2c576020820181803683370190505b509050600060405180606001604052806040815260200161421a604091399050600181016020830160005b86811015612db8576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612d57565b506003860660018114612dd25760028114612de357612def565b613d3d60f01b600119830152612def565b603d60f81b6000198301525b505050918152949350505050565b6128d0816000613255565b6000546001600160a01b038316612e3157604051622e076360e81b815260040160405180910390fd5b81600003612e525760405163b562e8dd60e01b815260040160405180910390fd5b611388821115612e7557604051633db1f9af60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083206801000000000000000187029055848352600482528083206001871460e11b4260a01b17851790558051600019868801018152905185927fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d928290030190a40160005550565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612f2b903390899088908890600401613b86565b6020604051808303816000875af1925050508015612f66575060408051601f3d908101601f19168201909252612f6391810190613bc3565b60015b612fc4573d808015612f94576040519150601f19603f3d011682016040523d82523d6000602084013e612f99565b606091505b508051600003612fbc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106130205772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061304c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061306a57662386f26fc10000830492506010015b6305f5e1008310613082576305f5e100830492506008015b612710831061309657612710830492506004015b606483106130a8576064830492506002015b600a83106104a45760010192915050565b606060006130c8836002613b67565b6130d39060026137ed565b67ffffffffffffffff8111156130eb576130eb61355e565b6040519080825280601f01601f191660200182016040528015613115576020820181803683370190505b509050600360fc1b81600081518110613130576131306137d7565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061315f5761315f6137d7565b60200101906001600160f81b031916908160001a9053506000613183846002613b67565b61318e9060016137ed565b90505b6001811115613206576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106131c2576131c26137d7565b1a60f81b8282815181106131d8576131d86137d7565b60200101906001600160f81b031916908160001a90535060049490941c936131ff81613be0565b9050613191565b508315612bc85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401612b43565b600061326083612b7c565b90508060008061327e86600090815260066020526040902080549091565b9150915084156132be57613293818433610675565b6132be576132a1833361040a565b6132be57604051632ce44b5f60e11b815260040160405180910390fd5b80156132c957600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003613357576001860160008181526004602052604081205490036133555760005481146133555760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b604051806107400160405280603a905b60608152602001906001900390816133af5790505090565b6001600160e01b0319811681146128d057600080fd5b6000602082840312156133ef57600080fd5b8135612bc8816133c7565b60005b838110156134155781810151838201526020016133fd565b83811115612a775750506000910152565b6000815180845261343e8160208601602086016133fa565b601f01601f19169290920160200192915050565b602081526000612bc86020830184613426565b60006020828403121561347757600080fd5b5035919050565b80356001600160a01b038116811461349557600080fd5b919050565b600080604083850312156134ad57600080fd5b6134b68361347e565b946020939093013593505050565b6000806000606084860312156134d957600080fd5b6134e28461347e565b92506134f06020850161347e565b9150604084013590509250925092565b60006020828403121561351257600080fd5b612bc88261347e565b8035801515811461349557600080fd5b6000806040838503121561353e57600080fd5b6135478361347e565b91506135556020840161351b565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561358f5761358f61355e565b604051601f8501601f19908116603f011681019082821181831017156135b7576135b761355e565b816040528093508581528686860111156135d057600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561360057600080fd5b6136098561347e565b93506136176020860161347e565b925060408501359150606085013567ffffffffffffffff81111561363a57600080fd5b8501601f8101871361364b57600080fd5b61365a87823560208401613574565b91505092959194509250565b600082601f83011261367757600080fd5b612bc883833560208501613574565b600080600080600060a0868803121561369e57600080fd5b853567ffffffffffffffff808211156136b657600080fd5b6136c289838a01613666565b965060208801359150808211156136d857600080fd5b6136e489838a01613666565b955060408801359150808211156136fa57600080fd5b61370689838a01613666565b94506137146060890161351b565b9350608088013591508082111561372a57600080fd5b5061373788828901613666565b9150509295509295909350565b6000806040838503121561375757600080fd5b6137608361347e565b91506135556020840161347e565b600181811c9082168061378257607f821691505b6020821081036137a257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016137d0576137d06137a8565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008219821115613800576138006137a8565b500190565b600081516138178185602086016133fa565b9290920192915050565b60008a51613833818460208f016133fa565b8a516138458183860160208f016133fa565b8a51918401019061385a818360208e016133fa565b895161386c8183850160208e016133fa565b8951929091010190613882818360208c016133fa565b87516138948183850160208c016133fa565b87519290910101906138aa818360208a016133fa565b85516138bc8183850160208a016133fa565b85519290910101906138d28183602088016133fa565b019b9a5050505050505050505050565b600083516138f48184602088016133fa565b8351908301906139088183602088016133fa565b01949350505050565b7f7b226e616d65223a2022546865205472616e736974696f6e202300000000000081526000835161394981601a8501602088016133fa565b7f222c20226465736372697074696f6e223a202241204e6f6e2d46756e6769626c601a918401918201527f6520457468657265756d204d6572676520546f6b656e2e222c20226578746572603a8201527f6e616c5f75726c223a202268747470733a2f2f7468657472616e736974696f6e605a8201527f2e777466222c2022696d616765223a2022646174613a696d6167652f7376672b607a8201526a1e1b5b0ed8985cd94d8d0b60aa1b609a8201528351613a0c8160a58401602088016133fa565b61227d60f01b60a5929091019182015260a701949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a5f81601d8501602087016133fa565b91909101601d0192915050565b691e3a39b830b7103c1e9160b11b81528551600090613a9281600a850160208b016133fa565b61011160f51b600a918401918201819052623c9e9160e91b600c8301528751613ac281600f850160208c016133fa565b600f9201918201528551613add816011840160208a016133fa565b6a3337b73a16b9b4bd329e9160a91b601192909101918201528451613b0981601c8401602089016133fa565b01613b1b601c820161111f60f11b9052565b613b28601e820185613805565b671e17ba39b830b71f60c11b815260080198975050505050505050565b600082613b6257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615613b8157613b816137a8565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613bb990830184613426565b9695505050505050565b600060208284031215613bd557600080fd5b8151612bc8816133c7565b600081613bef57613bef6137a8565b50600019019056fe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667222077696474683d223139323022206865696768743d2231303830223e3c726563742077696474683d223139323022206865696768743d2231303830222066696c6c3d22626c61636b22202f3e20202048484848484848484828202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202040484848484848484820204d4848484820202e48484848484848484848484848484848484848484848482020202020202020202020202020204848484848484848484848484848484848484848484848482f2020484848482a20202020202020202020202020254848484848484840202020202020202020202020202020202020202020202020202020202020202020202020202048484848484848484d20202020202020202020202020202020202020202020284848484848484848484848484848484848484848484848484848484848484848484848482a2020202020484848484820202020204848484848484820202020202020202020202020202020202020202020202020202020202020202020202020204848484848484820202020204848484848202020484848482020202020204d48484848484848484820202020202020484848482020202020202020202020204848484848482020202020204048484848484848484840202020202020484848484e6f6e2d46756e6769626c6520457468657265756d204d6572676520546f6b656e202020484848482a2020202020202020484848484848484848484848484848484820202020202020202020202020204d484848484848484848484848484848484848202020202020202025484848482020202020202020202e252525252e20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202e254848484848482a2020202020484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020204848484848202048484848484848484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202f484848484848484848484820202028484848482020202028484848484848484848482e20202020202020484848484d20202020202020202020204848484848202020202020202048484848484848484848484820202020484848482e202020202020202020202548484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202c48484848484828204d48484848484848484848484848484848484848484848484848482a2020202020202020202020202020202020202020202020202f484848484848484848484848484848484848484848484848484d202020284848484820202848484848484848484848484848484848202020202020202e484848484848484848484848202020202020204848484848484848484848484848484848482020484848482c202020202020202020202020202020202020202020202020202020202020202e4d254848484848484848484848484848252a2e2020202020202020484848484848202020202020202020202020202020202020202c4848484848484848484848484848202020202020202020202020202020202020202048484848484820484848484848484848484848484848484848484848482020202020202020202020202020202020202020202020202020202020202020202020204848484848484848484848484848484848484848482020202020204d48484848402020202020202020202020202020202020202025484848202020202020202020202028484848202020202020202020202020202020202020202048484848482e20202548484848202020484848484848484848484848484d202020202048484848482020202020202020202020202048484848482020202020204848484848484848484848484848202020484848482f4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2020202a484848482020202020202020202020204848484848484848484820202020202020202020202020202020202020204848484848484848484848484820202020202020202020204848484820202c48484848202025484848484848484848484848484848484848484848202020202020484848484848484d202020202c484848484848484848484848484848484848484848484020204848484820484848484848484848484848484848484848202020202020202020202020202020202020202020202020202020202020202020202020202020202020202048484848484848484848484848484848483c7465787420783d223332302220793d223630222066696c6c3d2277686974652220666f6e742d66616d696c793d22436f7572696572204e65772c20436f75726965722c206d6f6e6f73706163652220666f6e742d73697a653d2232347078223e202020484848482e202e484848484848484848484848484848484848482020202020204848484848484848484848482020202020484848484848484848484848484848484848484828202f4848484820202020202020202020202020202020204848484848484848484848482a202020202020202020202020202020202020202020202848484848484848484848482520202020202548484848484848484848484848484825202020202020202e4848484848484848484848484848484848484848482520202020202e2548484848484848484848484848484848482020204848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848482020202048484848484848202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020484848484820202020484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020484848484d202020204848484848202020404848484848484848484848252020202020202020202020484848484848484848202020202020202020202048484848484848484848484848482020204848484825204848484848484848484848484848482a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020484848484848484848484848484848a26469706673582212203812d2cda04803bbbe2239f88091788c72813f566c850431ba9495486287003b64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101355760003560e01c806370a08231116100ab578063b88d4fde1161006f578063b88d4fde1461037c578063c77543a01461038f578063c87b56dd146103af578063d5f39488146103cf578063e985e9c5146103ef578063ed9152c81461043857600080fd5b806370a082311461029d57806377f8afdc146102bd57806395d89b4114610327578063a0712d681461033c578063a22cb4651461035c57600080fd5b806323b872dd116100fd57806323b872dd146102015780633b304147146102145780633eaaf86b1461023457806342842e0e1461024a57806342966c681461025d5780636352211e1461027d57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a6101553660046133dd565b610458565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b506101846104aa565b6040516101669190613452565b34801561019d57600080fd5b506101b16101ac366004613465565b61053c565b6040516001600160a01b039091168152602001610166565b6101dc6101d736600461349a565b610580565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f3660046134c4565b610620565b34801561022057600080fd5b5061018461022f366004613465565b6107c2565b34801561024057600080fd5b506101f3600f5481565b6101dc6102583660046134c4565b61286f565b34801561026957600080fd5b506101dc610278366004613465565b61288f565b34801561028957600080fd5b506101b1610298366004613465565b6128d3565b3480156102a957600080fd5b506101f36102b8366004613500565b6128de565b3480156102c957600080fd5b50600854600954600a54600b54600c54600d546102f1959493926001600160a01b0316919086565b604080519687526020870195909552938501929092526001600160a01b03166060840152608083015260a082015260c001610166565b34801561033357600080fd5b5061018461292d565b34801561034857600080fd5b506101dc610357366004613465565b61293c565b34801561036857600080fd5b506101dc61037736600461352b565b6129c7565b6101dc61038a3660046135ea565b612a33565b34801561039b57600080fd5b506101846103aa366004613686565b612a7d565b3480156103bb57600080fd5b506101846103ca366004613465565b612af9565b3480156103db57600080fd5b50600e546101b1906001600160a01b031681565b3480156103fb57600080fd5b5061015a61040a366004613744565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561044457600080fd5b506010546101b1906001600160a01b031681565b60006301ffc9a760e01b6001600160e01b03198316148061048957506380ac58cd60e01b6001600160e01b03198316145b806104a45750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104b99061376e565b80601f01602080910402602001604051908101604052809291908181526020018280546104e59061376e565b80156105325780601f1061050757610100808354040283529160200191610532565b820191906000526020600020905b81548152906001019060200180831161051557829003601f168201915b5050505050905090565b600061054782612b55565b610564576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061058b826128d3565b9050336001600160a01b038216146105c4576105a7813361040a565b6105c4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061062b82612b7c565b9050836001600160a01b0316816001600160a01b03161461065e5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260409020805461068a8187335b6001600160a01b039081169116811491141790565b6106b557610698863361040a565b6106b557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106dc57604051633a954ecd60e21b815260040160405180910390fd5b80156106e757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610779576001840160008181526004602052604081205490036107775760005481146107775760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60606107cc61339f565b60006040518060a0016040528060738152602001613bf86073913982826107f2816137be565b9350603a8110610804576108046137d7565b60200201819052506040518060a0016040528060618152602001614347606191398282610830816137be565b9350603a8110610842576108426137d7565b60200201819052506108c6604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016218991960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060478152602001613e9660479139612a7d565b82826108d1816137be565b9350603a81106108e3576108e36137d7565b6020020181905250610967604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620c4ccd60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604c8152602001614438604c9139612a7d565b8282610972816137be565b9350603a8110610984576109846137d7565b6020020181905250610a08604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162189a1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e8152602001614484604e9139612a7d565b8282610a13816137be565b9350603a8110610a2557610a256137d7565b6020020181905250610aa9604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620626a760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b815250600160405180608001604052806050815260200161401260509139612a7d565b8282610ab4816137be565b9350603a8110610ac657610ac66137d7565b6020020181905250610b4a604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203137360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b815250600160405180608001604052806050815260200161412e60509139612a7d565b8282610b55816137be565b9350603a8110610b6757610b676137d7565b6020020181905250610beb604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162189c1960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280605081526020016142f760509139612a7d565b8282610bf6816137be565b9350603a8110610c0857610c086137d7565b6020020181905250610c8c604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620c4e4d60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280605081526020016145ba60509139612a7d565b8282610c97816137be565b9350603a8110610ca957610ca96137d7565b6020020181905250610d2d604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016219181b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060508152602001613f2a60509139612a7d565b8282610d38816137be565b9350603a8110610d4a57610d4a6137d7565b6020020181905250610dce604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016206462760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e8152602001613c6b604e9139612a7d565b8282610dd9816137be565b9350603a8110610deb57610deb6137d7565b6020020181905250610e6f604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203233360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604c81526020016144d2604c9139612a7d565b8282610e7a816137be565b9350603a8110610e8c57610e8c6137d7565b6020020181905250610f10604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162191a1960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604d8152602001613edd604d9139612a7d565b8282610f1b816137be565b9350603a8110610f2d57610f2d6137d7565b6020020181905250610fb1604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620c8d4d60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e815260200161451e604e9139612a7d565b8282610fbc816137be565b9350603a8110610fce57610fce6137d7565b6020020181905250611052604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162191b1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e815260200161425a604e9139612a7d565b828261105d816137be565b9350603a811061106f5761106f6137d7565b60200201819052506110f3604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620646e760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f8152602001613e47604f9139612a7d565b82826110fe816137be565b9350603a8110611110576111106137d7565b6020020181905250611194604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203239360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f8152602001613dd7604f9139612a7d565b828261119f816137be565b9350603a81106111b1576111b16137d7565b6020020181905250611235604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016219981960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060508152602001613f7a60509139612a7d565b8282611240816137be565b9350603a8110611252576112526137d7565b60200201819052506112d6604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620ccc4d60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280605081526020016141ca60509139612a7d565b82826112e1816137be565b9350603a81106112f3576112f36137d7565b6020020181905250611377604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016219991b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060508152602001613cb960509139612a7d565b8282611382816137be565b9350603a8110611394576113946137d7565b6020020181905250611418604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016206666760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f81526020016142a8604f9139612a7d565b8282611423816137be565b9350603a8110611435576114356137d7565b60200201819052506114b9604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203335360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f81526020016143a8604f9139612a7d565b82826114c4816137be565b9350603a81106114d6576114d66137d7565b602002018190525061155a604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162199b1960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604f8152602001614062604f9139612a7d565b8282611565816137be565b9350603a8110611577576115776137d7565b60200201819052506115fb604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620ccdcd60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604e815260200161456c604e9139612a7d565b8282611606816137be565b9350603a8110611618576116186137d7565b602002018190525061169c604051806040016040528060048152602001630313330360e41b81525060405180604001604052806003815260200162199c1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604d8152602001613d8a604d9139612a7d565b82826116a7816137be565b9350603a81106116b9576116b96137d7565b602002018190525061173d604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016206672760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604c815260200161417e604c9139612a7d565b8282611748816137be565b9350603a811061175a5761175a6137d7565b60200201819052506117de604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203431360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604a81526020016140e4604a9139612a7d565b82826117e9816137be565b9350603a81106117fb576117fb6137d7565b602002018190525061187f604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001621a191960e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060488152602001613fca60489139612a7d565b828261188a816137be565b9350603a811061189c5761189c6137d7565b6020020181905250611920604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620d0ccd60ea1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b8152506001604051806080016040528060458152602001613d0960459139612a7d565b828261192b816137be565b9350603a811061193d5761193d6137d7565b60200201819052506119c1604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001621a1a1b60e91b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060800160405280604181526020016143f760419139612a7d565b82826119cc816137be565b9350603a81106119de576119de6137d7565b6020020181905250611a62604051806040016040528060048152602001630313330360e41b815250604051806040016040528060038152602001620686a760eb1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060600160405280603c8152602001613d4e603c9139612a7d565b8282611a6d816137be565b9350603a8110611a7f57611a7f6137d7565b6020020181905250611b03604051806040016040528060048152602001630313330360e41b8152506040518060400160405280600381526020016203437360ec1b815250604051806040016040528060078152602001661e0b5cdb585b1b60ca1b81525060016040518060600160405280603381526020016140b160339139612a7d565b8282611b0e816137be565b9350603a8110611b2057611b206137d7565b6020020181905250611bad6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016203635360ec1b8152506040518060400160405280600381526020016232656d60e81b81525060006040518060400160405280600e81526020016d2a3432902a3930b739b4ba34b7b760911b815250612a7d565b8282611bb8816137be565b9350603a8110611bca57611bca6137d7565b6020020181905250611c4b6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016203731360ec1b81525060405180604001604052806005815260200164312e35656d60d81b8152506000604051806060016040528060218152602001613e2660219139612a7d565b8282611c56816137be565b9350603a8110611c6857611c686137d7565b6020020181905250611d076040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016237353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280601781526020017f45646974696f6e20202020202020202020202f20313030000000000000000000815250612a7d565b8282611d12816137be565b9350603a8110611d2457611d246137d7565b6020020181905250611db56040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016237393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e21b430b4b71024a21010101010101d60891b815250612a7d565b8282611dc0816137be565b9350603a8110611dd257611dd26137d7565b6020020181905250611e636040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016238333560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e213637b1b590273ab6b132b910101d60891b815250612a7d565b8282611e6e816137be565b9350603a8110611e8057611e806137d7565b6020020181905250611f116040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016238373560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2a34b6b2b9ba30b6b810101010101d60891b815250612a7d565b8282611f1c816137be565b9350603a8110611f2e57611f2e6137d7565b6020020181905250611fbf6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016239313560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2332b2902932b1b4b834b2b73a101d60891b815250612a7d565b8282611fca816137be565b9350603a8110611fdc57611fdc6137d7565b602002018190525061206d6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016239353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2234b33334b1bab63a3c901010101d60891b815250612a7d565b8282612078816137be565b9350603a811061208a5761208a6137d7565b602002018190525061211b6040518060400160405280600381526020016203130360ec1b8152506040518060400160405280600381526020016239393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060016040518060400160405280600f81526020016e2130b9b2902332b29010101010101d60891b815250612a7d565b8282612126816137be565b9350603a8110612138576121386137d7565b60200201819052506121b16040518060400160405280600381526020016203334360ec1b8152506040518060400160405280600381526020016237353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa8960016121ac91906137ed565b612bea565b82826121bc816137be565b9350603a81106121ce576121ce6137d7565b60200201819052506122406040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016237393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860000154612bea565b828261224b816137be565b9350603a811061225d5761225d6137d7565b60200201819052506122cf6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016238333560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860010154612bea565b82826122da816137be565b9350603a81106122ec576122ec6137d7565b602002018190525061235e6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016238373560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860020154612bea565b8282612369816137be565b9350603a811061237b5761237b6137d7565b60200201819052506124006040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016239313560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860030160009054906101000a90046001600160a01b0316612c7d565b828261240b816137be565b9350603a811061241d5761241d6137d7565b602002018190525061248f6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016239353560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860040154612bea565b828261249a816137be565b9350603a81106124ac576124ac6137d7565b602002018190525061251e6040518060400160405280600381526020016203430360ec1b8152506040518060400160405280600381526020016239393560e81b815250604051806040016040528060068152602001653630b933b2b960d11b81525060006103aa600860050154612bea565b8282612529816137be565b9350603a811061253b5761253b6137d7565b60200201819052506040518060400160405280600d81526020016c1e17ba32bc3a1f1e17b9bb339f60991b815250828280612575906137be565b9350603a8110612587576125876137d7565b602090810291909101919091528251838201516040808601516060870151608088015160a089015160c08a015160e08b01516101008c0151965160009a6125d19a99989101613821565b60408051808303601f19018152908290526101208501516101408601516101608701516101808801516101a08901516101c08a01516101e08b01516102008c0151979950612624988a9890602001613821565b60408051808303601f19018152908290526102208501516102408601516102608701516102808801516102a08901516102c08a01516102e08b01516103008c0151979950612677988a9890602001613821565b60408051601f19818403018152908290526103208501516103408601516103608701516103808801516103a08901516103c08a01516103e08b01516104008c01519799506126ca988a9890602001613821565b60408051808303601f19018152908290526104208501516104408601516104608701516104808801516104a08901516104c08a01516104e08b01516105008c015197995061271d988a9890602001613821565b60408051808303601f19018152908290526105208501516105408601516105608701516105808801516105a08901516105c08a01516105e08b01516106008c0151979950612770988a9890602001613821565b60408051808303601f19018152908290526106208501516106408601516106608701516106808801516106a08901516106c08a01516106e08b01516107008c01519799506127c3988a9890602001613821565b60408051808303601f19018152908290526107208501519092506000916127ee9184916020016138e2565b60408051601f19818403018152919052905060006128416128136121ac8960016137ed565b61281c84612c93565b60405160200161282d929190613911565b604051602081830303815290604052612c93565b9050806040516020016128549190613a27565b60405160208183030381529060405295505050505050919050565b61288a83838360405180602001604052806000815250612a33565b505050565b61289881612b55565b6128a157600080fd5b6128aa816128d3565b6001600160a01b0316336001600160a01b0316146128c757600080fd5b6128d081612dfd565b50565b60006104a482612b7c565b60006001600160a01b038216612907576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546104b99061376e565b80431461294857600080fd5b600e546001600160a01b0316331461295f57600080fd5b68010000000000000000441180612974575044155b61297d57600080fd5b60095460011461298c57600080fd5b4360095542600a55600b80546001600160a01b0319164117905544600c5548600d55601054600f546128d0916001600160a01b031690612e08565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b612a3e848484610620565b6001600160a01b0383163b15612a7757612a5a84848484612ef6565b612a77576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051808201909152601581527403c36b61d39b830b1b29e91383932b9b2b93b32911605d1b602082015260609083612ac257506040805160208101909152600081525b60008787838887604051602001612add959493929190613a6c565b60408051808303601f1901815291905298975050505050505050565b6060612b0482612b55565b612b4c5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064015b60405180910390fd5b6104a4826107c2565b60008054821080156104a4575050600090815260046020526040902054600160e01b161590565b600081600054811015612bd15760008181526004602052604081205490600160e01b82169003612bcf575b80600003612bc8575060001901600081815260046020526040902054612ba7565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60606000612bf783612fe1565b600101905060008167ffffffffffffffff811115612c1757612c1761355e565b6040519080825280601f01601f191660200182016040528015612c41576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612c4b57509392505050565b60606104a46001600160a01b03831660146130b9565b80516060906000819003612cb7575050604080516020810190915260008152919050565b60006003612cc68360026137ed565b612cd09190613b45565b612cdb906004613b67565b90506000612cea8260206137ed565b67ffffffffffffffff811115612d0257612d0261355e565b6040519080825280601f01601f191660200182016040528015612d2c576020820181803683370190505b509050600060405180606001604052806040815260200161421a604091399050600181016020830160005b86811015612db8576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612d57565b506003860660018114612dd25760028114612de357612def565b613d3d60f01b600119830152612def565b603d60f81b6000198301525b505050918152949350505050565b6128d0816000613255565b6000546001600160a01b038316612e3157604051622e076360e81b815260040160405180910390fd5b81600003612e525760405163b562e8dd60e01b815260040160405180910390fd5b611388821115612e7557604051633db1f9af60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083206801000000000000000187029055848352600482528083206001871460e11b4260a01b17851790558051600019868801018152905185927fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d928290030190a40160005550565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612f2b903390899088908890600401613b86565b6020604051808303816000875af1925050508015612f66575060408051601f3d908101601f19168201909252612f6391810190613bc3565b60015b612fc4573d808015612f94576040519150601f19603f3d011682016040523d82523d6000602084013e612f99565b606091505b508051600003612fbc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106130205772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061304c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061306a57662386f26fc10000830492506010015b6305f5e1008310613082576305f5e100830492506008015b612710831061309657612710830492506004015b606483106130a8576064830492506002015b600a83106104a45760010192915050565b606060006130c8836002613b67565b6130d39060026137ed565b67ffffffffffffffff8111156130eb576130eb61355e565b6040519080825280601f01601f191660200182016040528015613115576020820181803683370190505b509050600360fc1b81600081518110613130576131306137d7565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061315f5761315f6137d7565b60200101906001600160f81b031916908160001a9053506000613183846002613b67565b61318e9060016137ed565b90505b6001811115613206576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106131c2576131c26137d7565b1a60f81b8282815181106131d8576131d86137d7565b60200101906001600160f81b031916908160001a90535060049490941c936131ff81613be0565b9050613191565b508315612bc85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401612b43565b600061326083612b7c565b90508060008061327e86600090815260066020526040902080549091565b9150915084156132be57613293818433610675565b6132be576132a1833361040a565b6132be57604051632ce44b5f60e11b815260040160405180910390fd5b80156132c957600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003613357576001860160008181526004602052604081205490036133555760005481146133555760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b604051806107400160405280603a905b60608152602001906001900390816133af5790505090565b6001600160e01b0319811681146128d057600080fd5b6000602082840312156133ef57600080fd5b8135612bc8816133c7565b60005b838110156134155781810151838201526020016133fd565b83811115612a775750506000910152565b6000815180845261343e8160208601602086016133fa565b601f01601f19169290920160200192915050565b602081526000612bc86020830184613426565b60006020828403121561347757600080fd5b5035919050565b80356001600160a01b038116811461349557600080fd5b919050565b600080604083850312156134ad57600080fd5b6134b68361347e565b946020939093013593505050565b6000806000606084860312156134d957600080fd5b6134e28461347e565b92506134f06020850161347e565b9150604084013590509250925092565b60006020828403121561351257600080fd5b612bc88261347e565b8035801515811461349557600080fd5b6000806040838503121561353e57600080fd5b6135478361347e565b91506135556020840161351b565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561358f5761358f61355e565b604051601f8501601f19908116603f011681019082821181831017156135b7576135b761355e565b816040528093508581528686860111156135d057600080fd5b858560208301376000602087830101525050509392505050565b6000806000806080858703121561360057600080fd5b6136098561347e565b93506136176020860161347e565b925060408501359150606085013567ffffffffffffffff81111561363a57600080fd5b8501601f8101871361364b57600080fd5b61365a87823560208401613574565b91505092959194509250565b600082601f83011261367757600080fd5b612bc883833560208501613574565b600080600080600060a0868803121561369e57600080fd5b853567ffffffffffffffff808211156136b657600080fd5b6136c289838a01613666565b965060208801359150808211156136d857600080fd5b6136e489838a01613666565b955060408801359150808211156136fa57600080fd5b61370689838a01613666565b94506137146060890161351b565b9350608088013591508082111561372a57600080fd5b5061373788828901613666565b9150509295509295909350565b6000806040838503121561375757600080fd5b6137608361347e565b91506135556020840161347e565b600181811c9082168061378257607f821691505b6020821081036137a257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016137d0576137d06137a8565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008219821115613800576138006137a8565b500190565b600081516138178185602086016133fa565b9290920192915050565b60008a51613833818460208f016133fa565b8a516138458183860160208f016133fa565b8a51918401019061385a818360208e016133fa565b895161386c8183850160208e016133fa565b8951929091010190613882818360208c016133fa565b87516138948183850160208c016133fa565b87519290910101906138aa818360208a016133fa565b85516138bc8183850160208a016133fa565b85519290910101906138d28183602088016133fa565b019b9a5050505050505050505050565b600083516138f48184602088016133fa565b8351908301906139088183602088016133fa565b01949350505050565b7f7b226e616d65223a2022546865205472616e736974696f6e202300000000000081526000835161394981601a8501602088016133fa565b7f222c20226465736372697074696f6e223a202241204e6f6e2d46756e6769626c601a918401918201527f6520457468657265756d204d6572676520546f6b656e2e222c20226578746572603a8201527f6e616c5f75726c223a202268747470733a2f2f7468657472616e736974696f6e605a8201527f2e777466222c2022696d616765223a2022646174613a696d6167652f7376672b607a8201526a1e1b5b0ed8985cd94d8d0b60aa1b609a8201528351613a0c8160a58401602088016133fa565b61227d60f01b60a5929091019182015260a701949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a5f81601d8501602087016133fa565b91909101601d0192915050565b691e3a39b830b7103c1e9160b11b81528551600090613a9281600a850160208b016133fa565b61011160f51b600a918401918201819052623c9e9160e91b600c8301528751613ac281600f850160208c016133fa565b600f9201918201528551613add816011840160208a016133fa565b6a3337b73a16b9b4bd329e9160a91b601192909101918201528451613b0981601c8401602089016133fa565b01613b1b601c820161111f60f11b9052565b613b28601e820185613805565b671e17ba39b830b71f60c11b815260080198975050505050505050565b600082613b6257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615613b8157613b816137a8565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613bb990830184613426565b9695505050505050565b600060208284031215613bd557600080fd5b8151612bc8816133c7565b600081613bef57613bef6137a8565b50600019019056fe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667222077696474683d223139323022206865696768743d2231303830223e3c726563742077696474683d223139323022206865696768743d2231303830222066696c6c3d22626c61636b22202f3e20202048484848484848484828202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202040484848484848484820204d4848484820202e48484848484848484848484848484848484848484848482020202020202020202020202020204848484848484848484848484848484848484848484848482f2020484848482a20202020202020202020202020254848484848484840202020202020202020202020202020202020202020202020202020202020202020202020202048484848484848484d20202020202020202020202020202020202020202020284848484848484848484848484848484848484848484848484848484848484848484848482a2020202020484848484820202020204848484848484820202020202020202020202020202020202020202020202020202020202020202020202020204848484848484820202020204848484848202020484848482020202020204d48484848484848484820202020202020484848482020202020202020202020204848484848482020202020204048484848484848484840202020202020484848484e6f6e2d46756e6769626c6520457468657265756d204d6572676520546f6b656e202020484848482a2020202020202020484848484848484848484848484848484820202020202020202020202020204d484848484848484848484848484848484848202020202020202025484848482020202020202020202e252525252e20202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202e254848484848482a2020202020484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020204848484848202048484848484848484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202f484848484848484848484820202028484848482020202028484848484848484848482e20202020202020484848484d20202020202020202020204848484848202020202020202048484848484848484848484820202020484848482e202020202020202020202548484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202c48484848484828204d48484848484848484848484848484848484848484848484848482a2020202020202020202020202020202020202020202020202f484848484848484848484848484848484848484848484848484d202020284848484820202848484848484848484848484848484848202020202020202e484848484848484848484848202020202020204848484848484848484848484848484848482020484848482c202020202020202020202020202020202020202020202020202020202020202e4d254848484848484848484848484848252a2e2020202020202020484848484848202020202020202020202020202020202020202c4848484848484848484848484848202020202020202020202020202020202020202048484848484820484848484848484848484848484848484848484848482020202020202020202020202020202020202020202020202020202020202020202020204848484848484848484848484848484848484848482020202020204d48484848402020202020202020202020202020202020202025484848202020202020202020202028484848202020202020202020202020202020202020202048484848482e20202548484848202020484848484848484848484848484d202020202048484848482020202020202020202020202048484848482020202020204848484848484848484848484848202020484848482f4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2020202a484848482020202020202020202020204848484848484848484820202020202020202020202020202020202020204848484848484848484848484820202020202020202020204848484820202c48484848202025484848484848484848484848484848484848484848202020202020484848484848484d202020202c484848484848484848484848484848484848484848484020204848484820484848484848484848484848484848484848202020202020202020202020202020202020202020202020202020202020202020202020202020202020202048484848484848484848484848484848483c7465787420783d223332302220793d223630222066696c6c3d2277686974652220666f6e742d66616d696c793d22436f7572696572204e65772c20436f75726965722c206d6f6e6f73706163652220666f6e742d73697a653d2232347078223e202020484848482e202e484848484848484848484848484848484848482020202020204848484848484848484848482020202020484848484848484848484848484848484848484828202f4848484820202020202020202020202020202020204848484848484848484848482a202020202020202020202020202020202020202020202848484848484848484848482520202020202548484848484848484848484848484825202020202020202e4848484848484848484848484848484848484848482520202020202e2548484848484848484848484848484848482020204848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848484848482020202048484848484848202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020484848484820202020484848484820202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020484848484d202020204848484848202020404848484848484848484848252020202020202020202020484848484848484848202020202020202020202048484848484848484848484848482020204848484825204848484848484848484848484848482a202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020484848484848484848484848484848a26469706673582212203812d2cda04803bbbe2239f88091788c72813f566c850431ba9495486287003b64736f6c634300080f0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.