ETH Price: $2,756.06 (+4.53%)

Token

Thoughts and Aphorisms of a Human Being by .png (PNG)
 

Overview

Max Total Supply

321 PNG

Holders

209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dailyupgrade.eth
Balance
6 PNG
0xe24cba3ad717ea21d00b998cca00eb51e47eebfe
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:
PNG

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-23
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @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);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.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);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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, _status will be _NOT_ENTERED
        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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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 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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @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 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: contracts/PNG.sol

contract PNG is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;
  uint256 public maxMintAmountPerWallet = 2;
  mapping (address => uint256) public ownerTokenMapping;

  bool public paused = true;
  bool public revealed = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0, "Invalid mint amount!");
    require(_mintAmount <= maxMintAmountPerTx, "Max mint amount exceeded");

    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");

    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(ownerTokenMapping[msg.sender] + _mintAmount <= maxMintAmountPerWallet, "Max mints per wallet exceeded");
    _safeMint(_msgSender(), _mintAmount);
    ownerTokenMapping[msg.sender] += _mintAmount;
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setMaxMintAmountPerWallet(uint256 _maxMintAmountPerWallet) public onlyOwner {
    maxMintAmountPerWallet = _maxMintAmountPerWallet;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"ownerTokenMapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000394565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000394565b5060026010556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000c257600080fd5b5060405162003db838038062003db88339818101604052810190620000e89190620004d9565b858581600290805190602001906200010292919062000394565b5080600390805190602001906200011b92919062000394565b506200012c620001a260201b60201c565b60008190555050506200015462000148620001ab60201b60201c565b620001b360201b60201c565b60016009819055506200016d846200027960201b60201c565b82600e8190555062000185826200029360201b60201c565b6200019681620002ad60201b60201c565b505050505050620007fd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000289620002d960201b60201c565b80600d8190555050565b620002a3620002d960201b60201c565b80600f8190555050565b620002bd620002d960201b60201c565b80600c9080519060200190620002d592919062000394565b5050565b620002e9620001ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030f6200036a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035f90620005f9565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a290620006cb565b90600052602060002090601f016020900481019282620003c6576000855562000412565b82601f10620003e157805160ff191683800117855562000412565b8280016001018555821562000412579182015b8281111562000411578251825591602001919060010190620003f4565b5b50905062000421919062000425565b5090565b5b808211156200044057600081600090555060010162000426565b5090565b60006200045b620004558462000644565b6200061b565b9050828152602081018484840111156200047a57620004796200079a565b5b6200048784828562000695565b509392505050565b600082601f830112620004a757620004a662000795565b5b8151620004b984826020860162000444565b91505092915050565b600081519050620004d381620007e3565b92915050565b60008060008060008060c08789031215620004f957620004f8620007a4565b5b600087015167ffffffffffffffff8111156200051a57620005196200079f565b5b6200052889828a016200048f565b965050602087015167ffffffffffffffff8111156200054c576200054b6200079f565b5b6200055a89828a016200048f565b95505060406200056d89828a01620004c2565b94505060606200058089828a01620004c2565b93505060806200059389828a01620004c2565b92505060a087015167ffffffffffffffff811115620005b757620005b66200079f565b5b620005c589828a016200048f565b9150509295509295509295565b6000620005e16020836200067a565b9150620005ee82620007ba565b602082019050919050565b600060208201905081810360008301526200061481620005d2565b9050919050565b6000620006276200063a565b905062000635828262000701565b919050565b6000604051905090565b600067ffffffffffffffff82111562000662576200066162000766565b5b6200066d82620007a9565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620006b557808201518184015260208101905062000698565b83811115620006c5576000848401525b50505050565b60006002820490506001821680620006e457607f821691505b60208210811415620006fb57620006fa62000737565b5b50919050565b6200070c82620007a9565b810181811067ffffffffffffffff821117156200072e576200072d62000766565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620007ee816200068b565b8114620007fa57600080fd5b50565b6135ab806200080d6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461079e578063e0a80853146107c9578063e985e9c5146107f2578063efbd73f41461082f578063f2fde38b1461085857610225565b8063b071401b146106b4578063b88d4fde146106dd578063bc951b91146106f9578063c87b56dd14610724578063c99f774f1461076157610225565b806394354fd0116100f257806394354fd0146105ee57806395d89b4114610619578063a0712d6814610644578063a22cb46514610660578063a45ba8e71461068957610225565b8063715018a61461055a578063766b7d09146105715780637ec4a6591461059a5780638da5cb5b146105c357610225565b80633ccfd60b116101b15780635503a0e8116101755780635503a0e81461045f5780635c975abb1461048a57806362b99ad4146104b55780636352211e146104e057806370a082311461051d57610225565b80633ccfd60b146103af57806342842e0e146103c657806344a0d68a146103e25780634fdd43cb1461040b578063518302271461043457610225565b806313faede6116101f857806313faede6146102eb57806316ba10e01461031657806316c38b3c1461033f57806318160ddd1461036857806323b872dd1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612977565b610881565b60405161025e9190612e04565b60405180910390f35b34801561027357600080fd5b5061027c610913565b6040516102899190612e1f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612a1a565b6109a5565b6040516102c69190612d9d565b60405180910390f35b6102e960048036038101906102e4919061290a565b610a24565b005b3480156102f757600080fd5b50610300610b68565b60405161030d9190612f81565b60405180910390f35b34801561032257600080fd5b5061033d600480360381019061033891906129d1565b610b6e565b005b34801561034b57600080fd5b506103666004803603810190610361919061294a565b610b90565b005b34801561037457600080fd5b5061037d610bb5565b60405161038a9190612f81565b60405180910390f35b6103ad60048036038101906103a891906127f4565b610bcc565b005b3480156103bb57600080fd5b506103c4610ef1565b005b6103e060048036038101906103db91906127f4565b610f89565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612a1a565b610fa9565b005b34801561041757600080fd5b50610432600480360381019061042d91906129d1565b610fbb565b005b34801561044057600080fd5b50610449610fdd565b6040516104569190612e04565b60405180910390f35b34801561046b57600080fd5b50610474610ff0565b6040516104819190612e1f565b60405180910390f35b34801561049657600080fd5b5061049f61107e565b6040516104ac9190612e04565b60405180910390f35b3480156104c157600080fd5b506104ca611091565b6040516104d79190612e1f565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612a1a565b61111f565b6040516105149190612d9d565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612787565b611131565b6040516105519190612f81565b60405180910390f35b34801561056657600080fd5b5061056f6111ea565b005b34801561057d57600080fd5b5061059860048036038101906105939190612a1a565b6111fe565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906129d1565b611210565b005b3480156105cf57600080fd5b506105d8611232565b6040516105e59190612d9d565b60405180910390f35b3480156105fa57600080fd5b5061060361125c565b6040516106109190612f81565b60405180910390f35b34801561062557600080fd5b5061062e611262565b60405161063b9190612e1f565b60405180910390f35b61065e60048036038101906106599190612a1a565b6112f4565b005b34801561066c57600080fd5b50610687600480360381019061068291906128ca565b611570565b005b34801561069557600080fd5b5061069e61167b565b6040516106ab9190612e1f565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612a1a565b611709565b005b6106f760048036038101906106f29190612847565b61171b565b005b34801561070557600080fd5b5061070e61178e565b60405161071b9190612f81565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612a1a565b611794565b6040516107589190612e1f565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612787565b6118ed565b6040516107959190612f81565b60405180910390f35b3480156107aa57600080fd5b506107b3611905565b6040516107c09190612f81565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb919061294a565b61190b565b005b3480156107fe57600080fd5b50610819600480360381019061081491906127b4565b611930565b6040516108269190612e04565b60405180910390f35b34801561083b57600080fd5b5061085660048036038101906108519190612a47565b6119c4565b005b34801561086457600080fd5b5061087f600480360381019061087a9190612787565b611abb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610922906131ec565b80601f016020809104026020016040519081016040528092919081815260200182805461094e906131ec565b801561099b5780601f106109705761010080835404028352916020019161099b565b820191906000526020600020905b81548152906001019060200180831161097e57829003601f168201915b5050505050905090565b60006109b082611b3f565b6109e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2f8261111f565b90508073ffffffffffffffffffffffffffffffffffffffff16610a50611b9e565b73ffffffffffffffffffffffffffffffffffffffff1614610ab357610a7c81610a77611b9e565b611930565b610ab2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610b76611ba6565b80600b9080519060200190610b8c92919061259b565b5050565b610b98611ba6565b80601260006101000a81548160ff02191690831515021790555050565b6000610bbf611c24565b6001546000540303905090565b6000610bd782611c2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4a84611cfb565b91509150610c608187610c5b611b9e565b611d22565b610cac57610c7586610c70611b9e565b611930565b610cab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d208686866001611d66565b8015610d2b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610df985610dd5888887611d6c565b7c020000000000000000000000000000000000000000000000000000000017611d94565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e81576000600185019050600060046000838152602001908152602001600020541415610e7f576000548114610e7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee98686866001611dbf565b505050505050565b610ef9611ba6565b610f01611dc5565b6000610f0b611232565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f2e90612d88565b60006040518083038185875af1925050503d8060008114610f6b576040519150601f19603f3d011682016040523d82523d6000602084013e610f70565b606091505b5050905080610f7e57600080fd5b50610f87611e15565b565b610fa48383836040518060200160405280600081525061171b565b505050565b610fb1611ba6565b80600d8190555050565b610fc3611ba6565b80600c9080519060200190610fd992919061259b565b5050565b601260019054906101000a900460ff1681565b600b8054610ffd906131ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611029906131ec565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461109e906131ec565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca906131ec565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b505050505081565b600061112a82611c2d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f2611ba6565b6111fc6000611e1f565b565b611206611ba6565b8060108190555050565b611218611ba6565b80600a908051906020019061122e92919061259b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060038054611271906131ec565b80601f016020809104026020016040519081016040528092919081815260200182805461129d906131ec565b80156112ea5780601f106112bf576101008083540402835291602001916112ea565b820191906000526020600020905b8154815290600101906020018083116112cd57829003601f168201915b5050505050905090565b8060008111611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612e61565b60405180910390fd5b600f5481111561137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490612ea1565b60405180910390fd5b600e5481611389610bb5565b6113939190613086565b11156113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612f21565b60405180910390fd5b8180600d546113e391906130dc565b341015611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90612f61565b60405180910390fd5b601260009054906101000a900460ff1615611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90612ee1565b60405180910390fd5b60105483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c39190613086565b1115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90612e81565b60405180910390fd5b61151561150f611ee5565b84611eed565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115649190613086565b92505081905550505050565b806007600061157d611b9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162a611b9e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161166f9190612e04565b60405180910390a35050565b600c8054611688906131ec565b80601f01602080910402602001604051908101604052809291908181526020018280546116b4906131ec565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b505050505081565b611711611ba6565b80600f8190555050565b611726848484610bcc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117885761175184848484611f0b565b611787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b606061179f82611b3f565b6117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590612f01565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561188c57600c8054611807906131ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611833906131ec565b80156118805780601f1061185557610100808354040283529160200191611880565b820191906000526020600020905b81548152906001019060200180831161186357829003601f168201915b505050505090506118e8565b600061189661206b565b905060008151116118b657604051806020016040528060008152506118e4565b806118c0846120fd565b600b6040516020016118d493929190612d57565b6040516020818303038152906040525b9150505b919050565b60116020528060005260406000206000915090505481565b600e5481565b611913611ba6565b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90612e61565b60405180910390fd5b600f54811115611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490612ea1565b60405180910390fd5b600e5481611a59610bb5565b611a639190613086565b1115611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b90612f21565b60405180910390fd5b611aac611ba6565b611ab68284611eed565b505050565b611ac3611ba6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90612e41565b60405180910390fd5b611b3c81611e1f565b50565b600081611b4a611c24565b11158015611b59575060005482105b8015611b97575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bae611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611232565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990612ec1565b60405180910390fd5b565b60006001905090565b60008082905080611c3c611c24565b11611cc457600054811015611cc35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cc1575b6000811415611cb7576004600083600190039350838152602001908152602001600020549050611c8c565b8092505050611cf6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d838686846121d5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290612f41565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611f078282604051806020016040528060008152506121de565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f31611b9e565b8786866040518563ffffffff1660e01b8152600401611f539493929190612db8565b602060405180830381600087803b158015611f6d57600080fd5b505af1925050508015611f9e57506040513d601f19601f82011682018060405250810190611f9b91906129a4565b60015b612018573d8060008114611fce576040519150601f19603f3d011682016040523d82523d6000602084013e611fd3565b606091505b50600081511415612010576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461207a906131ec565b80601f01602080910402602001604051908101604052809291908181526020018280546120a6906131ec565b80156120f35780601f106120c8576101008083540402835291602001916120f3565b820191906000526020600020905b8154815290600101906020018083116120d657829003601f168201915b5050505050905090565b60606000600161210c8461227b565b01905060008167ffffffffffffffff81111561212b5761212a6132dc565b5b6040519080825280601f01601f19166020018201604052801561215d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156121ca578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121b4576121b361327e565b5b04945060008514156121c5576121ca565b61216b565b819350505050919050565b60009392505050565b6121e883836123ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461227657600080549050600083820390505b6122286000868380600101945086611f0b565b61225e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061221557816000541461227357600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122d9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816122cf576122ce61327e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612316576d04ee2d6d415b85acef8100000000838161230c5761230b61327e565b5b0492506020810190505b662386f26fc10000831061234557662386f26fc10000838161233b5761233a61327e565b5b0492506010810190505b6305f5e100831061236e576305f5e10083816123645761236361327e565b5b0492506008810190505b61271083106123935761271083816123895761238861327e565b5b0492506004810190505b606483106123b657606483816123ac576123ab61327e565b5b0492506002810190505b600a83106123c5576001810190505b80915050919050565b600080549050600082141561240f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61241c6000848385611d66565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612493836124846000866000611d6c565b61248d8561258b565b17611d94565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461253457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124f9565b506000821415612570576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125866000848385611dbf565b505050565b60006001821460e11b9050919050565b8280546125a7906131ec565b90600052602060002090601f0160209004810192826125c95760008555612610565b82601f106125e257805160ff1916838001178555612610565b82800160010185558215612610579182015b8281111561260f5782518255916020019190600101906125f4565b5b50905061261d9190612621565b5090565b5b8082111561263a576000816000905550600101612622565b5090565b600061265161264c84612fc1565b612f9c565b90508281526020810184848401111561266d5761266c613310565b5b6126788482856131aa565b509392505050565b600061269361268e84612ff2565b612f9c565b9050828152602081018484840111156126af576126ae613310565b5b6126ba8482856131aa565b509392505050565b6000813590506126d181613519565b92915050565b6000813590506126e681613530565b92915050565b6000813590506126fb81613547565b92915050565b60008151905061271081613547565b92915050565b600082601f83011261272b5761272a61330b565b5b813561273b84826020860161263e565b91505092915050565b600082601f8301126127595761275861330b565b5b8135612769848260208601612680565b91505092915050565b6000813590506127818161355e565b92915050565b60006020828403121561279d5761279c61331a565b5b60006127ab848285016126c2565b91505092915050565b600080604083850312156127cb576127ca61331a565b5b60006127d9858286016126c2565b92505060206127ea858286016126c2565b9150509250929050565b60008060006060848603121561280d5761280c61331a565b5b600061281b868287016126c2565b935050602061282c868287016126c2565b925050604061283d86828701612772565b9150509250925092565b600080600080608085870312156128615761286061331a565b5b600061286f878288016126c2565b9450506020612880878288016126c2565b935050604061289187828801612772565b925050606085013567ffffffffffffffff8111156128b2576128b1613315565b5b6128be87828801612716565b91505092959194509250565b600080604083850312156128e1576128e061331a565b5b60006128ef858286016126c2565b9250506020612900858286016126d7565b9150509250929050565b600080604083850312156129215761292061331a565b5b600061292f858286016126c2565b925050602061294085828601612772565b9150509250929050565b6000602082840312156129605761295f61331a565b5b600061296e848285016126d7565b91505092915050565b60006020828403121561298d5761298c61331a565b5b600061299b848285016126ec565b91505092915050565b6000602082840312156129ba576129b961331a565b5b60006129c884828501612701565b91505092915050565b6000602082840312156129e7576129e661331a565b5b600082013567ffffffffffffffff811115612a0557612a04613315565b5b612a1184828501612744565b91505092915050565b600060208284031215612a3057612a2f61331a565b5b6000612a3e84828501612772565b91505092915050565b60008060408385031215612a5e57612a5d61331a565b5b6000612a6c85828601612772565b9250506020612a7d858286016126c2565b9150509250929050565b612a9081613136565b82525050565b612a9f81613148565b82525050565b6000612ab082613038565b612aba818561304e565b9350612aca8185602086016131b9565b612ad38161331f565b840191505092915050565b6000612ae982613043565b612af3818561306a565b9350612b038185602086016131b9565b612b0c8161331f565b840191505092915050565b6000612b2282613043565b612b2c818561307b565b9350612b3c8185602086016131b9565b80840191505092915050565b60008154612b55816131ec565b612b5f818661307b565b94506001821660008114612b7a5760018114612b8b57612bbe565b60ff19831686528186019350612bbe565b612b9485613023565b60005b83811015612bb657815481890152600182019150602081019050612b97565b838801955050505b50505092915050565b6000612bd460268361306a565b9150612bdf82613330565b604082019050919050565b6000612bf760148361306a565b9150612c028261337f565b602082019050919050565b6000612c1a601d8361306a565b9150612c25826133a8565b602082019050919050565b6000612c3d60188361306a565b9150612c48826133d1565b602082019050919050565b6000612c6060208361306a565b9150612c6b826133fa565b602082019050919050565b6000612c8360178361306a565b9150612c8e82613423565b602082019050919050565b6000612ca6602f8361306a565b9150612cb18261344c565b604082019050919050565b6000612cc960008361305f565b9150612cd48261349b565b600082019050919050565b6000612cec60148361306a565b9150612cf78261349e565b602082019050919050565b6000612d0f601f8361306a565b9150612d1a826134c7565b602082019050919050565b6000612d3260138361306a565b9150612d3d826134f0565b602082019050919050565b612d51816131a0565b82525050565b6000612d638286612b17565b9150612d6f8285612b17565b9150612d7b8284612b48565b9150819050949350505050565b6000612d9382612cbc565b9150819050919050565b6000602082019050612db26000830184612a87565b92915050565b6000608082019050612dcd6000830187612a87565b612dda6020830186612a87565b612de76040830185612d48565b8181036060830152612df98184612aa5565b905095945050505050565b6000602082019050612e196000830184612a96565b92915050565b60006020820190508181036000830152612e398184612ade565b905092915050565b60006020820190508181036000830152612e5a81612bc7565b9050919050565b60006020820190508181036000830152612e7a81612bea565b9050919050565b60006020820190508181036000830152612e9a81612c0d565b9050919050565b60006020820190508181036000830152612eba81612c30565b9050919050565b60006020820190508181036000830152612eda81612c53565b9050919050565b60006020820190508181036000830152612efa81612c76565b9050919050565b60006020820190508181036000830152612f1a81612c99565b9050919050565b60006020820190508181036000830152612f3a81612cdf565b9050919050565b60006020820190508181036000830152612f5a81612d02565b9050919050565b60006020820190508181036000830152612f7a81612d25565b9050919050565b6000602082019050612f966000830184612d48565b92915050565b6000612fa6612fb7565b9050612fb2828261321e565b919050565b6000604051905090565b600067ffffffffffffffff821115612fdc57612fdb6132dc565b5b612fe58261331f565b9050602081019050919050565b600067ffffffffffffffff82111561300d5761300c6132dc565b5b6130168261331f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613091826131a0565b915061309c836131a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130d1576130d061324f565b5b828201905092915050565b60006130e7826131a0565b91506130f2836131a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312b5761312a61324f565b5b828202905092915050565b600061314182613180565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131d75780820151818401526020810190506131bc565b838111156131e6576000848401525b50505050565b6000600282049050600182168061320457607f821691505b60208210811415613218576132176132ad565b5b50919050565b6132278261331f565b810181811067ffffffffffffffff82111715613246576132456132dc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564000000600082015250565b7f4d6178206d696e7420616d6f756e742065786365656465640000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61352281613136565b811461352d57600080fd5b50565b61353981613148565b811461354457600080fd5b50565b61355081613154565b811461355b57600080fd5b50565b613567816131a0565b811461357257600080fd5b5056fea26469706673582212200c9c5302561124783243c837033229761b77b84faa980381517c02f2a007380e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000002f54686f756768747320616e64204170686f7269736d73206f6620612048756d616e204265696e67206279202e706e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504e4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461079e578063e0a80853146107c9578063e985e9c5146107f2578063efbd73f41461082f578063f2fde38b1461085857610225565b8063b071401b146106b4578063b88d4fde146106dd578063bc951b91146106f9578063c87b56dd14610724578063c99f774f1461076157610225565b806394354fd0116100f257806394354fd0146105ee57806395d89b4114610619578063a0712d6814610644578063a22cb46514610660578063a45ba8e71461068957610225565b8063715018a61461055a578063766b7d09146105715780637ec4a6591461059a5780638da5cb5b146105c357610225565b80633ccfd60b116101b15780635503a0e8116101755780635503a0e81461045f5780635c975abb1461048a57806362b99ad4146104b55780636352211e146104e057806370a082311461051d57610225565b80633ccfd60b146103af57806342842e0e146103c657806344a0d68a146103e25780634fdd43cb1461040b578063518302271461043457610225565b806313faede6116101f857806313faede6146102eb57806316ba10e01461031657806316c38b3c1461033f57806318160ddd1461036857806323b872dd1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612977565b610881565b60405161025e9190612e04565b60405180910390f35b34801561027357600080fd5b5061027c610913565b6040516102899190612e1f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612a1a565b6109a5565b6040516102c69190612d9d565b60405180910390f35b6102e960048036038101906102e4919061290a565b610a24565b005b3480156102f757600080fd5b50610300610b68565b60405161030d9190612f81565b60405180910390f35b34801561032257600080fd5b5061033d600480360381019061033891906129d1565b610b6e565b005b34801561034b57600080fd5b506103666004803603810190610361919061294a565b610b90565b005b34801561037457600080fd5b5061037d610bb5565b60405161038a9190612f81565b60405180910390f35b6103ad60048036038101906103a891906127f4565b610bcc565b005b3480156103bb57600080fd5b506103c4610ef1565b005b6103e060048036038101906103db91906127f4565b610f89565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612a1a565b610fa9565b005b34801561041757600080fd5b50610432600480360381019061042d91906129d1565b610fbb565b005b34801561044057600080fd5b50610449610fdd565b6040516104569190612e04565b60405180910390f35b34801561046b57600080fd5b50610474610ff0565b6040516104819190612e1f565b60405180910390f35b34801561049657600080fd5b5061049f61107e565b6040516104ac9190612e04565b60405180910390f35b3480156104c157600080fd5b506104ca611091565b6040516104d79190612e1f565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612a1a565b61111f565b6040516105149190612d9d565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612787565b611131565b6040516105519190612f81565b60405180910390f35b34801561056657600080fd5b5061056f6111ea565b005b34801561057d57600080fd5b5061059860048036038101906105939190612a1a565b6111fe565b005b3480156105a657600080fd5b506105c160048036038101906105bc91906129d1565b611210565b005b3480156105cf57600080fd5b506105d8611232565b6040516105e59190612d9d565b60405180910390f35b3480156105fa57600080fd5b5061060361125c565b6040516106109190612f81565b60405180910390f35b34801561062557600080fd5b5061062e611262565b60405161063b9190612e1f565b60405180910390f35b61065e60048036038101906106599190612a1a565b6112f4565b005b34801561066c57600080fd5b50610687600480360381019061068291906128ca565b611570565b005b34801561069557600080fd5b5061069e61167b565b6040516106ab9190612e1f565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612a1a565b611709565b005b6106f760048036038101906106f29190612847565b61171b565b005b34801561070557600080fd5b5061070e61178e565b60405161071b9190612f81565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612a1a565b611794565b6040516107589190612e1f565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612787565b6118ed565b6040516107959190612f81565b60405180910390f35b3480156107aa57600080fd5b506107b3611905565b6040516107c09190612f81565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb919061294a565b61190b565b005b3480156107fe57600080fd5b50610819600480360381019061081491906127b4565b611930565b6040516108269190612e04565b60405180910390f35b34801561083b57600080fd5b5061085660048036038101906108519190612a47565b6119c4565b005b34801561086457600080fd5b5061087f600480360381019061087a9190612787565b611abb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610922906131ec565b80601f016020809104026020016040519081016040528092919081815260200182805461094e906131ec565b801561099b5780601f106109705761010080835404028352916020019161099b565b820191906000526020600020905b81548152906001019060200180831161097e57829003601f168201915b5050505050905090565b60006109b082611b3f565b6109e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2f8261111f565b90508073ffffffffffffffffffffffffffffffffffffffff16610a50611b9e565b73ffffffffffffffffffffffffffffffffffffffff1614610ab357610a7c81610a77611b9e565b611930565b610ab2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610b76611ba6565b80600b9080519060200190610b8c92919061259b565b5050565b610b98611ba6565b80601260006101000a81548160ff02191690831515021790555050565b6000610bbf611c24565b6001546000540303905090565b6000610bd782611c2d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4a84611cfb565b91509150610c608187610c5b611b9e565b611d22565b610cac57610c7586610c70611b9e565b611930565b610cab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d13576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d208686866001611d66565b8015610d2b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610df985610dd5888887611d6c565b7c020000000000000000000000000000000000000000000000000000000017611d94565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e81576000600185019050600060046000838152602001908152602001600020541415610e7f576000548114610e7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee98686866001611dbf565b505050505050565b610ef9611ba6565b610f01611dc5565b6000610f0b611232565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f2e90612d88565b60006040518083038185875af1925050503d8060008114610f6b576040519150601f19603f3d011682016040523d82523d6000602084013e610f70565b606091505b5050905080610f7e57600080fd5b50610f87611e15565b565b610fa48383836040518060200160405280600081525061171b565b505050565b610fb1611ba6565b80600d8190555050565b610fc3611ba6565b80600c9080519060200190610fd992919061259b565b5050565b601260019054906101000a900460ff1681565b600b8054610ffd906131ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611029906131ec565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461109e906131ec565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca906131ec565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b505050505081565b600061112a82611c2d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111f2611ba6565b6111fc6000611e1f565b565b611206611ba6565b8060108190555050565b611218611ba6565b80600a908051906020019061122e92919061259b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060038054611271906131ec565b80601f016020809104026020016040519081016040528092919081815260200182805461129d906131ec565b80156112ea5780601f106112bf576101008083540402835291602001916112ea565b820191906000526020600020905b8154815290600101906020018083116112cd57829003601f168201915b5050505050905090565b8060008111611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612e61565b60405180910390fd5b600f5481111561137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490612ea1565b60405180910390fd5b600e5481611389610bb5565b6113939190613086565b11156113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612f21565b60405180910390fd5b8180600d546113e391906130dc565b341015611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90612f61565b60405180910390fd5b601260009054906101000a900460ff1615611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90612ee1565b60405180910390fd5b60105483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c39190613086565b1115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90612e81565b60405180910390fd5b61151561150f611ee5565b84611eed565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115649190613086565b92505081905550505050565b806007600061157d611b9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162a611b9e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161166f9190612e04565b60405180910390a35050565b600c8054611688906131ec565b80601f01602080910402602001604051908101604052809291908181526020018280546116b4906131ec565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b505050505081565b611711611ba6565b80600f8190555050565b611726848484610bcc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117885761175184848484611f0b565b611787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b606061179f82611b3f565b6117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590612f01565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561188c57600c8054611807906131ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611833906131ec565b80156118805780601f1061185557610100808354040283529160200191611880565b820191906000526020600020905b81548152906001019060200180831161186357829003601f168201915b505050505090506118e8565b600061189661206b565b905060008151116118b657604051806020016040528060008152506118e4565b806118c0846120fd565b600b6040516020016118d493929190612d57565b6040516020818303038152906040525b9150505b919050565b60116020528060005260406000206000915090505481565b600e5481565b611913611ba6565b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90612e61565b60405180910390fd5b600f54811115611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490612ea1565b60405180910390fd5b600e5481611a59610bb5565b611a639190613086565b1115611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b90612f21565b60405180910390fd5b611aac611ba6565b611ab68284611eed565b505050565b611ac3611ba6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90612e41565b60405180910390fd5b611b3c81611e1f565b50565b600081611b4a611c24565b11158015611b59575060005482105b8015611b97575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bae611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611232565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990612ec1565b60405180910390fd5b565b60006001905090565b60008082905080611c3c611c24565b11611cc457600054811015611cc35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cc1575b6000811415611cb7576004600083600190039350838152602001908152602001600020549050611c8c565b8092505050611cf6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d838686846121d5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290612f41565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611f078282604051806020016040528060008152506121de565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f31611b9e565b8786866040518563ffffffff1660e01b8152600401611f539493929190612db8565b602060405180830381600087803b158015611f6d57600080fd5b505af1925050508015611f9e57506040513d601f19601f82011682018060405250810190611f9b91906129a4565b60015b612018573d8060008114611fce576040519150601f19603f3d011682016040523d82523d6000602084013e611fd3565b606091505b50600081511415612010576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461207a906131ec565b80601f01602080910402602001604051908101604052809291908181526020018280546120a6906131ec565b80156120f35780601f106120c8576101008083540402835291602001916120f3565b820191906000526020600020905b8154815290600101906020018083116120d657829003601f168201915b5050505050905090565b60606000600161210c8461227b565b01905060008167ffffffffffffffff81111561212b5761212a6132dc565b5b6040519080825280601f01601f19166020018201604052801561215d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156121ca578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121b4576121b361327e565b5b04945060008514156121c5576121ca565b61216b565b819350505050919050565b60009392505050565b6121e883836123ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461227657600080549050600083820390505b6122286000868380600101945086611f0b565b61225e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061221557816000541461227357600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122d9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816122cf576122ce61327e565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612316576d04ee2d6d415b85acef8100000000838161230c5761230b61327e565b5b0492506020810190505b662386f26fc10000831061234557662386f26fc10000838161233b5761233a61327e565b5b0492506010810190505b6305f5e100831061236e576305f5e10083816123645761236361327e565b5b0492506008810190505b61271083106123935761271083816123895761238861327e565b5b0492506004810190505b606483106123b657606483816123ac576123ab61327e565b5b0492506002810190505b600a83106123c5576001810190505b80915050919050565b600080549050600082141561240f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61241c6000848385611d66565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612493836124846000866000611d6c565b61248d8561258b565b17611d94565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461253457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124f9565b506000821415612570576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125866000848385611dbf565b505050565b60006001821460e11b9050919050565b8280546125a7906131ec565b90600052602060002090601f0160209004810192826125c95760008555612610565b82601f106125e257805160ff1916838001178555612610565b82800160010185558215612610579182015b8281111561260f5782518255916020019190600101906125f4565b5b50905061261d9190612621565b5090565b5b8082111561263a576000816000905550600101612622565b5090565b600061265161264c84612fc1565b612f9c565b90508281526020810184848401111561266d5761266c613310565b5b6126788482856131aa565b509392505050565b600061269361268e84612ff2565b612f9c565b9050828152602081018484840111156126af576126ae613310565b5b6126ba8482856131aa565b509392505050565b6000813590506126d181613519565b92915050565b6000813590506126e681613530565b92915050565b6000813590506126fb81613547565b92915050565b60008151905061271081613547565b92915050565b600082601f83011261272b5761272a61330b565b5b813561273b84826020860161263e565b91505092915050565b600082601f8301126127595761275861330b565b5b8135612769848260208601612680565b91505092915050565b6000813590506127818161355e565b92915050565b60006020828403121561279d5761279c61331a565b5b60006127ab848285016126c2565b91505092915050565b600080604083850312156127cb576127ca61331a565b5b60006127d9858286016126c2565b92505060206127ea858286016126c2565b9150509250929050565b60008060006060848603121561280d5761280c61331a565b5b600061281b868287016126c2565b935050602061282c868287016126c2565b925050604061283d86828701612772565b9150509250925092565b600080600080608085870312156128615761286061331a565b5b600061286f878288016126c2565b9450506020612880878288016126c2565b935050604061289187828801612772565b925050606085013567ffffffffffffffff8111156128b2576128b1613315565b5b6128be87828801612716565b91505092959194509250565b600080604083850312156128e1576128e061331a565b5b60006128ef858286016126c2565b9250506020612900858286016126d7565b9150509250929050565b600080604083850312156129215761292061331a565b5b600061292f858286016126c2565b925050602061294085828601612772565b9150509250929050565b6000602082840312156129605761295f61331a565b5b600061296e848285016126d7565b91505092915050565b60006020828403121561298d5761298c61331a565b5b600061299b848285016126ec565b91505092915050565b6000602082840312156129ba576129b961331a565b5b60006129c884828501612701565b91505092915050565b6000602082840312156129e7576129e661331a565b5b600082013567ffffffffffffffff811115612a0557612a04613315565b5b612a1184828501612744565b91505092915050565b600060208284031215612a3057612a2f61331a565b5b6000612a3e84828501612772565b91505092915050565b60008060408385031215612a5e57612a5d61331a565b5b6000612a6c85828601612772565b9250506020612a7d858286016126c2565b9150509250929050565b612a9081613136565b82525050565b612a9f81613148565b82525050565b6000612ab082613038565b612aba818561304e565b9350612aca8185602086016131b9565b612ad38161331f565b840191505092915050565b6000612ae982613043565b612af3818561306a565b9350612b038185602086016131b9565b612b0c8161331f565b840191505092915050565b6000612b2282613043565b612b2c818561307b565b9350612b3c8185602086016131b9565b80840191505092915050565b60008154612b55816131ec565b612b5f818661307b565b94506001821660008114612b7a5760018114612b8b57612bbe565b60ff19831686528186019350612bbe565b612b9485613023565b60005b83811015612bb657815481890152600182019150602081019050612b97565b838801955050505b50505092915050565b6000612bd460268361306a565b9150612bdf82613330565b604082019050919050565b6000612bf760148361306a565b9150612c028261337f565b602082019050919050565b6000612c1a601d8361306a565b9150612c25826133a8565b602082019050919050565b6000612c3d60188361306a565b9150612c48826133d1565b602082019050919050565b6000612c6060208361306a565b9150612c6b826133fa565b602082019050919050565b6000612c8360178361306a565b9150612c8e82613423565b602082019050919050565b6000612ca6602f8361306a565b9150612cb18261344c565b604082019050919050565b6000612cc960008361305f565b9150612cd48261349b565b600082019050919050565b6000612cec60148361306a565b9150612cf78261349e565b602082019050919050565b6000612d0f601f8361306a565b9150612d1a826134c7565b602082019050919050565b6000612d3260138361306a565b9150612d3d826134f0565b602082019050919050565b612d51816131a0565b82525050565b6000612d638286612b17565b9150612d6f8285612b17565b9150612d7b8284612b48565b9150819050949350505050565b6000612d9382612cbc565b9150819050919050565b6000602082019050612db26000830184612a87565b92915050565b6000608082019050612dcd6000830187612a87565b612dda6020830186612a87565b612de76040830185612d48565b8181036060830152612df98184612aa5565b905095945050505050565b6000602082019050612e196000830184612a96565b92915050565b60006020820190508181036000830152612e398184612ade565b905092915050565b60006020820190508181036000830152612e5a81612bc7565b9050919050565b60006020820190508181036000830152612e7a81612bea565b9050919050565b60006020820190508181036000830152612e9a81612c0d565b9050919050565b60006020820190508181036000830152612eba81612c30565b9050919050565b60006020820190508181036000830152612eda81612c53565b9050919050565b60006020820190508181036000830152612efa81612c76565b9050919050565b60006020820190508181036000830152612f1a81612c99565b9050919050565b60006020820190508181036000830152612f3a81612cdf565b9050919050565b60006020820190508181036000830152612f5a81612d02565b9050919050565b60006020820190508181036000830152612f7a81612d25565b9050919050565b6000602082019050612f966000830184612d48565b92915050565b6000612fa6612fb7565b9050612fb2828261321e565b919050565b6000604051905090565b600067ffffffffffffffff821115612fdc57612fdb6132dc565b5b612fe58261331f565b9050602081019050919050565b600067ffffffffffffffff82111561300d5761300c6132dc565b5b6130168261331f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613091826131a0565b915061309c836131a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130d1576130d061324f565b5b828201905092915050565b60006130e7826131a0565b91506130f2836131a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561312b5761312a61324f565b5b828202905092915050565b600061314182613180565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131d75780820151818401526020810190506131bc565b838111156131e6576000848401525b50505050565b6000600282049050600182168061320457607f821691505b60208210811415613218576132176132ad565b5b50919050565b6132278261331f565b810181811067ffffffffffffffff82111715613246576132456132dc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4d6178206d696e7473207065722077616c6c6574206578636565646564000000600082015250565b7f4d6178206d696e7420616d6f756e742065786365656465640000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61352281613136565b811461352d57600080fd5b50565b61353981613148565b811461354457600080fd5b50565b61355081613154565b811461355b57600080fd5b50565b613567816131a0565b811461357257600080fd5b5056fea26469706673582212200c9c5302561124783243c837033229761b77b84faa980381517c02f2a007380e64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000002f54686f756768747320616e64204170686f7269736d73206f6620612048756d616e204265696e67206279202e706e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504e4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Thoughts and Aphorisms of a Human Being by .png
Arg [1] : _tokenSymbol (string): PNG
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 321
Arg [4] : _maxMintAmountPerTx (uint256): 1
Arg [5] : _hiddenMetadataUri (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000141
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [7] : 54686f756768747320616e64204170686f7269736d73206f6620612048756d61
Arg [8] : 6e204265696e67206279202e706e670000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 504e470000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

82799:3524:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49738:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50640:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57131:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56564:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82999:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85871:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85977:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46391:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60770:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86060:150;;;;;;;;;;;;;:::i;:::-;;63691:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85259:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85627:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83226:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82921:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83196:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82888:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52033:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47575:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30517:103;;;;;;;;;;;;;:::i;:::-;;85475:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85765:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29869:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83052:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50816:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84072:379;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57689:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82959:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85339:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64482:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83090:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84721:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83136:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83023:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85172:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58080:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84459:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30775:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49738:639;49823:4;50162:10;50147:25;;:11;:25;;;;:102;;;;50239:10;50224:25;;:11;:25;;;;50147:102;:179;;;;50316:10;50301:25;;:11;:25;;;;50147:179;50127:199;;49738:639;;;:::o;50640:100::-;50694:13;50727:5;50720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50640:100;:::o;57131:218::-;57207:7;57232:16;57240:7;57232;:16::i;:::-;57227:64;;57257:34;;;;;;;;;;;;;;57227:64;57311:15;:24;57327:7;57311:24;;;;;;;;;;;:30;;;;;;;;;;;;57304:37;;57131:218;;;:::o;56564:408::-;56653:13;56669:16;56677:7;56669;:16::i;:::-;56653:32;;56725:5;56702:28;;:19;:17;:19::i;:::-;:28;;;56698:175;;56750:44;56767:5;56774:19;:17;:19::i;:::-;56750:16;:44::i;:::-;56745:128;;56822:35;;;;;;;;;;;;;;56745:128;56698:175;56918:2;56885:15;:24;56901:7;56885:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56956:7;56952:2;56936:28;;56945:5;56936:28;;;;;;;;;;;;56642:330;56564:408;;:::o;82999:19::-;;;;:::o;85871:100::-;29755:13;:11;:13::i;:::-;85955:10:::1;85943:9;:22;;;;;;;;;;;;:::i;:::-;;85871:100:::0;:::o;85977:77::-;29755:13;:11;:13::i;:::-;86042:6:::1;86033;;:15;;;;;;;;;;;;;;;;;;85977:77:::0;:::o;46391:323::-;46452:7;46680:15;:13;:15::i;:::-;46665:12;;46649:13;;:28;:46;46642:53;;46391:323;:::o;60770:2825::-;60912:27;60942;60961:7;60942:18;:27::i;:::-;60912:57;;61027:4;60986:45;;61002:19;60986:45;;;60982:86;;61040:28;;;;;;;;;;;;;;60982:86;61082:27;61111:23;61138:35;61165:7;61138:26;:35::i;:::-;61081:92;;;;61273:68;61298:15;61315:4;61321:19;:17;:19::i;:::-;61273:24;:68::i;:::-;61268:180;;61361:43;61378:4;61384:19;:17;:19::i;:::-;61361:16;:43::i;:::-;61356:92;;61413:35;;;;;;;;;;;;;;61356:92;61268:180;61479:1;61465:16;;:2;:16;;;61461:52;;;61490:23;;;;;;;;;;;;;;61461:52;61526:43;61548:4;61554:2;61558:7;61567:1;61526:21;:43::i;:::-;61662:15;61659:160;;;61802:1;61781:19;61774:30;61659:160;62199:18;:24;62218:4;62199:24;;;;;;;;;;;;;;;;62197:26;;;;;;;;;;;;62268:18;:22;62287:2;62268:22;;;;;;;;;;;;;;;;62266:24;;;;;;;;;;;62590:146;62627:2;62676:45;62691:4;62697:2;62701:19;62676:14;:45::i;:::-;42790:8;62648:73;62590:18;:146::i;:::-;62561:17;:26;62579:7;62561:26;;;;;;;;;;;:175;;;;62907:1;42790:8;62856:19;:47;:52;62852:627;;;62929:19;62961:1;62951:7;:11;62929:33;;63118:1;63084:17;:30;63102:11;63084:30;;;;;;;;;;;;:35;63080:384;;;63222:13;;63207:11;:28;63203:242;;63402:19;63369:17;:30;63387:11;63369:30;;;;;;;;;;;:52;;;;63203:242;63080:384;62910:569;62852:627;63526:7;63522:2;63507:27;;63516:4;63507:27;;;;;;;;;;;;63545:42;63566:4;63572:2;63576:7;63585:1;63545:20;:42::i;:::-;60901:2694;;;60770:2825;;;:::o;86060:150::-;29755:13;:11;:13::i;:::-;17579:21:::1;:19;:21::i;:::-;86118:7:::2;86139;:5;:7::i;:::-;86131:21;;86160;86131:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86117:69;;;86201:2;86193:11;;;::::0;::::2;;86110:100;17623:20:::1;:18;:20::i;:::-;86060:150::o:0;63691:193::-;63837:39;63854:4;63860:2;63864:7;63837:39;;;;;;;;;;;;:16;:39::i;:::-;63691:193;;;:::o;85259:74::-;29755:13;:11;:13::i;:::-;85322:5:::1;85315:4;:12;;;;85259:74:::0;:::o;85627:132::-;29755:13;:11;:13::i;:::-;85735:18:::1;85715:17;:38;;;;;;;;;;;;:::i;:::-;;85627:132:::0;:::o;83226:27::-;;;;;;;;;;;;;:::o;82921:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;83196:25::-;;;;;;;;;;;;;:::o;82888:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52033:152::-;52105:7;52148:27;52167:7;52148:18;:27::i;:::-;52125:52;;52033:152;;;:::o;47575:233::-;47647:7;47688:1;47671:19;;:5;:19;;;47667:60;;;47699:28;;;;;;;;;;;;;;47667:60;41734:13;47745:18;:25;47764:5;47745:25;;;;;;;;;;;;;;;;:55;47738:62;;47575:233;;;:::o;30517:103::-;29755:13;:11;:13::i;:::-;30582:30:::1;30609:1;30582:18;:30::i;:::-;30517:103::o:0;85475:146::-;29755:13;:11;:13::i;:::-;85592:23:::1;85567:22;:48;;;;85475:146:::0;:::o;85765:100::-;29755:13;:11;:13::i;:::-;85849:10:::1;85837:9;:22;;;;;;;;;;;;:::i;:::-;;85765:100:::0;:::o;29869:87::-;29915:7;29942:6;;;;;;;;;;;29935:13;;29869:87;:::o;83052:33::-;;;;:::o;50816:104::-;50872:13;50905:7;50898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50816:104;:::o;84072:379::-;84137:11;83725:1;83711:11;:15;83703:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;83781:18;;83766:11;:33;;83758:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;83876:9;;83861:11;83845:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;83837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;84170:11:::1;84017;84010:4;;:18;;;;:::i;:::-;83997:9;:31;;83989:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;84199:6:::2;;;;;;;;;;;84198:7;84190:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;84295:22;;84280:11;84248:17;:29;84266:10;84248:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:69;;84240:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;84358:36;84368:12;:10;:12::i;:::-;84382:11;84358:9;:36::i;:::-;84434:11;84401:17;:29;84419:10;84401:29;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;83919:1:::1;84072:379:::0;;:::o;57689:234::-;57836:8;57784:18;:39;57803:19;:17;:19::i;:::-;57784:39;;;;;;;;;;;;;;;:49;57824:8;57784:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57896:8;57860:55;;57875:19;:17;:19::i;:::-;57860:55;;;57906:8;57860:55;;;;;;:::i;:::-;;;;;;;;57689:234;;:::o;82959:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85339:130::-;29755:13;:11;:13::i;:::-;85444:19:::1;85423:18;:40;;;;85339:130:::0;:::o;64482:407::-;64657:31;64670:4;64676:2;64680:7;64657:12;:31::i;:::-;64721:1;64703:2;:14;;;:19;64699:183;;64742:56;64773:4;64779:2;64783:7;64792:5;64742:30;:56::i;:::-;64737:145;;64826:40;;;;;;;;;;;;;;64737:145;64699:183;64482:407;;;;:::o;83090:41::-;;;;:::o;84721:445::-;84795:13;84825:17;84833:8;84825:7;:17::i;:::-;84817:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;84919:5;84907:17;;:8;;;;;;;;;;;:17;;;84903:64;;;84942:17;84935:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84903:64;84975:28;85006:10;:8;:10::i;:::-;84975:41;;85061:1;85036:14;85030:28;:32;:130;;;;;;;;;;;;;;;;;85098:14;85114:19;:8;:17;:19::i;:::-;85135:9;85081:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85030:130;85023:137;;;84721:445;;;;:::o;83136:53::-;;;;;;;;;;;;;;;;;:::o;83023:24::-;;;;:::o;85172:81::-;29755:13;:11;:13::i;:::-;85241:6:::1;85230:8;;:17;;;;;;;;;;;;;;;;;;85172:81:::0;:::o;58080:164::-;58177:4;58201:18;:25;58220:5;58201:25;;;;;;;;;;;;;;;:35;58227:8;58201:35;;;;;;;;;;;;;;;;;;;;;;;;;58194:42;;58080:164;;;;:::o;84459:155::-;84545:11;83725:1;83711:11;:15;83703:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;83781:18;;83766:11;:33;;83758:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;83876:9;;83861:11;83845:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;83837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29755:13:::1;:11;:13::i;:::-;84575:33:::2;84585:9;84596:11;84575:9;:33::i;:::-;84459:155:::0;;;:::o;30775:201::-;29755:13;:11;:13::i;:::-;30884:1:::1;30864:22;;:8;:22;;;;30856:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30940:28;30959:8;30940:18;:28::i;:::-;30775:201:::0;:::o;58502:282::-;58567:4;58623:7;58604:15;:13;:15::i;:::-;:26;;:66;;;;;58657:13;;58647:7;:23;58604:66;:153;;;;;58756:1;42510:8;58708:17;:26;58726:7;58708:26;;;;;;;;;;;;:44;:49;58604:153;58584:173;;58502:282;;;:::o;80810:105::-;80870:7;80897:10;80890:17;;80810:105;:::o;30034:132::-;30109:12;:10;:12::i;:::-;30098:23;;:7;:5;:7::i;:::-;:23;;;30090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30034:132::o;84620:95::-;84685:7;84708:1;84701:8;;84620:95;:::o;53188:1275::-;53255:7;53275:12;53290:7;53275:22;;53358:4;53339:15;:13;:15::i;:::-;:23;53335:1061;;53392:13;;53385:4;:20;53381:1015;;;53430:14;53447:17;:23;53465:4;53447:23;;;;;;;;;;;;53430:40;;53564:1;42510:8;53536:6;:24;:29;53532:845;;;54201:113;54218:1;54208:6;:11;54201:113;;;54261:17;:25;54279:6;;;;;;;54261:25;;;;;;;;;;;;54252:34;;54201:113;;;54347:6;54340:13;;;;;;53532:845;53407:989;53381:1015;53335:1061;54424:31;;;;;;;;;;;;;;53188:1275;;;;:::o;59665:485::-;59767:27;59796:23;59837:38;59878:15;:24;59894:7;59878:24;;;;;;;;;;;59837:65;;60055:18;60032:41;;60112:19;60106:26;60087:45;;60017:126;59665:485;;;:::o;58893:659::-;59042:11;59207:16;59200:5;59196:28;59187:37;;59367:16;59356:9;59352:32;59339:45;;59517:15;59506:9;59503:30;59495:5;59484:9;59481:20;59478:56;59468:66;;58893:659;;;;;:::o;65551:159::-;;;;;:::o;80119:311::-;80254:7;80274:16;42914:3;80300:19;:41;;80274:68;;42914:3;80368:31;80379:4;80385:2;80389:9;80368:10;:31::i;:::-;80360:40;;:62;;80353:69;;;80119:311;;;;;:::o;55011:450::-;55091:14;55259:16;55252:5;55248:28;55239:37;;55436:5;55422:11;55397:23;55393:41;55390:52;55383:5;55380:63;55370:73;;55011:450;;;;:::o;66375:158::-;;;;;:::o;17659:293::-;17061:1;17793:7;;:19;;17785:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17061:1;17926:7;:18;;;;17659:293::o;17960:213::-;17017:1;18143:7;:22;;;;17960:213::o;31136:191::-;31210:16;31229:6;;;;;;;;;;;31210:25;;31255:8;31246:6;;:17;;;;;;;;;;;;;;;;;;31310:8;31279:40;;31300:8;31279:40;;;;;;;;;;;;31199:128;31136:191;:::o;28420:98::-;28473:7;28500:10;28493:17;;28420:98;:::o;74642:112::-;74719:27;74729:2;74733:8;74719:27;;;;;;;;;;;;:9;:27::i;:::-;74642:112;;:::o;66973:716::-;67136:4;67182:2;67157:45;;;67203:19;:17;:19::i;:::-;67224:4;67230:7;67239:5;67157:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67153:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67457:1;67440:6;:13;:18;67436:235;;;67486:40;;;;;;;;;;;;;;67436:235;67629:6;67623:13;67614:6;67610:2;67606:15;67599:38;67153:529;67326:54;;;67316:64;;;:6;:64;;;;67309:71;;;66973:716;;;;;;:::o;86216:104::-;86276:13;86305:9;86298:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86216:104;:::o;13340:716::-;13396:13;13447:14;13484:1;13464:17;13475:5;13464:10;:17::i;:::-;:21;13447:38;;13500:20;13534:6;13523:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500:41;;13556:11;13685:6;13681:2;13677:15;13669:6;13665:28;13658:35;;13722:288;13729:4;13722:288;;;13754:5;;;;;;;;13896:8;13891:2;13884:5;13880:14;13875:30;13870:3;13862:44;13952:2;13943:11;;;;;;:::i;:::-;;;;;13986:1;13977:5;:10;13973:21;;;13989:5;;13973:21;13722:288;;;14031:6;14024:13;;;;;13340:716;;;:::o;79820:147::-;79957:6;79820:147;;;;;:::o;73869:689::-;74000:19;74006:2;74010:8;74000:5;:19::i;:::-;74079:1;74061:2;:14;;;:19;74057:483;;74101:11;74115:13;;74101:27;;74147:13;74169:8;74163:3;:14;74147:30;;74196:233;74227:62;74266:1;74270:2;74274:7;;;;;;74283:5;74227:30;:62::i;:::-;74222:167;;74325:40;;;;;;;;;;;;;;74222:167;74424:3;74416:5;:11;74196:233;;74511:3;74494:13;;:20;74490:34;;74516:8;;;74490:34;74082:458;;74057:483;73869:689;;;:::o;10206:922::-;10259:7;10279:14;10296:1;10279:18;;10346:6;10337:5;:15;10333:102;;10382:6;10373:15;;;;;;:::i;:::-;;;;;10417:2;10407:12;;;;10333:102;10462:6;10453:5;:15;10449:102;;10498:6;10489:15;;;;;;:::i;:::-;;;;;10533:2;10523:12;;;;10449:102;10578:6;10569:5;:15;10565:102;;10614:6;10605:15;;;;;;:::i;:::-;;;;;10649:2;10639:12;;;;10565:102;10694:5;10685;:14;10681:99;;10729:5;10720:14;;;;;;:::i;:::-;;;;;10763:1;10753:11;;;;10681:99;10807:5;10798;:14;10794:99;;10842:5;10833:14;;;;;;:::i;:::-;;;;;10876:1;10866:11;;;;10794:99;10920:5;10911;:14;10907:99;;10955:5;10946:14;;;;;;:::i;:::-;;;;;10989:1;10979:11;;;;10907:99;11033:5;11024;:14;11020:66;;11069:1;11059:11;;;;11020:66;11114:6;11107:13;;;10206:922;;;:::o;68151:2966::-;68224:20;68247:13;;68224:36;;68287:1;68275:8;:13;68271:44;;;68297:18;;;;;;;;;;;;;;68271:44;68328:61;68358:1;68362:2;68366:12;68380:8;68328:21;:61::i;:::-;68872:1;41872:2;68842:1;:26;;68841:32;68829:8;:45;68803:18;:22;68822:2;68803:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;69151:139;69188:2;69242:33;69265:1;69269:2;69273:1;69242:14;:33::i;:::-;69209:30;69230:8;69209:20;:30::i;:::-;:66;69151:18;:139::i;:::-;69117:17;:31;69135:12;69117:31;;;;;;;;;;;:173;;;;69307:16;69338:11;69367:8;69352:12;:23;69338:37;;69888:16;69884:2;69880:25;69868:37;;70260:12;70220:8;70179:1;70117:25;70058:1;69997;69970:335;70631:1;70617:12;70613:20;70571:346;70672:3;70663:7;70660:16;70571:346;;70890:7;70880:8;70877:1;70850:25;70847:1;70844;70839:59;70725:1;70716:7;70712:15;70701:26;;70571:346;;;70575:77;70962:1;70950:8;:13;70946:45;;;70972:19;;;;;;;;;;;;;;70946:45;71024:3;71008:13;:19;;;;68577:2462;;71049:60;71078:1;71082:2;71086:12;71100:8;71049:20;:60::i;:::-;68213:2904;68151:2966;;:::o;55563:324::-;55633:14;55866:1;55856:8;55853:15;55827:24;55823:46;55813:56;;55563:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:398::-;12963:3;12984:83;13065:1;13060:3;12984:83;:::i;:::-;12977:90;;13076:93;13165:3;13076:93;:::i;:::-;13194:1;13189:3;13185:11;13178:18;;12804:398;;;:::o;13208:366::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:118::-;14411:24;14429:5;14411:24;:::i;:::-;14406:3;14399:37;14324:118;;:::o;14448:589::-;14673:3;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:92;15007:3;14998:6;14919:92;:::i;:::-;14912:99;;15028:3;15021:10;;14448:589;;;;;;:::o;15043:379::-;15227:3;15249:147;15392:3;15249:147;:::i;:::-;15242:154;;15413:3;15406:10;;15043:379;;;:::o;15428:222::-;15521:4;15559:2;15548:9;15544:18;15536:26;;15572:71;15640:1;15629:9;15625:17;15616:6;15572:71;:::i;:::-;15428:222;;;;:::o;15656:640::-;15851:4;15889:3;15878:9;15874:19;15866:27;;15903:71;15971:1;15960:9;15956:17;15947:6;15903:71;:::i;:::-;15984:72;16052:2;16041:9;16037:18;16028:6;15984:72;:::i;:::-;16066;16134:2;16123:9;16119:18;16110:6;16066:72;:::i;:::-;16185:9;16179:4;16175:20;16170:2;16159:9;16155:18;16148:48;16213:76;16284:4;16275:6;16213:76;:::i;:::-;16205:84;;15656:640;;;;;;;:::o;16302:210::-;16389:4;16427:2;16416:9;16412:18;16404:26;;16440:65;16502:1;16491:9;16487:17;16478:6;16440:65;:::i;:::-;16302:210;;;;:::o;16518:313::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16718:9;16712:4;16708:20;16704:1;16693:9;16689:17;16682:47;16746:78;16819:4;16810:6;16746:78;:::i;:::-;16738:86;;16518:313;;;;:::o;16837:419::-;17003:4;17041:2;17030:9;17026:18;17018:26;;17090:9;17084:4;17080:20;17076:1;17065:9;17061:17;17054:47;17118:131;17244:4;17118:131;:::i;:::-;17110:139;;16837:419;;;:::o;17262:::-;17428:4;17466:2;17455:9;17451:18;17443:26;;17515:9;17509:4;17505:20;17501:1;17490:9;17486:17;17479:47;17543:131;17669:4;17543:131;:::i;:::-;17535:139;;17262:419;;;:::o;17687:::-;17853:4;17891:2;17880:9;17876:18;17868:26;;17940:9;17934:4;17930:20;17926:1;17915:9;17911:17;17904:47;17968:131;18094:4;17968:131;:::i;:::-;17960:139;;17687:419;;;:::o;18112:::-;18278:4;18316:2;18305:9;18301:18;18293:26;;18365:9;18359:4;18355:20;18351:1;18340:9;18336:17;18329:47;18393:131;18519:4;18393:131;:::i;:::-;18385:139;;18112:419;;;:::o;18537:::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18537:419;;;:::o;18962:::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;18962:419;;;:::o;19387:::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19387:419;;;:::o;19812:::-;19978:4;20016:2;20005:9;20001:18;19993:26;;20065:9;20059:4;20055:20;20051:1;20040:9;20036:17;20029:47;20093:131;20219:4;20093:131;:::i;:::-;20085:139;;19812:419;;;:::o;20237:::-;20403:4;20441:2;20430:9;20426:18;20418:26;;20490:9;20484:4;20480:20;20476:1;20465:9;20461:17;20454:47;20518:131;20644:4;20518:131;:::i;:::-;20510:139;;20237:419;;;:::o;20662:::-;20828:4;20866:2;20855:9;20851:18;20843:26;;20915:9;20909:4;20905:20;20901:1;20890:9;20886:17;20879:47;20943:131;21069:4;20943:131;:::i;:::-;20935:139;;20662:419;;;:::o;21087:222::-;21180:4;21218:2;21207:9;21203:18;21195:26;;21231:71;21299:1;21288:9;21284:17;21275:6;21231:71;:::i;:::-;21087:222;;;;:::o;21315:129::-;21349:6;21376:20;;:::i;:::-;21366:30;;21405:33;21433:4;21425:6;21405:33;:::i;:::-;21315:129;;;:::o;21450:75::-;21483:6;21516:2;21510:9;21500:19;;21450:75;:::o;21531:307::-;21592:4;21682:18;21674:6;21671:30;21668:56;;;21704:18;;:::i;:::-;21668:56;21742:29;21764:6;21742:29;:::i;:::-;21734:37;;21826:4;21820;21816:15;21808:23;;21531:307;;;:::o;21844:308::-;21906:4;21996:18;21988:6;21985:30;21982:56;;;22018:18;;:::i;:::-;21982:56;22056:29;22078:6;22056:29;:::i;:::-;22048:37;;22140:4;22134;22130:15;22122:23;;21844:308;;;:::o;22158:141::-;22207:4;22230:3;22222:11;;22253:3;22250:1;22243:14;22287:4;22284:1;22274:18;22266:26;;22158:141;;;:::o;22305:98::-;22356:6;22390:5;22384:12;22374:22;;22305:98;;;:::o;22409:99::-;22461:6;22495:5;22489:12;22479:22;;22409:99;;;:::o;22514:168::-;22597:11;22631:6;22626:3;22619:19;22671:4;22666:3;22662:14;22647:29;;22514:168;;;;:::o;22688:147::-;22789:11;22826:3;22811:18;;22688:147;;;;:::o;22841:169::-;22925:11;22959:6;22954:3;22947:19;22999:4;22994:3;22990:14;22975:29;;22841:169;;;;:::o;23016:148::-;23118:11;23155:3;23140:18;;23016:148;;;;:::o;23170:305::-;23210:3;23229:20;23247:1;23229:20;:::i;:::-;23224:25;;23263:20;23281:1;23263:20;:::i;:::-;23258:25;;23417:1;23349:66;23345:74;23342:1;23339:81;23336:107;;;23423:18;;:::i;:::-;23336:107;23467:1;23464;23460:9;23453:16;;23170:305;;;;:::o;23481:348::-;23521:7;23544:20;23562:1;23544:20;:::i;:::-;23539:25;;23578:20;23596:1;23578:20;:::i;:::-;23573:25;;23766:1;23698:66;23694:74;23691:1;23688:81;23683:1;23676:9;23669:17;23665:105;23662:131;;;23773:18;;:::i;:::-;23662:131;23821:1;23818;23814:9;23803:20;;23481:348;;;;:::o;23835:96::-;23872:7;23901:24;23919:5;23901:24;:::i;:::-;23890:35;;23835:96;;;:::o;23937:90::-;23971:7;24014:5;24007:13;24000:21;23989:32;;23937:90;;;:::o;24033:149::-;24069:7;24109:66;24102:5;24098:78;24087:89;;24033:149;;;:::o;24188:126::-;24225:7;24265:42;24258:5;24254:54;24243:65;;24188:126;;;:::o;24320:77::-;24357:7;24386:5;24375:16;;24320:77;;;:::o;24403:154::-;24487:6;24482:3;24477;24464:30;24549:1;24540:6;24535:3;24531:16;24524:27;24403:154;;;:::o;24563:307::-;24631:1;24641:113;24655:6;24652:1;24649:13;24641:113;;;24740:1;24735:3;24731:11;24725:18;24721:1;24716:3;24712:11;24705:39;24677:2;24674:1;24670:10;24665:15;;24641:113;;;24772:6;24769:1;24766:13;24763:101;;;24852:1;24843:6;24838:3;24834:16;24827:27;24763:101;24612:258;24563:307;;;:::o;24876:320::-;24920:6;24957:1;24951:4;24947:12;24937:22;;25004:1;24998:4;24994:12;25025:18;25015:81;;25081:4;25073:6;25069:17;25059:27;;25015:81;25143:2;25135:6;25132:14;25112:18;25109:38;25106:84;;;25162:18;;:::i;:::-;25106:84;24927:269;24876:320;;;:::o;25202:281::-;25285:27;25307:4;25285:27;:::i;:::-;25277:6;25273:40;25415:6;25403:10;25400:22;25379:18;25367:10;25364:34;25361:62;25358:88;;;25426:18;;:::i;:::-;25358:88;25466:10;25462:2;25455:22;25245:238;25202:281;;:::o;25489:180::-;25537:77;25534:1;25527:88;25634:4;25631:1;25624:15;25658:4;25655:1;25648:15;25675:180;25723:77;25720:1;25713:88;25820:4;25817:1;25810:15;25844:4;25841:1;25834:15;25861:180;25909:77;25906:1;25899:88;26006:4;26003:1;25996:15;26030:4;26027:1;26020:15;26047:180;26095:77;26092:1;26085:88;26192:4;26189:1;26182:15;26216:4;26213:1;26206:15;26233:117;26342:1;26339;26332:12;26356:117;26465:1;26462;26455:12;26479:117;26588:1;26585;26578:12;26602:117;26711:1;26708;26701:12;26725:102;26766:6;26817:2;26813:7;26808:2;26801:5;26797:14;26793:28;26783:38;;26725:102;;;:::o;26833:225::-;26973:34;26969:1;26961:6;26957:14;26950:58;27042:8;27037:2;27029:6;27025:15;27018:33;26833:225;:::o;27064:170::-;27204:22;27200:1;27192:6;27188:14;27181:46;27064:170;:::o;27240:179::-;27380:31;27376:1;27368:6;27364:14;27357:55;27240:179;:::o;27425:174::-;27565:26;27561:1;27553:6;27549:14;27542:50;27425:174;:::o;27605:182::-;27745:34;27741:1;27733:6;27729:14;27722:58;27605:182;:::o;27793:173::-;27933:25;27929:1;27921:6;27917:14;27910:49;27793:173;:::o;27972:234::-;28112:34;28108:1;28100:6;28096:14;28089:58;28181:17;28176:2;28168:6;28164:15;28157:42;27972:234;:::o;28212:114::-;;:::o;28332:170::-;28472:22;28468:1;28460:6;28456:14;28449:46;28332:170;:::o;28508:181::-;28648:33;28644:1;28636:6;28632:14;28625:57;28508:181;:::o;28695:169::-;28835:21;28831:1;28823:6;28819:14;28812:45;28695:169;:::o;28870:122::-;28943:24;28961:5;28943:24;:::i;:::-;28936:5;28933:35;28923:63;;28982:1;28979;28972:12;28923:63;28870:122;:::o;28998:116::-;29068:21;29083:5;29068:21;:::i;:::-;29061:5;29058:32;29048:60;;29104:1;29101;29094:12;29048:60;28998:116;:::o;29120:120::-;29192:23;29209:5;29192:23;:::i;:::-;29185:5;29182:34;29172:62;;29230:1;29227;29220:12;29172:62;29120:120;:::o;29246:122::-;29319:24;29337:5;29319:24;:::i;:::-;29312:5;29309:35;29299:63;;29358:1;29355;29348:12;29299:63;29246:122;:::o

Swarm Source

ipfs://0c9c5302561124783243c837033229761b77b84faa980381517c02f2a007380e
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.