ETH Price: $3,227.97 (+1.41%)
Gas: 4 Gwei

Token

Atsuma-Mikaboshi-Genesis (AMGNFT)
 

Overview

Max Total Supply

1,234 AMGNFT

Holders

222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
gonkulator.eth
Balance
83 AMGNFT
0xfeeaf7572313aba280663dc6cc4322b044435edf
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to the Mikaboshi Genesis. Art by Indelible and WhoIsItNFT

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PayWithIERC20

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED
// 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/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/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/Mikas.sol


pragma solidity ^0.8.14;






interface IERC20Mikaboshi {
    function totalSupply() external view returns (uint);
    function balanceOf(address account) external view returns (uint);
    function transfer(address recipient, uint amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);
}


contract PayWithIERC20 is ERC721A, Ownable, ReentrancyGuard {
  //metadata
  string public hiddenMetadataUri = 'https://arweave.net/_';
  string public uriPrefix = 'https://arweave.net/__ARWEAVE_HASH_/';
  string public uriSuffix = '.json';

  // mainMint
  uint256 public mainMintStart =  	1672531201; // Sun Jan 01 2023 00:00:01 GMT+0000
  uint256 public maxMintAmountPerTx = 50;
  uint256 public mintRate = 7500000 ether;
  uint256 public frenListMintRate = 5000000 ether;


  uint public totalMints;
  bool public paused = false;
  bool public revealing = true;
  uint public revealTo = 0;

  uint public frenListMintLimits = 5;
  bytes32 public frenListMerkleRoot;
  mapping(address=>uint) public frenListMinted;

  // giftList
  bytes32 public giftListMerkleRoot;
  uint public giftListDefaultMax = 1;
  mapping(address=>uint) public giftListMintLimits;
  mapping(address=>uint) public giftListMinted;

  // mika contract
  address public IERC20ContractAddress;

  uint public burnPercentage = 5;

  constructor (
    address contractAddress,uint256 totalMintable) ERC721A("Atsuma-Mikaboshi-Genesis", "AMGNFT")  {
    IERC20ContractAddress = contractAddress;
    totalMints = totalMintable;
  }


  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

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

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

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

   function setMintRate(uint256 _cost) public onlyOwner {
       mintRate = _cost;
   }

    function setRevealState(bool _state) public onlyOwner {
      revealing = _state;
    }

    function setRevealTo(uint _state) public onlyOwner {
      revealTo = _state;
    }

    function setMainMintStart(uint _state) public onlyOwner {
      mainMintStart = _state;
    }

    function setMaxMintAmmountPerTx(uint _state) public onlyOwner {
      maxMintAmountPerTx = _state;
    }

    function setBurnPercentage(uint _state) public onlyOwner {
      require(_state <100, "Cant burn more than 100%");
      require(_state > 1, "Cant burn less that 1%");
      burnPercentage = _state;
    }

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

    // if revealing is on,
    if (revealing == true && (_tokenId > revealTo)) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = uriPrefix;
    return bytes(currentBaseURI).length > 0
      ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), uriSuffix))
      : '';
  }

  function mint(uint256 quantity) external payable {
    require(!paused, "Minting is paused!");
    require(block.timestamp >= mainMintStart, "The period to mint this card has not started.");
    require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");
    require(quantity <= maxMintAmountPerTx, "Max Mint Amount Per TX reached");

    // does user have enough balance?
    require(IERC20Mikaboshi(IERC20ContractAddress).balanceOf(msg.sender)>= (mintRate * quantity),"Sender Does not have anough balance");

    // is user approved  allowance(address owner, address spender)
    require(IERC20Mikaboshi(IERC20ContractAddress).allowance(msg.sender, address(this)) >= (mintRate * quantity),"Ammount not approved to spend for user");

    // perform transaction.....
    uint _amount = mintRate * quantity;
    uint burnAmount = (_amount*burnPercentage)/100;

    require(IERC20Mikaboshi(IERC20ContractAddress).transferFrom(msg.sender, address(this),_amount),"Must send to this contract");
    require(IERC20Mikaboshi(IERC20ContractAddress).transfer(0x000000000000000000000000000000000000dEaD, burnAmount),"Must Burn Tokens from this contract");

    // then mint.
    _mint(msg.sender, quantity);
  }

  function mintForAddress( uint256 quantity, address _reciever) public nonReentrant onlyOwner {
    require(block.timestamp >= mainMintStart, "You can only mintForAddress once the frenList Mint starts.");
    require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");

    _safeMint(_reciever, quantity);
  }

  function setFrenListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
    frenListMerkleRoot = merkleRoot;
  }

  function setGiftListMerkleRoot(bytes32 merkleRoot) external onlyOwner {
    giftListMerkleRoot = merkleRoot;
  }

  function setFrenListMintLimits(uint limit) external onlyOwner {
    frenListMintLimits = limit;
  }

  function frenListMint(bytes32[] calldata merkleProof, uint256 quantity) public nonReentrant payable isValidMerkleProof(merkleProof, frenListMerkleRoot) {
    require(!paused, "Minting is paused!");
    require(block.timestamp >= mainMintStart, "You can only mint once the frenList Mint starts.");
    require((frenListMinted[msg.sender]+ quantity) <= frenListMintLimits, "Going over maximum frenList Mints" );
    require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");
    require(quantity <= maxMintAmountPerTx, "Max Mint Amount Per TX reached");
    // does user have enough balance?
    require(IERC20Mikaboshi(IERC20ContractAddress).balanceOf(msg.sender)>= (frenListMintRate * quantity),"Sender Does not have anough balance");

    // is user approved  allowance(address owner, address spender)
    require(IERC20Mikaboshi(IERC20ContractAddress).allowance(msg.sender, address(this)) >= (frenListMintRate * quantity),"Ammount not approved to spend for user");

    // perform transaction.....

    uint _amount = frenListMintRate * quantity;
    uint burnAmount = (_amount*burnPercentage)/100;

    require(IERC20Mikaboshi(IERC20ContractAddress).transferFrom(msg.sender, address(this),_amount),"Must send to this contract");
    require(IERC20Mikaboshi(IERC20ContractAddress).transfer(0x000000000000000000000000000000000000dEaD, burnAmount),"Must Burn Tokens from this contract");


    frenListMinted[msg.sender] = frenListMinted[msg.sender]+quantity;
    _mint(msg.sender, quantity);

  }

  function giftListMint(bytes32[] calldata merkleProof, uint256 quantity) public nonReentrant payable isValidMerkleProof(merkleProof, giftListMerkleRoot) {
    require(!paused, "Minting is paused!");
    require(block.timestamp >= mainMintStart, "You can only mint once the frenList Mint starts.");
    require((_nextTokenId()-1) + quantity <= totalMints, "Not enough tokens left to fulfill mint ammount requested");
    // assign default or override if not set.
    if(giftListMinted[msg.sender] == 0){
      giftListMintLimits[msg.sender] = giftListMintLimits[msg.sender]==0 ? giftListDefaultMax : giftListMintLimits[msg.sender];
    }
    // can only mint what youve been granted
    require(giftListMinted[msg.sender]+quantity <= giftListMintLimits[msg.sender] ,"Can not exceed max gift mints for this address");
    giftListMinted[msg.sender] = giftListMinted[msg.sender]+quantity;

    _mint(msg.sender, quantity);
  }

  function updateGiftLimit(address[] memory addressses, uint[] memory limits) public nonReentrant onlyOwner {
    require(addressses.length == limits.length,"adresses and limits must be of equal length");
    for (uint256 i = 0; i<addressses.length; i++){
      giftListMintLimits[addressses[i]] = limits[i];
    }
  }

  modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require( MerkleProof.verify( merkleProof, root, leaf), "Address is not in the frens list");
    _;
  }

  function withdrawMika() external onlyOwner {

    // CHECK BALANCE
    uint balance  = IERC20Mikaboshi(IERC20ContractAddress).balanceOf(address(this));

    // approve move
    IERC20Mikaboshi(IERC20ContractAddress).approve(address(this), balance);
    // transfer
    IERC20Mikaboshi(IERC20ContractAddress).transfer(owner(),  balance);
  }

  function withdraw() external onlyOwner{
    payable(owner()).transfer(address(this).balance);
  }

  /**
   * Invalid query range (`start` >= `stop`).
   */
  error InvalidQueryRange();
  /**
       * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
       *
       * If the `tokenId` is out of bounds:
       *
       * - `addr = address(0)`
       * - `startTimestamp = 0`
       * - `burned = false`
       * - `extraData = 0`
       *
       * If the `tokenId` is burned:
       *
       * - `addr = <Address of owner before token was burned>`
       * - `startTimestamp = <Timestamp when token was burned>`
       * - `burned = true`
       * - `extraData = <Extra data when token was burned>`
       *
       * Otherwise:
       *
       * - `addr = <Address of owner>`
       * - `startTimestamp = <Timestamp of start of ownership>`
       * - `burned = false`
       * - `extraData = <Extra data at start of ownership>`
       */
      function explicitOwnershipOf(uint256 tokenId) public view virtual returns (TokenOwnership memory) {
          TokenOwnership memory ownership;
          if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
              return ownership;
          }
          ownership = _ownershipAt(tokenId);
          if (ownership.burned) {
              return ownership;
          }
          return _ownershipOf(tokenId);
      }

      /**
       * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
       * See {ERC721AQueryable-explicitOwnershipOf}
       */
      function explicitOwnershipsOf(uint256[] calldata tokenIds)
          external
          view
          virtual
          returns (TokenOwnership[] memory)
      {
          unchecked {
              uint256 tokenIdsLength = tokenIds.length;
              TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
              for (uint256 i; i != tokenIdsLength; ++i) {
                  ownerships[i] = explicitOwnershipOf(tokenIds[i]);
              }
              return ownerships;
          }
      }


      /**
       * @dev Returns an array of token IDs owned by `owner`.
       *
       * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
       * It is meant to be called off-chain.
       *
       * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
       * multiple smaller scans if the collection is large enough to cause
       * an out-of-gas error (10K collections should be fine).
       */
      function tokensOfOwner(address owner) external view virtual returns (uint256[] memory) {
          unchecked {
              uint256 tokenIdsIdx;
              address currOwnershipAddr;
              uint256 tokenIdsLength = balanceOf(owner);
              uint256[] memory tokenIds = new uint256[](tokenIdsLength);
              TokenOwnership memory ownership;
              for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                  ownership = _ownershipAt(i);
                  if (ownership.burned) {
                      continue;
                  }
                  if (ownership.addr != address(0)) {
                      currOwnershipAddr = ownership.addr;
                  }
                  if (currOwnershipAddr == owner) {
                      tokenIds[tokenIdsIdx++] = i;
                  }
              }
              return tokenIds;
          }
      }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"totalMintable","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":[],"name":"IERC20ContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"frenListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"frenListMintLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frenListMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"frenListMinted","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":"giftListDefaultMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giftListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giftListMintLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giftListMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mainMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_reciever","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealing","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":"_state","type":"uint256"}],"name":"setBurnPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setFrenListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setFrenListMintLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setGiftListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setMainMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setMaxMintAmmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setMintRate","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":"setRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setRevealTo","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"addressses","type":"address[]"},{"internalType":"uint256[]","name":"limits","type":"uint256[]"}],"name":"updateGiftLimit","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"},{"inputs":[],"name":"withdrawMika","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601560808190527f68747470733a2f2f617277656176652e6e65742f5f000000000000000000000060a09081526200004091600a91906200022c565b5060405180606001604052806024815260200162003add6024913980516200007191600b916020909101906200022c565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000a091600c916200022c565b506363b0cd01600d556032600e556a06342fd08f00f637800000600f556a0422ca8b0a00a4250000006010556012805461ffff19166101001790556000601355600560148190556001601855601c55348015620000fc57600080fd5b5060405162003b0138038062003b018339810160408190526200011f91620002d2565b604080518082018252601881527f417473756d612d4d696b61626f7368692d47656e657369730000000000000000602080830191825283518085019094526006845265105351d3919560d21b90840152815191929162000182916002916200022c565b508051620001989060039060208401906200022c565b5050600160005550620001ab33620001da565b6001600955601b80546001600160a01b0319166001600160a01b0393909316929092179091556011556200034a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023a906200030e565b90600052602060002090601f0160209004810192826200025e5760008555620002a9565b82601f106200027957805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a95782518255916020019190600101906200028c565b50620002b7929150620002bb565b5090565b5b80821115620002b75760008155600101620002bc565b60008060408385031215620002e657600080fd5b82516001600160a01b0381168114620002fe57600080fd5b6020939093015192949293505050565b600181811c908216806200032357607f821691505b6020821081036200034457634e487b7160e01b600052602260045260246000fd5b50919050565b613783806200035a6000396000f3fe6080604052600436106103975760003560e01c80637590ec24116101dc578063c23dc68f11610102578063e985e9c5116100a0578063f645f2db1161006f578063f645f2db14610a23578063f8f15fbd14610a50578063fb45aa0c14610a70578063fc2dc80a14610a9057600080fd5b8063e985e9c514610984578063efbd73f4146109cd578063f01f20df146109ed578063f2fde38b14610a0357600080fd5b8063ca0dcf16116100dc578063ca0dcf1614610922578063d3300df014610938578063dbe2193f1461094e578063e0e7f6a31461096e57600080fd5b8063c23dc68f146108b5578063c3f0d327146108e2578063c87b56dd1461090257600080fd5b80638da5cb5b1161017a578063a22cb46511610149578063a22cb4651461085a578063a45ba8e71461087a578063b69faf501461088f578063b88d4fde146108a257600080fd5b80638da5cb5b146107fe57806394354fd01461081c57806395d89b4114610832578063a0712d681461084757600080fd5b80637ec4a659116101b65780637ec4a6591461077b5780638099e82a1461079b5780638462151c146107b15780638b2e9809146107de57600080fd5b80637590ec241461072557806378856d8a146107455780637bc0c92e1461075b57600080fd5b806343bcc582116102c157806362b99ad41161025f57806370a082311161022e57806370a08231146106c457806370d9c5ff146106e4578063715018a6146106fa57806374cd3b091461070f57600080fd5b806362b99ad41461064f5780636352211e1461066457806368a085e6146106845780636c2efc56146106a457600080fd5b80635503a0e81161029b5780635503a0e8146105d35780635879e395146105e85780635bbb2177146106085780635c975abb1461063557600080fd5b806343bcc582146105675780634f9263e0146105865780634fdd43cb146105b357600080fd5b806316ba10e01161033957806323143c5b1161030857806323143c5b146104ff57806323b872dd1461052c5780633ccfd60b1461053f57806342842e0e1461055457600080fd5b806316ba10e01461048c57806316c38b3c146104ac57806318160ddd146104cc5780631f21bfbf146104e957600080fd5b8063081812fc11610375578063081812fc1461040a578063095ea7b3146104425780630a6cd0f91461045557806310069f711461046857600080fd5b806301ffc9a71461039c57806306fdde03146103d157806307e73e78146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612d28565b610ab0565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610b02565b6040516103c89190612d9d565b3480156103ff57600080fd5b50610408610b94565b005b34801561041657600080fd5b5061042a610425366004612db0565b610d18565b6040516001600160a01b0390911681526020016103c8565b610408610450366004612de5565b610d5c565b610408610463366004612e5a565b610dfc565b34801561047457600080fd5b5061047e60185481565b6040519081526020016103c8565b34801561049857600080fd5b506104086104a7366004612f42565b61132f565b3480156104b857600080fd5b506104086104c7366004612f98565b61134a565b3480156104d857600080fd5b50600154600054036000190161047e565b3480156104f557600080fd5b5061047e60115481565b34801561050b57600080fd5b5061047e61051a366004612fb5565b60166020526000908152604090205481565b61040861053a366004612fd0565b611365565b34801561054b57600080fd5b506104086114fd565b610408610562366004612fd0565b611541565b34801561057357600080fd5b506012546103bc90610100900460ff1681565b34801561059257600080fd5b5061047e6105a1366004612fb5565b601a6020526000908152604090205481565b3480156105bf57600080fd5b506104086105ce366004612f42565b61155c565b3480156105df57600080fd5b506103e6611577565b3480156105f457600080fd5b50610408610603366004612db0565b611605565b34801561061457600080fd5b5061062861062336600461300c565b611612565b6040516103c89190613089565b34801561064157600080fd5b506012546103bc9060ff1681565b34801561065b57600080fd5b506103e66116dd565b34801561067057600080fd5b5061042a61067f366004612db0565b6116ea565b34801561069057600080fd5b5061040861069f366004612db0565b6116f5565b3480156106b057600080fd5b506104086106bf366004612db0565b611702565b3480156106d057600080fd5b5061047e6106df366004612fb5565b61170f565b3480156106f057600080fd5b5061047e60155481565b34801561070657600080fd5b5061040861175d565b34801561071b57600080fd5b5061047e60135481565b34801561073157600080fd5b50610408610740366004613159565b611771565b34801561075157600080fd5b5061047e60145481565b34801561076757600080fd5b50610408610776366004612db0565b61186c565b34801561078757600080fd5b50610408610796366004612f42565b611879565b3480156107a757600080fd5b5061047e600d5481565b3480156107bd57600080fd5b506107d16107cc366004612fb5565b611894565b6040516103c89190613218565b3480156107ea57600080fd5b506104086107f9366004612f98565b61199c565b34801561080a57600080fd5b506008546001600160a01b031661042a565b34801561082857600080fd5b5061047e600e5481565b34801561083e57600080fd5b506103e66119be565b610408610855366004612db0565b6119cd565b34801561086657600080fd5b50610408610875366004613250565b611db4565b34801561088657600080fd5b506103e6611e20565b61040861089d366004612e5a565b611e2d565b6104086108b0366004613287565b6120ae565b3480156108c157600080fd5b506108d56108d0366004612db0565b6120f8565b6040516103c89190613302565b3480156108ee57600080fd5b506104086108fd366004612db0565b612187565b34801561090e57600080fd5b506103e661091d366004612db0565b61222d565b34801561092e57600080fd5b5061047e600f5481565b34801561094457600080fd5b5061047e60175481565b34801561095a57600080fd5b50610408610969366004612db0565b612434565b34801561097a57600080fd5b5061047e60105481565b34801561099057600080fd5b506103bc61099f366004613310565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109d957600080fd5b506104086109e8366004613343565b612441565b3480156109f957600080fd5b5061047e601c5481565b348015610a0f57600080fd5b50610408610a1e366004612fb5565b61251e565b348015610a2f57600080fd5b5061047e610a3e366004612fb5565b60196020526000908152604090205481565b348015610a5c57600080fd5b50610408610a6b366004612db0565b612594565b348015610a7c57600080fd5b50610408610a8b366004612db0565b6125a1565b348015610a9c57600080fd5b50601b5461042a906001600160a01b031681565b60006301ffc9a760e01b6001600160e01b031983161480610ae157506380ac58cd60e01b6001600160e01b03198316145b80610afc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610b1190613366565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3d90613366565b8015610b8a5780601f10610b5f57610100808354040283529160200191610b8a565b820191906000526020600020905b815481529060010190602001808311610b6d57829003601f168201915b5050505050905090565b610b9c6125ae565b601b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0991906133a0565b601b5460405163095ea7b360e01b8152306004820152602481018390529192506001600160a01b03169063095ea7b3906044016020604051808303816000875af1158015610c5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7f91906133b9565b50601b546001600160a01b031663a9059cbb610ca36008546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610cf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1491906133b9565b5050565b6000610d2382612608565b610d40576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d67826116ea565b9050336001600160a01b03821614610da057610d83813361099f565b610da0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e0461263d565b6015546040516bffffffffffffffffffffffff193360601b16602082015284918491600090603401604051602081830303815290604052805190602001209050610e848484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506126969050565b610ed55760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c69737460448201526064015b60405180910390fd5b60125460ff1615610ef85760405162461bcd60e51b8152600401610ecc906133d6565b600d54421015610f1a5760405162461bcd60e51b8152600401610ecc90613402565b60145433600090815260166020526040902054610f38908790613468565b1115610f905760405162461bcd60e51b815260206004820152602160248201527f476f696e67206f766572206d6178696d756d206672656e4c697374204d696e746044820152607360f81b6064820152608401610ecc565b601154856001610f9f60005490565b610fa99190613480565b610fb39190613468565b1115610fd15760405162461bcd60e51b8152600401610ecc90613497565b600e548511156110235760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401610ecc565b8460105461103191906134f4565b601b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611079573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109d91906133a0565b10156110bb5760405162461bcd60e51b8152600401610ecc90613513565b846010546110c991906134f4565b601b54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa158015611117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113b91906133a0565b10156111595760405162461bcd60e51b8152600401610ecc90613556565b60008560105461116991906134f4565b905060006064601c548361117d91906134f4565b611187919061359c565b601b546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af11580156111df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120391906133b9565b61124f5760405162461bcd60e51b815260206004820152601a60248201527f4d7573742073656e6420746f207468697320636f6e74726163740000000000006044820152606401610ecc565b601b5460405163a9059cbb60e01b815261dead6004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af11580156112a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c691906133b9565b6112e25760405162461bcd60e51b8152600401610ecc906135be565b336000908152601660205260409020546112fd908890613468565b3360008181526016602052604090209190915561131a90886126ac565b50505050505061132a6001600955565b505050565b6113376125ae565b8051610d1490600c906020840190612c79565b6113526125ae565b6012805460ff1916911515919091179055565b6000611370826127aa565b9050836001600160a01b0316816001600160a01b0316146113a35760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176113f0576113d3863361099f565b6113f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661141757604051633a954ecd60e21b815260040160405180910390fd5b801561142257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036114b4576001840160008181526004602052604081205490036114b25760005481146114b25760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6115056125ae565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561153e573d6000803e3d6000fd5b50565b61132a838383604051806020016040528060008152506120ae565b6115646125ae565b8051610d1490600a906020840190612c79565b600c805461158490613366565b80601f01602080910402602001604051908101604052809291908181526020018280546115b090613366565b80156115fd5780601f106115d2576101008083540402835291602001916115fd565b820191906000526020600020905b8154815290600101906020018083116115e057829003601f168201915b505050505081565b61160d6125ae565b600e55565b6060816000816001600160401b0381111561162f5761162f612ea5565b60405190808252806020026020018201604052801561168157816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161164d5790505b50905060005b8281146116d4576116af8686838181106116a3576116a3613601565b905060200201356120f8565b8282815181106116c1576116c1613601565b6020908102919091010152600101611687565b50949350505050565b600b805461158490613366565b6000610afc826127aa565b6116fd6125ae565b601755565b61170a6125ae565b601555565b60006001600160a01b038216611738576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6117656125ae565b61176f6000612819565b565b61177961263d565b6117816125ae565b80518251146117e65760405162461bcd60e51b815260206004820152602b60248201527f616472657373657320616e64206c696d697473206d757374206265206f66206560448201526a0e2eac2d840d8cadccee8d60ab1b6064820152608401610ecc565b60005b82518110156118615781818151811061180457611804613601565b60200260200101516019600085848151811061182257611822613601565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061185990613617565b9150506117e9565b50610d146001600955565b6118746125ae565b600d55565b6118816125ae565b8051610d1490600b906020840190612c79565b606060008060006118a48561170f565b90506000816001600160401b038111156118c0576118c0612ea5565b6040519080825280602002602001820160405280156118e9578160200160208202803683370190505b50905061191660408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611990576119298161286b565b915081604001516119885781516001600160a01b03161561194957815194505b876001600160a01b0316856001600160a01b031603611988578083878060010198508151811061197b5761197b613601565b6020026020010181815250505b600101611919565b50909695505050505050565b6119a46125ae565b601280549115156101000261ff0019909216919091179055565b606060038054610b1190613366565b60125460ff16156119f05760405162461bcd60e51b8152600401610ecc906133d6565b600d54421015611a585760405162461bcd60e51b815260206004820152602d60248201527f54686520706572696f6420746f206d696e74207468697320636172642068617360448201526c103737ba1039ba30b93a32b21760991b6064820152608401610ecc565b601154816001611a6760005490565b611a719190613480565b611a7b9190613468565b1115611a995760405162461bcd60e51b8152600401610ecc90613497565b600e54811115611aeb5760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401610ecc565b80600f54611af991906134f4565b601b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6591906133a0565b1015611b835760405162461bcd60e51b8152600401610ecc90613513565b80600f54611b9191906134f4565b601b54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa158015611bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0391906133a0565b1015611c215760405162461bcd60e51b8152600401610ecc90613556565b600081600f54611c3191906134f4565b905060006064601c5483611c4591906134f4565b611c4f919061359c565b601b546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af1158015611ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccb91906133b9565b611d175760405162461bcd60e51b815260206004820152601a60248201527f4d7573742073656e6420746f207468697320636f6e74726163740000000000006044820152606401610ecc565b601b5460405163a9059cbb60e01b815261dead6004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015611d6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8e91906133b9565b611daa5760405162461bcd60e51b8152600401610ecc906135be565b61132a33846126ac565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461158490613366565b611e3561263d565b6017546040516bffffffffffffffffffffffff193360601b16602082015284918491600090603401604051602081830303815290604052805190602001209050611eb58484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506126969050565b611f015760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c6973746044820152606401610ecc565b60125460ff1615611f245760405162461bcd60e51b8152600401610ecc906133d6565b600d54421015611f465760405162461bcd60e51b8152600401610ecc90613402565b601154856001611f5560005490565b611f5f9190613480565b611f699190613468565b1115611f875760405162461bcd60e51b8152600401610ecc90613497565b336000908152601a60205260408120549003611fdc573360009081526019602052604090205415611fc75733600090815260196020526040902054611fcb565b6018545b336000908152601960205260409020555b33600090815260196020908152604080832054601a90925290912054612003908790613468565b11156120685760405162461bcd60e51b815260206004820152602e60248201527f43616e206e6f7420657863656564206d61782067696674206d696e747320666f60448201526d722074686973206164647265737360901b6064820152608401610ecc565b336000908152601a6020526040902054612083908690613468565b336000818152601a60205260409020919091556120a090866126ac565b5050505061132a6001600955565b6120b9848484611365565b6001600160a01b0383163b156120f2576120d5848484846128a7565b6120f2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061215157506000548310155b1561215c5792915050565b6121658361286b565b90508060400151156121775792915050565b61218083612993565b9392505050565b61218f6125ae565b606481106121df5760405162461bcd60e51b815260206004820152601860248201527f43616e74206275726e206d6f7265207468616e203130302500000000000000006044820152606401610ecc565b600181116122285760405162461bcd60e51b815260206004820152601660248201527543616e74206275726e206c657373207468617420312560501b6044820152606401610ecc565b601c55565b606061223882612608565b61229e5760405162461bcd60e51b815260206004820152603160248201527f45524337323141204d657461646174613a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610ecc565b60125460ff61010090910416151560011480156122bc575060135482115b1561235357600a80546122ce90613366565b80601f01602080910402602001604051908101604052809291908181526020018280546122fa90613366565b80156123475780601f1061231c57610100808354040283529160200191612347565b820191906000526020600020905b81548152906001019060200180831161232a57829003601f168201915b50505050509050919050565b6000600b805461236290613366565b80601f016020809104026020016040519081016040528092919081815260200182805461238e90613366565b80156123db5780601f106123b0576101008083540402835291602001916123db565b820191906000526020600020905b8154815290600101906020018083116123be57829003601f168201915b5050505050905060008151116124005760405180602001604052806000815250612180565b8061240a846129c8565b600c60405160200161241e93929190613630565b6040516020818303038152906040529392505050565b61243c6125ae565b600f55565b61244961263d565b6124516125ae565b600d544210156124c95760405162461bcd60e51b815260206004820152603a60248201527f596f752063616e206f6e6c79206d696e74466f7241646472657373206f6e636560448201527f20746865206672656e4c697374204d696e74207374617274732e0000000000006064820152608401610ecc565b6011548260016124d860005490565b6124e29190613480565b6124ec9190613468565b111561250a5760405162461bcd60e51b8152600401610ecc90613497565b6125148183612a5a565b610d146001600955565b6125266125ae565b6001600160a01b03811661258b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ecc565b61153e81612819565b61259c6125ae565b601455565b6125a96125ae565b601355565b6008546001600160a01b0316331461176f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ecc565b60008160011115801561261c575060005482105b8015610afc575050600090815260046020526040902054600160e01b161590565b60026009540361268f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ecc565b6002600955565b6000826126a38584612a74565b14949350505050565b60008054908290036126d15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461278057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612748565b50816000036127a157604051622e076360e81b815260040160405180910390fd5b60005550505050565b60008180600111612800576000548110156128005760008181526004602052604081205490600160e01b821690036127fe575b806000036121805750600019016000818152600460205260409020546127dd565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610afc90612ac1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128dc9033908990889088906004016136f3565b6020604051808303816000875af1925050508015612917575060408051601f3d908101601f1916820190925261291491810190613730565b60015b612975573d808015612945576040519150601f19603f3d011682016040523d82523d6000602084013e61294a565b606091505b50805160000361296d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610afc6129c3836127aa565b612ac1565b606060006129d583612b08565b60010190506000816001600160401b038111156129f4576129f4612ea5565b6040519080825280601f01601f191660200182016040528015612a1e576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612a2857509392505050565b610d14828260405180602001604052806000815250612be0565b600081815b8451811015612ab957612aa582868381518110612a9857612a98613601565b6020026020010151612c4d565b915080612ab181613617565b915050612a79565b509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612b475772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612b73576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612b9157662386f26fc10000830492506010015b6305f5e1008310612ba9576305f5e100830492506008015b6127108310612bbd57612710830492506004015b60648310612bcf576064830492506002015b600a8310610afc5760010192915050565b612bea83836126ac565b6001600160a01b0383163b1561132a576000548281035b612c1460008683806001019450866128a7565b612c31576040516368d2bf6b60e11b815260040160405180910390fd5b818110612c01578160005414612c4657600080fd5b5050505050565b6000818310612c69576000828152602084905260409020612180565b5060009182526020526040902090565b828054612c8590613366565b90600052602060002090601f016020900481019282612ca75760008555612ced565b82601f10612cc057805160ff1916838001178555612ced565b82800160010185558215612ced579182015b82811115612ced578251825591602001919060010190612cd2565b50612cf9929150612cfd565b5090565b5b80821115612cf95760008155600101612cfe565b6001600160e01b03198116811461153e57600080fd5b600060208284031215612d3a57600080fd5b813561218081612d12565b60005b83811015612d60578181015183820152602001612d48565b838111156120f25750506000910152565b60008151808452612d89816020860160208601612d45565b601f01601f19169290920160200192915050565b6020815260006121806020830184612d71565b600060208284031215612dc257600080fd5b5035919050565b80356001600160a01b0381168114612de057600080fd5b919050565b60008060408385031215612df857600080fd5b612e0183612dc9565b946020939093013593505050565b60008083601f840112612e2157600080fd5b5081356001600160401b03811115612e3857600080fd5b6020830191508360208260051b8501011115612e5357600080fd5b9250929050565b600080600060408486031215612e6f57600080fd5b83356001600160401b03811115612e8557600080fd5b612e9186828701612e0f565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612ee357612ee3612ea5565b604052919050565b60006001600160401b03831115612f0457612f04612ea5565b612f17601f8401601f1916602001612ebb565b9050828152838383011115612f2b57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612f5457600080fd5b81356001600160401b03811115612f6a57600080fd5b8201601f81018413612f7b57600080fd5b61298b84823560208401612eeb565b801515811461153e57600080fd5b600060208284031215612faa57600080fd5b813561218081612f8a565b600060208284031215612fc757600080fd5b61218082612dc9565b600080600060608486031215612fe557600080fd5b612fee84612dc9565b9250612ffc60208501612dc9565b9150604084013590509250925092565b6000806020838503121561301f57600080fd5b82356001600160401b0381111561303557600080fd5b61304185828601612e0f565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015611990576130b883855161304d565b92840192608092909201916001016130a5565b60006001600160401b038211156130e4576130e4612ea5565b5060051b60200190565b600082601f8301126130ff57600080fd5b8135602061311461310f836130cb565b612ebb565b82815260059290921b8401810191818101908684111561313357600080fd5b8286015b8481101561314e5780358352918301918301613137565b509695505050505050565b6000806040838503121561316c57600080fd5b82356001600160401b038082111561318357600080fd5b818501915085601f83011261319757600080fd5b813560206131a761310f836130cb565b82815260059290921b840181019181810190898411156131c657600080fd5b948201945b838610156131eb576131dc86612dc9565b825294820194908201906131cb565b9650508601359250508082111561320157600080fd5b5061320e858286016130ee565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561199057835183529284019291840191600101613234565b6000806040838503121561326357600080fd5b61326c83612dc9565b9150602083013561327c81612f8a565b809150509250929050565b6000806000806080858703121561329d57600080fd5b6132a685612dc9565b93506132b460208601612dc9565b92506040850135915060608501356001600160401b038111156132d657600080fd5b8501601f810187136132e757600080fd5b6132f687823560208401612eeb565b91505092959194509250565b60808101610afc828461304d565b6000806040838503121561332357600080fd5b61332c83612dc9565b915061333a60208401612dc9565b90509250929050565b6000806040838503121561335657600080fd5b8235915061333a60208401612dc9565b600181811c9082168061337a57607f821691505b60208210810361339a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156133b257600080fd5b5051919050565b6000602082840312156133cb57600080fd5b815161218081612f8a565b6020808252601290820152714d696e74696e67206973207061757365642160701b604082015260600190565b60208082526030908201527f596f752063616e206f6e6c79206d696e74206f6e636520746865206672656e4c60408201526f34b9ba1026b4b73a1039ba30b93a399760811b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561347b5761347b613452565b500190565b60008282101561349257613492613452565b500390565b60208082526038908201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60408201527f6c206d696e7420616d6d6f756e74207265717565737465640000000000000000606082015260800190565b600081600019048311821515161561350e5761350e613452565b500290565b60208082526023908201527f53656e64657220446f6573206e6f74206861766520616e6f7567682062616c616040820152626e636560e81b606082015260800190565b60208082526026908201527f416d6d6f756e74206e6f7420617070726f76656420746f207370656e6420666f60408201526539103ab9b2b960d11b606082015260800190565b6000826135b957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526023908201527f4d757374204275726e20546f6b656e732066726f6d207468697320636f6e74726040820152621858dd60ea1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161362957613629613452565b5060010190565b6000845160206136438285838a01612d45565b8551918401916136568184848a01612d45565b8554920191600090600181811c908083168061367357607f831692505b858310810361369057634e487b7160e01b85526022600452602485fd5b8080156136a457600181146136b5576136e2565b60ff198516885283880195506136e2565b60008b81526020902060005b858110156136da5781548a8201529084019088016136c1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061372690830184612d71565b9695505050505050565b60006020828403121561374257600080fd5b815161218081612d1256fea2646970667358221220063fc67ff317a775d823be1b52cb4684ede91c29aa7edb562c2472861adf0ae464736f6c634300080e003368747470733a2f2f617277656176652e6e65742f5f5f415257454156455f484153485f2f000000000000000000000000ae86f48c0b00f2a3eaef4ba4c23d17368f0f63f400000000000000000000000000000000000000000000000000000000000004d2

Deployed Bytecode

0x6080604052600436106103975760003560e01c80637590ec24116101dc578063c23dc68f11610102578063e985e9c5116100a0578063f645f2db1161006f578063f645f2db14610a23578063f8f15fbd14610a50578063fb45aa0c14610a70578063fc2dc80a14610a9057600080fd5b8063e985e9c514610984578063efbd73f4146109cd578063f01f20df146109ed578063f2fde38b14610a0357600080fd5b8063ca0dcf16116100dc578063ca0dcf1614610922578063d3300df014610938578063dbe2193f1461094e578063e0e7f6a31461096e57600080fd5b8063c23dc68f146108b5578063c3f0d327146108e2578063c87b56dd1461090257600080fd5b80638da5cb5b1161017a578063a22cb46511610149578063a22cb4651461085a578063a45ba8e71461087a578063b69faf501461088f578063b88d4fde146108a257600080fd5b80638da5cb5b146107fe57806394354fd01461081c57806395d89b4114610832578063a0712d681461084757600080fd5b80637ec4a659116101b65780637ec4a6591461077b5780638099e82a1461079b5780638462151c146107b15780638b2e9809146107de57600080fd5b80637590ec241461072557806378856d8a146107455780637bc0c92e1461075b57600080fd5b806343bcc582116102c157806362b99ad41161025f57806370a082311161022e57806370a08231146106c457806370d9c5ff146106e4578063715018a6146106fa57806374cd3b091461070f57600080fd5b806362b99ad41461064f5780636352211e1461066457806368a085e6146106845780636c2efc56146106a457600080fd5b80635503a0e81161029b5780635503a0e8146105d35780635879e395146105e85780635bbb2177146106085780635c975abb1461063557600080fd5b806343bcc582146105675780634f9263e0146105865780634fdd43cb146105b357600080fd5b806316ba10e01161033957806323143c5b1161030857806323143c5b146104ff57806323b872dd1461052c5780633ccfd60b1461053f57806342842e0e1461055457600080fd5b806316ba10e01461048c57806316c38b3c146104ac57806318160ddd146104cc5780631f21bfbf146104e957600080fd5b8063081812fc11610375578063081812fc1461040a578063095ea7b3146104425780630a6cd0f91461045557806310069f711461046857600080fd5b806301ffc9a71461039c57806306fdde03146103d157806307e73e78146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612d28565b610ab0565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610b02565b6040516103c89190612d9d565b3480156103ff57600080fd5b50610408610b94565b005b34801561041657600080fd5b5061042a610425366004612db0565b610d18565b6040516001600160a01b0390911681526020016103c8565b610408610450366004612de5565b610d5c565b610408610463366004612e5a565b610dfc565b34801561047457600080fd5b5061047e60185481565b6040519081526020016103c8565b34801561049857600080fd5b506104086104a7366004612f42565b61132f565b3480156104b857600080fd5b506104086104c7366004612f98565b61134a565b3480156104d857600080fd5b50600154600054036000190161047e565b3480156104f557600080fd5b5061047e60115481565b34801561050b57600080fd5b5061047e61051a366004612fb5565b60166020526000908152604090205481565b61040861053a366004612fd0565b611365565b34801561054b57600080fd5b506104086114fd565b610408610562366004612fd0565b611541565b34801561057357600080fd5b506012546103bc90610100900460ff1681565b34801561059257600080fd5b5061047e6105a1366004612fb5565b601a6020526000908152604090205481565b3480156105bf57600080fd5b506104086105ce366004612f42565b61155c565b3480156105df57600080fd5b506103e6611577565b3480156105f457600080fd5b50610408610603366004612db0565b611605565b34801561061457600080fd5b5061062861062336600461300c565b611612565b6040516103c89190613089565b34801561064157600080fd5b506012546103bc9060ff1681565b34801561065b57600080fd5b506103e66116dd565b34801561067057600080fd5b5061042a61067f366004612db0565b6116ea565b34801561069057600080fd5b5061040861069f366004612db0565b6116f5565b3480156106b057600080fd5b506104086106bf366004612db0565b611702565b3480156106d057600080fd5b5061047e6106df366004612fb5565b61170f565b3480156106f057600080fd5b5061047e60155481565b34801561070657600080fd5b5061040861175d565b34801561071b57600080fd5b5061047e60135481565b34801561073157600080fd5b50610408610740366004613159565b611771565b34801561075157600080fd5b5061047e60145481565b34801561076757600080fd5b50610408610776366004612db0565b61186c565b34801561078757600080fd5b50610408610796366004612f42565b611879565b3480156107a757600080fd5b5061047e600d5481565b3480156107bd57600080fd5b506107d16107cc366004612fb5565b611894565b6040516103c89190613218565b3480156107ea57600080fd5b506104086107f9366004612f98565b61199c565b34801561080a57600080fd5b506008546001600160a01b031661042a565b34801561082857600080fd5b5061047e600e5481565b34801561083e57600080fd5b506103e66119be565b610408610855366004612db0565b6119cd565b34801561086657600080fd5b50610408610875366004613250565b611db4565b34801561088657600080fd5b506103e6611e20565b61040861089d366004612e5a565b611e2d565b6104086108b0366004613287565b6120ae565b3480156108c157600080fd5b506108d56108d0366004612db0565b6120f8565b6040516103c89190613302565b3480156108ee57600080fd5b506104086108fd366004612db0565b612187565b34801561090e57600080fd5b506103e661091d366004612db0565b61222d565b34801561092e57600080fd5b5061047e600f5481565b34801561094457600080fd5b5061047e60175481565b34801561095a57600080fd5b50610408610969366004612db0565b612434565b34801561097a57600080fd5b5061047e60105481565b34801561099057600080fd5b506103bc61099f366004613310565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109d957600080fd5b506104086109e8366004613343565b612441565b3480156109f957600080fd5b5061047e601c5481565b348015610a0f57600080fd5b50610408610a1e366004612fb5565b61251e565b348015610a2f57600080fd5b5061047e610a3e366004612fb5565b60196020526000908152604090205481565b348015610a5c57600080fd5b50610408610a6b366004612db0565b612594565b348015610a7c57600080fd5b50610408610a8b366004612db0565b6125a1565b348015610a9c57600080fd5b50601b5461042a906001600160a01b031681565b60006301ffc9a760e01b6001600160e01b031983161480610ae157506380ac58cd60e01b6001600160e01b03198316145b80610afc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610b1190613366565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3d90613366565b8015610b8a5780601f10610b5f57610100808354040283529160200191610b8a565b820191906000526020600020905b815481529060010190602001808311610b6d57829003601f168201915b5050505050905090565b610b9c6125ae565b601b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0991906133a0565b601b5460405163095ea7b360e01b8152306004820152602481018390529192506001600160a01b03169063095ea7b3906044016020604051808303816000875af1158015610c5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7f91906133b9565b50601b546001600160a01b031663a9059cbb610ca36008546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610cf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1491906133b9565b5050565b6000610d2382612608565b610d40576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d67826116ea565b9050336001600160a01b03821614610da057610d83813361099f565b610da0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e0461263d565b6015546040516bffffffffffffffffffffffff193360601b16602082015284918491600090603401604051602081830303815290604052805190602001209050610e848484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506126969050565b610ed55760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c69737460448201526064015b60405180910390fd5b60125460ff1615610ef85760405162461bcd60e51b8152600401610ecc906133d6565b600d54421015610f1a5760405162461bcd60e51b8152600401610ecc90613402565b60145433600090815260166020526040902054610f38908790613468565b1115610f905760405162461bcd60e51b815260206004820152602160248201527f476f696e67206f766572206d6178696d756d206672656e4c697374204d696e746044820152607360f81b6064820152608401610ecc565b601154856001610f9f60005490565b610fa99190613480565b610fb39190613468565b1115610fd15760405162461bcd60e51b8152600401610ecc90613497565b600e548511156110235760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401610ecc565b8460105461103191906134f4565b601b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611079573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109d91906133a0565b10156110bb5760405162461bcd60e51b8152600401610ecc90613513565b846010546110c991906134f4565b601b54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa158015611117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113b91906133a0565b10156111595760405162461bcd60e51b8152600401610ecc90613556565b60008560105461116991906134f4565b905060006064601c548361117d91906134f4565b611187919061359c565b601b546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af11580156111df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120391906133b9565b61124f5760405162461bcd60e51b815260206004820152601a60248201527f4d7573742073656e6420746f207468697320636f6e74726163740000000000006044820152606401610ecc565b601b5460405163a9059cbb60e01b815261dead6004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af11580156112a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c691906133b9565b6112e25760405162461bcd60e51b8152600401610ecc906135be565b336000908152601660205260409020546112fd908890613468565b3360008181526016602052604090209190915561131a90886126ac565b50505050505061132a6001600955565b505050565b6113376125ae565b8051610d1490600c906020840190612c79565b6113526125ae565b6012805460ff1916911515919091179055565b6000611370826127aa565b9050836001600160a01b0316816001600160a01b0316146113a35760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176113f0576113d3863361099f565b6113f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661141757604051633a954ecd60e21b815260040160405180910390fd5b801561142257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036114b4576001840160008181526004602052604081205490036114b25760005481146114b25760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6115056125ae565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561153e573d6000803e3d6000fd5b50565b61132a838383604051806020016040528060008152506120ae565b6115646125ae565b8051610d1490600a906020840190612c79565b600c805461158490613366565b80601f01602080910402602001604051908101604052809291908181526020018280546115b090613366565b80156115fd5780601f106115d2576101008083540402835291602001916115fd565b820191906000526020600020905b8154815290600101906020018083116115e057829003601f168201915b505050505081565b61160d6125ae565b600e55565b6060816000816001600160401b0381111561162f5761162f612ea5565b60405190808252806020026020018201604052801561168157816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161164d5790505b50905060005b8281146116d4576116af8686838181106116a3576116a3613601565b905060200201356120f8565b8282815181106116c1576116c1613601565b6020908102919091010152600101611687565b50949350505050565b600b805461158490613366565b6000610afc826127aa565b6116fd6125ae565b601755565b61170a6125ae565b601555565b60006001600160a01b038216611738576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6117656125ae565b61176f6000612819565b565b61177961263d565b6117816125ae565b80518251146117e65760405162461bcd60e51b815260206004820152602b60248201527f616472657373657320616e64206c696d697473206d757374206265206f66206560448201526a0e2eac2d840d8cadccee8d60ab1b6064820152608401610ecc565b60005b82518110156118615781818151811061180457611804613601565b60200260200101516019600085848151811061182257611822613601565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061185990613617565b9150506117e9565b50610d146001600955565b6118746125ae565b600d55565b6118816125ae565b8051610d1490600b906020840190612c79565b606060008060006118a48561170f565b90506000816001600160401b038111156118c0576118c0612ea5565b6040519080825280602002602001820160405280156118e9578160200160208202803683370190505b50905061191660408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611990576119298161286b565b915081604001516119885781516001600160a01b03161561194957815194505b876001600160a01b0316856001600160a01b031603611988578083878060010198508151811061197b5761197b613601565b6020026020010181815250505b600101611919565b50909695505050505050565b6119a46125ae565b601280549115156101000261ff0019909216919091179055565b606060038054610b1190613366565b60125460ff16156119f05760405162461bcd60e51b8152600401610ecc906133d6565b600d54421015611a585760405162461bcd60e51b815260206004820152602d60248201527f54686520706572696f6420746f206d696e74207468697320636172642068617360448201526c103737ba1039ba30b93a32b21760991b6064820152608401610ecc565b601154816001611a6760005490565b611a719190613480565b611a7b9190613468565b1115611a995760405162461bcd60e51b8152600401610ecc90613497565b600e54811115611aeb5760405162461bcd60e51b815260206004820152601e60248201527f4d6178204d696e7420416d6f756e7420506572205458207265616368656400006044820152606401610ecc565b80600f54611af991906134f4565b601b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611b41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6591906133a0565b1015611b835760405162461bcd60e51b8152600401610ecc90613513565b80600f54611b9191906134f4565b601b54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa158015611bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0391906133a0565b1015611c215760405162461bcd60e51b8152600401610ecc90613556565b600081600f54611c3191906134f4565b905060006064601c5483611c4591906134f4565b611c4f919061359c565b601b546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af1158015611ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccb91906133b9565b611d175760405162461bcd60e51b815260206004820152601a60248201527f4d7573742073656e6420746f207468697320636f6e74726163740000000000006044820152606401610ecc565b601b5460405163a9059cbb60e01b815261dead6004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015611d6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8e91906133b9565b611daa5760405162461bcd60e51b8152600401610ecc906135be565b61132a33846126ac565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461158490613366565b611e3561263d565b6017546040516bffffffffffffffffffffffff193360601b16602082015284918491600090603401604051602081830303815290604052805190602001209050611eb58484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508692508591506126969050565b611f015760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e20746865206672656e73206c6973746044820152606401610ecc565b60125460ff1615611f245760405162461bcd60e51b8152600401610ecc906133d6565b600d54421015611f465760405162461bcd60e51b8152600401610ecc90613402565b601154856001611f5560005490565b611f5f9190613480565b611f699190613468565b1115611f875760405162461bcd60e51b8152600401610ecc90613497565b336000908152601a60205260408120549003611fdc573360009081526019602052604090205415611fc75733600090815260196020526040902054611fcb565b6018545b336000908152601960205260409020555b33600090815260196020908152604080832054601a90925290912054612003908790613468565b11156120685760405162461bcd60e51b815260206004820152602e60248201527f43616e206e6f7420657863656564206d61782067696674206d696e747320666f60448201526d722074686973206164647265737360901b6064820152608401610ecc565b336000908152601a6020526040902054612083908690613468565b336000818152601a60205260409020919091556120a090866126ac565b5050505061132a6001600955565b6120b9848484611365565b6001600160a01b0383163b156120f2576120d5848484846128a7565b6120f2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061215157506000548310155b1561215c5792915050565b6121658361286b565b90508060400151156121775792915050565b61218083612993565b9392505050565b61218f6125ae565b606481106121df5760405162461bcd60e51b815260206004820152601860248201527f43616e74206275726e206d6f7265207468616e203130302500000000000000006044820152606401610ecc565b600181116122285760405162461bcd60e51b815260206004820152601660248201527543616e74206275726e206c657373207468617420312560501b6044820152606401610ecc565b601c55565b606061223882612608565b61229e5760405162461bcd60e51b815260206004820152603160248201527f45524337323141204d657461646174613a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610ecc565b60125460ff61010090910416151560011480156122bc575060135482115b1561235357600a80546122ce90613366565b80601f01602080910402602001604051908101604052809291908181526020018280546122fa90613366565b80156123475780601f1061231c57610100808354040283529160200191612347565b820191906000526020600020905b81548152906001019060200180831161232a57829003601f168201915b50505050509050919050565b6000600b805461236290613366565b80601f016020809104026020016040519081016040528092919081815260200182805461238e90613366565b80156123db5780601f106123b0576101008083540402835291602001916123db565b820191906000526020600020905b8154815290600101906020018083116123be57829003601f168201915b5050505050905060008151116124005760405180602001604052806000815250612180565b8061240a846129c8565b600c60405160200161241e93929190613630565b6040516020818303038152906040529392505050565b61243c6125ae565b600f55565b61244961263d565b6124516125ae565b600d544210156124c95760405162461bcd60e51b815260206004820152603a60248201527f596f752063616e206f6e6c79206d696e74466f7241646472657373206f6e636560448201527f20746865206672656e4c697374204d696e74207374617274732e0000000000006064820152608401610ecc565b6011548260016124d860005490565b6124e29190613480565b6124ec9190613468565b111561250a5760405162461bcd60e51b8152600401610ecc90613497565b6125148183612a5a565b610d146001600955565b6125266125ae565b6001600160a01b03811661258b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ecc565b61153e81612819565b61259c6125ae565b601455565b6125a96125ae565b601355565b6008546001600160a01b0316331461176f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ecc565b60008160011115801561261c575060005482105b8015610afc575050600090815260046020526040902054600160e01b161590565b60026009540361268f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ecc565b6002600955565b6000826126a38584612a74565b14949350505050565b60008054908290036126d15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461278057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612748565b50816000036127a157604051622e076360e81b815260040160405180910390fd5b60005550505050565b60008180600111612800576000548110156128005760008181526004602052604081205490600160e01b821690036127fe575b806000036121805750600019016000818152600460205260409020546127dd565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610afc90612ac1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128dc9033908990889088906004016136f3565b6020604051808303816000875af1925050508015612917575060408051601f3d908101601f1916820190925261291491810190613730565b60015b612975573d808015612945576040519150601f19603f3d011682016040523d82523d6000602084013e61294a565b606091505b50805160000361296d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610afc6129c3836127aa565b612ac1565b606060006129d583612b08565b60010190506000816001600160401b038111156129f4576129f4612ea5565b6040519080825280601f01601f191660200182016040528015612a1e576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612a2857509392505050565b610d14828260405180602001604052806000815250612be0565b600081815b8451811015612ab957612aa582868381518110612a9857612a98613601565b6020026020010151612c4d565b915080612ab181613617565b915050612a79565b509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310612b475772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612b73576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612b9157662386f26fc10000830492506010015b6305f5e1008310612ba9576305f5e100830492506008015b6127108310612bbd57612710830492506004015b60648310612bcf576064830492506002015b600a8310610afc5760010192915050565b612bea83836126ac565b6001600160a01b0383163b1561132a576000548281035b612c1460008683806001019450866128a7565b612c31576040516368d2bf6b60e11b815260040160405180910390fd5b818110612c01578160005414612c4657600080fd5b5050505050565b6000818310612c69576000828152602084905260409020612180565b5060009182526020526040902090565b828054612c8590613366565b90600052602060002090601f016020900481019282612ca75760008555612ced565b82601f10612cc057805160ff1916838001178555612ced565b82800160010185558215612ced579182015b82811115612ced578251825591602001919060010190612cd2565b50612cf9929150612cfd565b5090565b5b80821115612cf95760008155600101612cfe565b6001600160e01b03198116811461153e57600080fd5b600060208284031215612d3a57600080fd5b813561218081612d12565b60005b83811015612d60578181015183820152602001612d48565b838111156120f25750506000910152565b60008151808452612d89816020860160208601612d45565b601f01601f19169290920160200192915050565b6020815260006121806020830184612d71565b600060208284031215612dc257600080fd5b5035919050565b80356001600160a01b0381168114612de057600080fd5b919050565b60008060408385031215612df857600080fd5b612e0183612dc9565b946020939093013593505050565b60008083601f840112612e2157600080fd5b5081356001600160401b03811115612e3857600080fd5b6020830191508360208260051b8501011115612e5357600080fd5b9250929050565b600080600060408486031215612e6f57600080fd5b83356001600160401b03811115612e8557600080fd5b612e9186828701612e0f565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612ee357612ee3612ea5565b604052919050565b60006001600160401b03831115612f0457612f04612ea5565b612f17601f8401601f1916602001612ebb565b9050828152838383011115612f2b57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612f5457600080fd5b81356001600160401b03811115612f6a57600080fd5b8201601f81018413612f7b57600080fd5b61298b84823560208401612eeb565b801515811461153e57600080fd5b600060208284031215612faa57600080fd5b813561218081612f8a565b600060208284031215612fc757600080fd5b61218082612dc9565b600080600060608486031215612fe557600080fd5b612fee84612dc9565b9250612ffc60208501612dc9565b9150604084013590509250925092565b6000806020838503121561301f57600080fd5b82356001600160401b0381111561303557600080fd5b61304185828601612e0f565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015611990576130b883855161304d565b92840192608092909201916001016130a5565b60006001600160401b038211156130e4576130e4612ea5565b5060051b60200190565b600082601f8301126130ff57600080fd5b8135602061311461310f836130cb565b612ebb565b82815260059290921b8401810191818101908684111561313357600080fd5b8286015b8481101561314e5780358352918301918301613137565b509695505050505050565b6000806040838503121561316c57600080fd5b82356001600160401b038082111561318357600080fd5b818501915085601f83011261319757600080fd5b813560206131a761310f836130cb565b82815260059290921b840181019181810190898411156131c657600080fd5b948201945b838610156131eb576131dc86612dc9565b825294820194908201906131cb565b9650508601359250508082111561320157600080fd5b5061320e858286016130ee565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561199057835183529284019291840191600101613234565b6000806040838503121561326357600080fd5b61326c83612dc9565b9150602083013561327c81612f8a565b809150509250929050565b6000806000806080858703121561329d57600080fd5b6132a685612dc9565b93506132b460208601612dc9565b92506040850135915060608501356001600160401b038111156132d657600080fd5b8501601f810187136132e757600080fd5b6132f687823560208401612eeb565b91505092959194509250565b60808101610afc828461304d565b6000806040838503121561332357600080fd5b61332c83612dc9565b915061333a60208401612dc9565b90509250929050565b6000806040838503121561335657600080fd5b8235915061333a60208401612dc9565b600181811c9082168061337a57607f821691505b60208210810361339a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156133b257600080fd5b5051919050565b6000602082840312156133cb57600080fd5b815161218081612f8a565b6020808252601290820152714d696e74696e67206973207061757365642160701b604082015260600190565b60208082526030908201527f596f752063616e206f6e6c79206d696e74206f6e636520746865206672656e4c60408201526f34b9ba1026b4b73a1039ba30b93a399760811b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561347b5761347b613452565b500190565b60008282101561349257613492613452565b500390565b60208082526038908201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f2066756c66696c60408201527f6c206d696e7420616d6d6f756e74207265717565737465640000000000000000606082015260800190565b600081600019048311821515161561350e5761350e613452565b500290565b60208082526023908201527f53656e64657220446f6573206e6f74206861766520616e6f7567682062616c616040820152626e636560e81b606082015260800190565b60208082526026908201527f416d6d6f756e74206e6f7420617070726f76656420746f207370656e6420666f60408201526539103ab9b2b960d11b606082015260800190565b6000826135b957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526023908201527f4d757374204275726e20546f6b656e732066726f6d207468697320636f6e74726040820152621858dd60ea1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161362957613629613452565b5060010190565b6000845160206136438285838a01612d45565b8551918401916136568184848a01612d45565b8554920191600090600181811c908083168061367357607f831692505b858310810361369057634e487b7160e01b85526022600452602485fd5b8080156136a457600181146136b5576136e2565b60ff198516885283880195506136e2565b60008b81526020902060005b858110156136da5781548a8201529084019088016136c1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061372690830184612d71565b9695505050505050565b60006020828403121561374257600080fd5b815161218081612d1256fea2646970667358221220063fc67ff317a775d823be1b52cb4684ede91c29aa7edb562c2472861adf0ae464736f6c634300080e0033

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

000000000000000000000000ae86f48c0b00f2a3eaef4ba4c23d17368f0f63f400000000000000000000000000000000000000000000000000000000000004d2

-----Decoded View---------------
Arg [0] : contractAddress (address): 0xaE86f48c0B00F2a3eaeF4ba4c23d17368f0f63f4
Arg [1] : totalMintable (uint256): 1234

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ae86f48c0b00f2a3eaef4ba4c23d17368f0f63f4
Arg [1] : 00000000000000000000000000000000000000000000000000000000000004d2


Deployed Bytecode Sourcemap

83513:12015:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49743:639;;;;;;;;;;-1:-1:-1;49743:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;49743:639:0;;;;;;;;50645:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;91620:349::-;;;;;;;;;;;;;:::i;:::-;;57136:218;;;;;;;;;;-1:-1:-1;57136:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;57136:218:0;1528:203:1;56569:408:0;;;;;;:::i;:::-;;:::i;88518:1576::-;;;;;;:::i;:::-;;:::i;84309:34::-;;;;;;;;;;;;;;;;;;;3201:25:1;;;3189:2;3174:18;84309:34:0;3055:177:1;84963:100:0;;;;;;;;;;-1:-1:-1;84963:100:0;;;;;:::i;:::-;;:::i;85208:81::-;;;;;;;;;;-1:-1:-1;85208:81:0;;;;;:::i;:::-;;:::i;46396:323::-;;;;;;;;;;-1:-1:-1;84846:1:0;46670:12;46457:7;46654:13;:28;-1:-1:-1;;46654:46:0;46396:323;;84006:22;;;;;;;;;;;;;;;;84205:44;;;;;;;;;;-1:-1:-1;84205:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;60775:2825;;;;;;:::i;:::-;;:::i;91975:99::-;;;;;;;;;;;;;:::i;63696:193::-;;;;;;:::i;:::-;;:::i;84064:28::-;;;;;;;;;;-1:-1:-1;84064:28:0;;;;;;;;;;;84401:44;;;;;;;;;;-1:-1:-1;84401:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;85069:132;;;;;;;;;;-1:-1:-1;85069:132:0;;;;;:::i;:::-;;:::i;83723:33::-;;;;;;;;;;;;;:::i;85683:106::-;;;;;;;;;;-1:-1:-1;85683:106:0;;;;;:::i;:::-;;:::i;93583:538::-;;;;;;;;;;-1:-1:-1;93583:538:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;84033:26::-;;;;;;;;;;-1:-1:-1;84033:26:0;;;;;;;;83654:64;;;;;;;;;;;;;:::i;52038:152::-;;;;;;;;;;-1:-1:-1;52038:152:0;;;;;:::i;:::-;;:::i;88291:114::-;;;;;;;;;;-1:-1:-1;88291:114:0;;;;;:::i;:::-;;:::i;88171:::-;;;;;;;;;;-1:-1:-1;88171:114:0;;;;;:::i;:::-;;:::i;47580:233::-;;;;;;;;;;-1:-1:-1;47580:233:0;;;;;:::i;:::-;;:::i;84167:33::-;;;;;;;;;;;;;;;;30522:103;;;;;;;;;;;;;:::i;84097:24::-;;;;;;;;;;;;;;;;91041:321;;;;;;;;;;-1:-1:-1;91041:321:0;;;;;:::i;:::-;;:::i;84128:34::-;;;;;;;;;;;;;;;;85580:95;;;;;;;;;;-1:-1:-1;85580:95:0;;;;;:::i;:::-;;:::i;84857:100::-;;;;;;;;;;-1:-1:-1;84857:100:0;;;;;:::i;:::-;;:::i;83778:43::-;;;;;;;;;;;;;;;;94592:933;;;;;;;;;;-1:-1:-1;94592:933:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;85390:89::-;;;;;;;;;;-1:-1:-1;85390:89:0;;;;;:::i;:::-;;:::i;29874:87::-;;;;;;;;;;-1:-1:-1;29947:6:0;;-1:-1:-1;;;;;29947:6:0;29874:87;;83863:38;;;;;;;;;;;;;;;;50821:104;;;;;;;;;;;;;:::i;86517:1276::-;;;;;;:::i;:::-;;:::i;57694:234::-;;;;;;;;;;-1:-1:-1;57694:234:0;;;;;:::i;:::-;;:::i;83592:57::-;;;;;;;;;;;;;:::i;90100:935::-;;;;;;:::i;:::-;;:::i;64487:407::-;;;;;;:::i;:::-;;:::i;92975:439::-;;;;;;;;;;-1:-1:-1;92975:439:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;85797:208::-;;;;;;;;;;-1:-1:-1;85797:208:0;;;;;:::i;:::-;;:::i;86011:500::-;;;;;;;;;;-1:-1:-1;86011:500:0;;;;;:::i;:::-;;:::i;83906:39::-;;;;;;;;;;;;;;;;84271:33;;;;;;;;;;;;;;;;85296:86;;;;;;;;;;-1:-1:-1;85296:86:0;;;;;:::i;:::-;;:::i;83950:47::-;;;;;;;;;;;;;;;;58085:164;;;;;;;;;;-1:-1:-1;58085:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;58206:25:0;;;58182:4;58206:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58085:164;87799:366;;;;;;;;;;-1:-1:-1;87799:366:0;;;;;:::i;:::-;;:::i;84515:30::-;;;;;;;;;;;;;;;;30780:201;;;;;;;;;;-1:-1:-1;30780:201:0;;;;;:::i;:::-;;:::i;84348:48::-;;;;;;;;;;-1:-1:-1;84348:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;88411:101;;;;;;;;;;-1:-1:-1;88411:101:0;;;;;:::i;:::-;;:::i;85487:85::-;;;;;;;;;;-1:-1:-1;85487:85:0;;;;;:::i;:::-;;:::i;84472:36::-;;;;;;;;;;-1:-1:-1;84472:36:0;;;;-1:-1:-1;;;;;84472:36:0;;;49743:639;49828:4;-1:-1:-1;;;;;;;;;50152:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;50229:25:0;;;50152:102;:179;;;-1:-1:-1;;;;;;;;;;50306:25:0;;;50152:179;50132:199;49743:639;-1:-1:-1;;49743:639:0:o;50645:100::-;50699:13;50732:5;50725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50645:100;:::o;91620:349::-;29760:13;:11;:13::i;:::-;91726:21:::1;::::0;91710:63:::1;::::0;-1:-1:-1;;;91710:63:0;;91767:4:::1;91710:63;::::0;::::1;1674:51:1::0;91694:12:0::1;::::0;-1:-1:-1;;;;;91726:21:0::1;::::0;91710:48:::1;::::0;1647:18:1;;91710:63:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91819:21;::::0;91803:70:::1;::::0;-1:-1:-1;;;91803:70:0;;91858:4:::1;91803:70;::::0;::::1;12482:51:1::0;12549:18;;;12542:34;;;91694:79:0;;-1:-1:-1;;;;;;91819:21:0::1;::::0;91803:46:::1;::::0;12455:18:1;;91803:70:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;91913:21:0::1;::::0;-1:-1:-1;;;;;91913:21:0::1;91897:47;91945:7;29947:6:::0;;-1:-1:-1;;;;;29947:6:0;;29874:87;91945:7:::1;91897:66;::::0;-1:-1:-1;;;;;;91897:66:0::1;::::0;;;;;;-1:-1:-1;;;;;12500:32:1;;;91897:66:0::1;::::0;::::1;12482:51:1::0;12549:18;;;12542:34;;;12455:18;;91897:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;91663:306;91620:349::o:0;57136:218::-;57212:7;57237:16;57245:7;57237;:16::i;:::-;57232:64;;57262:34;;-1:-1:-1;;;57262:34:0;;;;;;;;;;;57232:64;-1:-1:-1;57316:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;57316:30:0;;57136:218::o;56569:408::-;56658:13;56674:16;56682:7;56674;:16::i;:::-;56658:32;-1:-1:-1;80902:10:0;-1:-1:-1;;;;;56707:28:0;;;56703:175;;56755:44;56772:5;80902:10;58085:164;:::i;56755:44::-;56750:128;;56827:35;;-1:-1:-1;;;56827:35:0;;;;;;;;;;;56750:128;56890:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;56890:35:0;-1:-1:-1;;;;;56890:35:0;;;;;;;;;56941:28;;56890:24;;56941:28;;;;;;;56647:330;56569:408;;:::o;88518:1576::-;27145:21;:19;:21::i;:::-;88650:18:::1;::::0;91474:28:::1;::::0;-1:-1:-1;;91491:10:0::1;12986:2:1::0;12982:15;12978:53;91474:28:0::1;::::0;::::1;12966:66:1::0;88637:11:0;;;;91449:12:::1;::::0;13048::1;;91474:28:0::1;;;;;;;;;;;;91464:39;;;;;;91449:54;;91519:44;91539:11;;91519:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;91552:4:0;;-1:-1:-1;91558:4:0;;-1:-1:-1;91519:18:0::1;::::0;-1:-1:-1;91519:44:0:i:1;:::-;91510:90;;;::::0;-1:-1:-1;;;91510:90:0;;13273:2:1;91510:90:0::1;::::0;::::1;13255:21:1::0;;;13292:18;;;13285:30;13351:34;13331:18;;;13324:62;13403:18;;91510:90:0::1;;;;;;;;;88686:6:::2;::::0;::::2;;88685:7;88677:38;;;;-1:-1:-1::0;;;88677:38:0::2;;;;;;;:::i;:::-;88749:13;;88730:15;:32;;88722:93;;;;-1:-1:-1::0;;;88722:93:0::2;;;;;;;:::i;:::-;88872:18;::::0;88846:10:::2;88831:26;::::0;;;:14:::2;:26;::::0;;;;;:36:::2;::::0;88859:8;;88831:36:::2;:::i;:::-;88830:60;;88822:107;;;::::0;-1:-1:-1;;;88822:107:0;;14663:2:1;88822:107:0::2;::::0;::::2;14645:21:1::0;14702:2;14682:18;;;14675:30;14741:34;14721:18;;;14714:62;-1:-1:-1;;;14792:18:1;;;14785:31;14833:19;;88822:107:0::2;14461:397:1::0;88822:107:0::2;88977:10;;88965:8;88960:1;88945:14;46138:7:::0;46165:13;;46083:103;88945:14:::2;:16;;;;:::i;:::-;88944:29;;;;:::i;:::-;:43;;88936:112;;;;-1:-1:-1::0;;;88936:112:0::2;;;;;;;:::i;:::-;89075:18;;89063:8;:30;;89055:73;;;::::0;-1:-1:-1;;;89055:73:0;;15620:2:1;89055:73:0::2;::::0;::::2;15602:21:1::0;15659:2;15639:18;;;15632:30;15698:32;15678:18;;;15671:60;15748:18;;89055:73:0::2;15418:354:1::0;89055:73:0::2;89265:8;89246:16;;:27;;;;:::i;:::-;89198:21;::::0;89182:60:::2;::::0;-1:-1:-1;;;89182:60:0;;89231:10:::2;89182:60;::::0;::::2;1674:51:1::0;-1:-1:-1;;;;;89198:21:0;;::::2;::::0;89182:48:::2;::::0;1647:18:1;;89182:60:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:92;;89174:139;;;;-1:-1:-1::0;;;89174:139:0::2;;;;;;;:::i;:::-;89497:8;89478:16;;:27;;;;:::i;:::-;89414:21;::::0;89398:75:::2;::::0;-1:-1:-1;;;89398:75:0;;89447:10:::2;89398:75;::::0;::::2;16566:34:1::0;89467:4:0::2;16616:18:1::0;;;16609:43;-1:-1:-1;;;;;89414:21:0;;::::2;::::0;89398:48:::2;::::0;16501:18:1;;89398:75:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:108;;89390:158;;;;-1:-1:-1::0;;;89390:158:0::2;;;;;;;:::i;:::-;89592:12;89626:8;89607:16;;:27;;;;:::i;:::-;89592:42;;89641:15;89684:3;89668:14;;89660:7;:22;;;;:::i;:::-;89659:28;;;;:::i;:::-;89720:21;::::0;89704:86:::2;::::0;-1:-1:-1;;;89704:86:0;;89756:10:::2;89704:86;::::0;::::2;17664:34:1::0;89776:4:0::2;17714:18:1::0;;;17707:43;17766:18;;;17759:34;;;89641:46:0;;-1:-1:-1;;;;;;89720:21:0::2;::::0;89704:51:::2;::::0;17599:18:1;;89704:86:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89696:124;;;::::0;-1:-1:-1;;;89696:124:0;;18006:2:1;89696:124:0::2;::::0;::::2;17988:21:1::0;18045:2;18025:18;;;18018:30;18084:28;18064:18;;;18057:56;18130:18;;89696:124:0::2;17804:350:1::0;89696:124:0::2;89851:21;::::0;89835:103:::2;::::0;-1:-1:-1;;;89835:103:0;;89883:42:::2;89835:103;::::0;::::2;12482:51:1::0;12549:18;;;12542:34;;;-1:-1:-1;;;;;89851:21:0;;::::2;::::0;89835:47:::2;::::0;12455:18:1;;89835:103:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89827:150;;;;-1:-1:-1::0;;;89827:150:0::2;;;;;;;:::i;:::-;90032:10;90017:26;::::0;;;:14:::2;:26;::::0;;;;;:35:::2;::::0;90044:8;;90017:35:::2;:::i;:::-;90003:10;89988:26;::::0;;;:14:::2;:26;::::0;;;;:64;;;;90059:27:::2;::::0;90077:8;90059:5:::2;:27::i;:::-;88670:1424;;91442:172:::1;27177:1;;;27189:20:::0;26583:1;27709:7;:22;27526:213;27189:20;88518:1576;;;:::o;84963:100::-;29760:13;:11;:13::i;:::-;85035:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;85208:81::-:0;29760:13;:11;:13::i;:::-;85267:6:::1;:15:::0;;-1:-1:-1;;85267:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;85208:81::o;60775:2825::-;60917:27;60947;60966:7;60947:18;:27::i;:::-;60917:57;;61032:4;-1:-1:-1;;;;;60991:45:0;61007:19;-1:-1:-1;;;;;60991:45:0;;60987:86;;61045:28;;-1:-1:-1;;;61045:28:0;;;;;;;;;;;60987:86;61087:27;59883:24;;;:15;:24;;;;;60111:26;;80902:10;59508:30;;;-1:-1:-1;;;;;59201:28:0;;59486:20;;;59483:56;61273:180;;61366:43;61383:4;80902:10;58085:164;:::i;61366:43::-;61361:92;;61418:35;;-1:-1:-1;;;61418:35:0;;;;;;;;;;;61361:92;-1:-1:-1;;;;;61470:16:0;;61466:52;;61495:23;;-1:-1:-1;;;61495:23:0;;;;;;;;;;;61466:52;61667:15;61664:160;;;61807:1;61786:19;61779:30;61664:160;-1:-1:-1;;;;;62204:24:0;;;;;;;:18;:24;;;;;;62202:26;;-1:-1:-1;;62202:26:0;;;62273:22;;;;;;;;;62271:24;;-1:-1:-1;62271:24:0;;;55427:11;55402:23;55398:41;55385:63;-1:-1:-1;;;55385:63:0;62566:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;62861:47:0;;:52;;62857:627;;62966:1;62956:11;;62934:19;63089:30;;;:17;:30;;;;;;:35;;63085:384;;63227:13;;63212:11;:28;63208:242;;63374:30;;;;:17;:30;;;;;:52;;;63208:242;62915:569;62857:627;63531:7;63527:2;-1:-1:-1;;;;;63512:27:0;63521:4;-1:-1:-1;;;;;63512:27:0;;;;;;;;;;;60906:2694;;;60775:2825;;;:::o;91975:99::-;29760:13;:11;:13::i;:::-;29947:6;;92020:48:::1;::::0;-1:-1:-1;;;;;29947:6:0;;;;92046:21:::1;92020:48:::0;::::1;;;::::0;::::1;::::0;;;92046:21;29947:6;92020:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;91975:99::o:0;63696:193::-;63842:39;63859:4;63865:2;63869:7;63842:39;;;;;;;;;;;;:16;:39::i;85069:132::-;29760:13;:11;:13::i;:::-;85157:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;83723:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85683:106::-;29760:13;:11;:13::i;:::-;85754:18:::1;:27:::0;85683:106::o;93583:538::-;93717:23;93814:8;93789:22;93814:8;-1:-1:-1;;;;;93883:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93883:36:0;;-1:-1:-1;;93883:36:0;;;;;;;;;;;;93846:73;;93941:9;93936:129;93957:14;93952:1;:19;93936:129;;94015:32;94035:8;;94044:1;94035:11;;;;;;;:::i;:::-;;;;;;;94015:19;:32::i;:::-;93999:10;94010:1;93999:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;93973:3;;93936:129;;;-1:-1:-1;94088:10:0;93583:538;-1:-1:-1;;;;93583:538:0:o;83654:64::-;;;;;;;:::i;52038:152::-;52110:7;52153:27;52172:7;52153:18;:27::i;88291:114::-;29760:13;:11;:13::i;:::-;88368:18:::1;:31:::0;88291:114::o;88171:::-;29760:13;:11;:13::i;:::-;88248:18:::1;:31:::0;88171:114::o;47580:233::-;47652:7;-1:-1:-1;;;;;47676:19:0;;47672:60;;47704:28;;-1:-1:-1;;;47704:28:0;;;;;;;;;;;47672:60;-1:-1:-1;;;;;;47750:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;47750:55:0;;47580:233::o;30522:103::-;29760:13;:11;:13::i;:::-;30587:30:::1;30614:1;30587:18;:30::i;:::-;30522:103::o:0;91041:321::-;27145:21;:19;:21::i;:::-;29760:13:::1;:11;:13::i;:::-;91183:6:::2;:13;91162:10;:17;:34;91154:89;;;::::0;-1:-1:-1;;;91154:89:0;;18897:2:1;91154:89:0::2;::::0;::::2;18879:21:1::0;18936:2;18916:18;;;18909:30;18975:34;18955:18;;;18948:62;-1:-1:-1;;;19026:18:1;;;19019:41;19077:19;;91154:89:0::2;18695:407:1::0;91154:89:0::2;91255:9;91250:107;91272:10;:17;91270:1;:19;91250:107;;;91340:6;91347:1;91340:9;;;;;;;;:::i;:::-;;;;;;;91304:18;:33;91323:10;91334:1;91323:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;91304:33:0::2;-1:-1:-1::0;;;;;91304:33:0::2;;;;;;;;;;;;:45;;;;91291:3;;;;;:::i;:::-;;;;91250:107;;;;27189:20:::0;26583:1;27709:7;:22;27526:213;85580:95;29760:13;:11;:13::i;:::-;85645::::1;:22:::0;85580:95::o;84857:100::-;29760:13;:11;:13::i;:::-;84929:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;94592:933::-:0;94661:16;94719:19;94755:25;94797:22;94822:16;94832:5;94822:9;:16::i;:::-;94797:41;;94855:25;94897:14;-1:-1:-1;;;;;94883:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;94883:29:0;;94855:57;;94929:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94929:31:0;84846:1;94977:494;95026:14;95011:11;:29;94977:494;;95080:15;95093:1;95080:12;:15::i;:::-;95068:27;;95120:9;:16;;;95163:8;95116:77;95217:14;;-1:-1:-1;;;;;95217:28:0;;95213:115;;95292:14;;;-1:-1:-1;95213:115:0;95373:5;-1:-1:-1;;;;;95352:26:0;:17;-1:-1:-1;;;;;95352:26:0;;95348:106;;95431:1;95405:8;95414:13;;;;;;95405:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;95348:106;95042:3;;94977:494;;;-1:-1:-1;95494:8:0;;94592:933;-1:-1:-1;;;;;;94592:933:0:o;85390:89::-;29760:13;:11;:13::i;:::-;85453:9:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;85453:18:0;;::::1;::::0;;;::::1;::::0;;85390:89::o;50821:104::-;50877:13;50910:7;50903:14;;;;;:::i;86517:1276::-;86582:6;;;;86581:7;86573:38;;;;-1:-1:-1;;;86573:38:0;;;;;;;:::i;:::-;86645:13;;86626:15;:32;;86618:90;;;;-1:-1:-1;;;86618:90:0;;19449:2:1;86618:90:0;;;19431:21:1;19488:2;19468:18;;;19461:30;19527:34;19507:18;;;19500:62;-1:-1:-1;;;19578:18:1;;;19571:43;19631:19;;86618:90:0;19247:409:1;86618:90:0;86756:10;;86744:8;86739:1;86724:14;46138:7;46165:13;;46083:103;86724:14;:16;;;;:::i;:::-;86723:29;;;;:::i;:::-;:43;;86715:112;;;;-1:-1:-1;;;86715:112:0;;;;;;;:::i;:::-;86854:18;;86842:8;:30;;86834:73;;;;-1:-1:-1;;;86834:73:0;;15620:2:1;86834:73:0;;;15602:21:1;15659:2;15639:18;;;15632:30;15698:32;15678:18;;;15671:60;15748:18;;86834:73:0;15418:354:1;86834:73:0;87038:8;87027;;:19;;;;:::i;:::-;86979:21;;86963:60;;-1:-1:-1;;;86963:60:0;;87012:10;86963:60;;;1674:51:1;-1:-1:-1;;;;;86979:21:0;;;;86963:48;;1647:18:1;;86963:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:84;;86955:131;;;;-1:-1:-1;;;86955:131:0;;;;;;;:::i;:::-;87262:8;87251;;:19;;;;:::i;:::-;87187:21;;87171:75;;-1:-1:-1;;;87171:75:0;;87220:10;87171:75;;;16566:34:1;87240:4:0;16616:18:1;;;16609:43;-1:-1:-1;;;;;87187:21:0;;;;87171:48;;16501:18:1;;87171:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:100;;87163:150;;;;-1:-1:-1;;;87163:150:0;;;;;;;:::i;:::-;87355:12;87381:8;87370;;:19;;;;:::i;:::-;87355:34;;87396:15;87439:3;87423:14;;87415:7;:22;;;;:::i;:::-;87414:28;;;;:::i;:::-;87475:21;;87459:86;;-1:-1:-1;;;87459:86:0;;87511:10;87459:86;;;17664:34:1;87531:4:0;17714:18:1;;;17707:43;17766:18;;;17759:34;;;87396:46:0;;-1:-1:-1;;;;;;87475:21:0;;87459:51;;17599:18:1;;87459:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;87451:124;;;;-1:-1:-1;;;87451:124:0;;18006:2:1;87451:124:0;;;17988:21:1;18045:2;18025:18;;;18018:30;18084:28;18064:18;;;18057:56;18130:18;;87451:124:0;17804:350:1;87451:124:0;87606:21;;87590:103;;-1:-1:-1;;;87590:103:0;;87638:42;87590:103;;;12482:51:1;12549:18;;;12542:34;;;-1:-1:-1;;;;;87606:21:0;;;;87590:47;;12455:18:1;;87590:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;87582:150;;;;-1:-1:-1;;;87582:150:0;;;;;;;:::i;:::-;87760:27;87766:10;87778:8;87760:5;:27::i;57694:234::-;80902:10;57789:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;57789:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;57789:60:0;;;;;;;;;;57865:55;;540:41:1;;;57789:49:0;;80902:10;57865:55;;513:18:1;57865:55:0;;;;;;;57694:234;;:::o;83592:57::-;;;;;;;:::i;90100:935::-;27145:21;:19;:21::i;:::-;90232:18:::1;::::0;91474:28:::1;::::0;-1:-1:-1;;91491:10:0::1;12986:2:1::0;12982:15;12978:53;91474:28:0::1;::::0;::::1;12966:66:1::0;90219:11:0;;;;91449:12:::1;::::0;13048::1;;91474:28:0::1;;;;;;;;;;;;91464:39;;;;;;91449:54;;91519:44;91539:11;;91519:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;91552:4:0;;-1:-1:-1;91558:4:0;;-1:-1:-1;91519:18:0::1;::::0;-1:-1:-1;91519:44:0:i:1;:::-;91510:90;;;::::0;-1:-1:-1;;;91510:90:0;;13273:2:1;91510:90:0::1;::::0;::::1;13255:21:1::0;;;13292:18;;;13285:30;13351:34;13331:18;;;13324:62;13403:18;;91510:90:0::1;13071:356:1::0;91510:90:0::1;90268:6:::2;::::0;::::2;;90267:7;90259:38;;;;-1:-1:-1::0;;;90259:38:0::2;;;;;;;:::i;:::-;90331:13;;90312:15;:32;;90304:93;;;;-1:-1:-1::0;;;90304:93:0::2;;;;;;;:::i;:::-;90445:10;;90433:8;90428:1;90413:14;46138:7:::0;46165:13;;46083:103;90413:14:::2;:16;;;;:::i;:::-;90412:29;;;;:::i;:::-;:43;;90404:112;;;;-1:-1:-1::0;;;90404:112:0::2;;;;;;;:::i;:::-;90588:10;90573:26;::::0;;;:14:::2;:26;::::0;;;;;:31;;90570:172:::2;;90666:10;90647:30;::::0;;;:18:::2;:30;::::0;;;;;:33;:87:::2;;90723:10;90704:30;::::0;;;:18:::2;:30;::::0;;;;;90647:87:::2;;;90683:18;;90647:87;90633:10;90614:30;::::0;;;:18:::2;:30;::::0;;;;:120;90570:172:::2;90860:10;90841:30;::::0;;;:18:::2;:30;::::0;;;;;;;;90802:14:::2;:26:::0;;;;;;;:35:::2;::::0;90829:8;;90802:35:::2;:::i;:::-;:69;;90794:128;;;::::0;-1:-1:-1;;;90794:128:0;;19863:2:1;90794:128:0::2;::::0;::::2;19845:21:1::0;19902:2;19882:18;;;19875:30;19941:34;19921:18;;;19914:62;-1:-1:-1;;;19992:18:1;;;19985:44;20046:19;;90794:128:0::2;19661:410:1::0;90794:128:0::2;90973:10;90958:26;::::0;;;:14:::2;:26;::::0;;;;;:35:::2;::::0;90985:8;;90958:35:::2;:::i;:::-;90944:10;90929:26;::::0;;;:14:::2;:26;::::0;;;;:64;;;;91002:27:::2;::::0;91020:8;91002:5:::2;:27::i;:::-;91442:172:::1;27177:1;;;27189:20:::0;26583:1;27709:7;:22;27526:213;64487:407;64662:31;64675:4;64681:2;64685:7;64662:12;:31::i;:::-;-1:-1:-1;;;;;64708:14:0;;;:19;64704:183;;64747:56;64778:4;64784:2;64788:7;64797:5;64747:30;:56::i;:::-;64742:145;;64831:40;;-1:-1:-1;;;64831:40:0;;;;;;;;;;;64742:145;64487:407;;;;:::o;92975:439::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84846:1:0;93134:7;:25;:54;;;-1:-1:-1;46138:7:0;46165:13;93163:7;:25;;93134:54;93130:107;;;93214:9;92975:439;-1:-1:-1;;92975:439:0:o;93130:107::-;93261:21;93274:7;93261:12;:21::i;:::-;93249:33;;93299:9;:16;;;93295:69;;;93341:9;92975:439;-1:-1:-1;;92975:439:0:o;93295:69::-;93383:21;93396:7;93383:12;:21::i;:::-;93376:28;92975:439;-1:-1:-1;;;92975:439:0:o;85797:208::-;29760:13;:11;:13::i;:::-;85879:3:::1;85871:6;:11;85863:48;;;::::0;-1:-1:-1;;;85863:48:0;;20278:2:1;85863:48:0::1;::::0;::::1;20260:21:1::0;20317:2;20297:18;;;20290:30;20356:26;20336:18;;;20329:54;20400:18;;85863:48:0::1;20076:348:1::0;85863:48:0::1;85937:1;85928:6;:10;85920:45;;;::::0;-1:-1:-1;;;85920:45:0;;20631:2:1;85920:45:0::1;::::0;::::1;20613:21:1::0;20670:2;20650:18;;;20643:30;-1:-1:-1;;;20689:18:1;;;20682:52;20751:18;;85920:45:0::1;20429:346:1::0;85920:45:0::1;85974:14;:23:::0;85797:208::o;86011:500::-;86085:13;86115:17;86123:8;86115:7;:17::i;:::-;86107:79;;;;-1:-1:-1;;;86107:79:0;;20982:2:1;86107:79:0;;;20964:21:1;21021:2;21001:18;;;20994:30;21060:34;21040:18;;;21033:62;-1:-1:-1;;;21111:18:1;;;21104:47;21168:19;;86107:79:0;20780:413:1;86107:79:0;86227:9;;;;;;;;:17;;:9;:17;:42;;;;;86260:8;;86249;:19;86227:42;86223:89;;;86287:17;86280:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86011:500;;;:::o;86223:89::-;86318:28;86349:9;86318:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86403:1;86378:14;86372:28;:32;:133;;;;;;;;;;;;;;;;;86438:14;86454:26;86471:8;86454:16;:26::i;:::-;86482:9;86421:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86365:140;86011:500;-1:-1:-1;;;86011:500:0:o;85296:86::-;29760:13;:11;:13::i;:::-;85359:8:::1;:16:::0;85296:86::o;87799:366::-;27145:21;:19;:21::i;:::-;29760:13:::1;:11;:13::i;:::-;87925::::2;;87906:15;:32;;87898:103;;;::::0;-1:-1:-1;;;87898:103:0;;23058:2:1;87898:103:0::2;::::0;::::2;23040:21:1::0;23097:2;23077:18;;;23070:30;23136:34;23116:18;;;23109:62;23207:28;23187:18;;;23180:56;23253:19;;87898:103:0::2;22856:422:1::0;87898:103:0::2;88049:10;;88037:8;88032:1;88017:14;46138:7:::0;46165:13;;46083:103;88017:14:::2;:16;;;;:::i;:::-;88016:29;;;;:::i;:::-;:43;;88008:112;;;;-1:-1:-1::0;;;88008:112:0::2;;;;;;;:::i;:::-;88129:30;88139:9;88150:8;88129:9;:30::i;:::-;27189:20:::0;26583:1;27709:7;:22;27526:213;30780:201;29760:13;:11;:13::i;:::-;-1:-1:-1;;;;;30869:22:0;::::1;30861:73;;;::::0;-1:-1:-1;;;30861:73:0;;23485:2:1;30861:73:0::1;::::0;::::1;23467:21:1::0;23524:2;23504:18;;;23497:30;23563:34;23543:18;;;23536:62;-1:-1:-1;;;23614:18:1;;;23607:36;23660:19;;30861:73:0::1;23283:402:1::0;30861:73:0::1;30945:28;30964:8;30945:18;:28::i;88411:101::-:0;29760:13;:11;:13::i;:::-;88480:18:::1;:26:::0;88411:101::o;85487:85::-;29760:13;:11;:13::i;:::-;85547:8:::1;:17:::0;85487:85::o;30039:132::-;29947:6;;-1:-1:-1;;;;;29947:6:0;80902:10;30103:23;30095:68;;;;-1:-1:-1;;;30095:68:0;;23892:2:1;30095:68:0;;;23874:21:1;;;23911:18;;;23904:30;23970:34;23950:18;;;23943:62;24022:18;;30095:68:0;23690:356:1;58507:282:0;58572:4;58628:7;84846:1;58609:26;;:66;;;;;58662:13;;58652:7;:23;58609:66;:153;;;;-1:-1:-1;;58713:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;58713:44:0;:49;;58507:282::o;27225:293::-;26627:1;27359:7;;:19;27351:63;;;;-1:-1:-1;;;27351:63:0;;24253:2:1;27351:63:0;;;24235:21:1;24292:2;24272:18;;;24265:30;24331:33;24311:18;;;24304:61;24382:18;;27351:63:0;24051:355:1;27351:63:0;26627:1;27492:7;:18;27225:293::o;1262:190::-;1387:4;1440;1411:25;1424:5;1431:4;1411:12;:25::i;:::-;:33;;1262:190;-1:-1:-1;;;;1262:190:0:o;68156:2966::-;68229:20;68252:13;;;68280;;;68276:44;;68302:18;;-1:-1:-1;;;68302:18:0;;;;;;;;;;;68276:44;-1:-1:-1;;;;;68808:22:0;;;;;;:18;:22;;;;41877:2;68808:22;;;:71;;68846:32;68834:45;;68808:71;;;69122:31;;;:17;:31;;;;;-1:-1:-1;55858:15:0;;55832:24;55828:46;55427:11;55402:23;55398:41;55395:52;55385:63;;69122:173;;69357:23;;;;69122:31;;68808:22;;70122:25;68808:22;;69975:335;70636:1;70622:12;70618:20;70576:346;70677:3;70668:7;70665:16;70576:346;;70895:7;70885:8;70882:1;70855:25;70852:1;70849;70844:59;70730:1;70717:15;70576:346;;;70580:77;70955:8;70967:1;70955:13;70951:45;;70977:19;;-1:-1:-1;;;70977:19:0;;;;;;;;;;;70951:45;71013:13;:19;-1:-1:-1;88518:1576:0;;;:::o;53193:1275::-;53260:7;53295;;84846:1;53344:23;53340:1061;;53397:13;;53390:4;:20;53386:1015;;;53435:14;53452:23;;;:17;:23;;;;;;;-1:-1:-1;;;53541:24:0;;:29;;53537:845;;54206:113;54213:6;54223:1;54213:11;54206:113;;-1:-1:-1;;;54284:6:0;54266:25;;;;:17;:25;;;;;;54206:113;;53537:845;53412:989;53386:1015;54429:31;;-1:-1:-1;;;54429:31:0;;;;;;;;;;;31141:191;31234:6;;;-1:-1:-1;;;;;31251:17:0;;;-1:-1:-1;;;;;;31251:17:0;;;;;;;31284:40;;31234:6;;;31251:17;31234:6;;31284:40;;31215:16;;31284:40;31204:128;31141:191;:::o;52641:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52769:24:0;;;;:17;:24;;;;;;52750:44;;:18;:44::i;66978:716::-;67162:88;;-1:-1:-1;;;67162:88:0;;67141:4;;-1:-1:-1;;;;;67162:45:0;;;;;:88;;80902:10;;67229:4;;67235:7;;67244:5;;67162:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67162:88:0;;;;;;;;-1:-1:-1;;67162:88:0;;;;;;;;;;;;:::i;:::-;;;67158:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67445:6;:13;67462:1;67445:18;67441:235;;67491:40;;-1:-1:-1;;;67491:40:0;;;;;;;;;;;67441:235;67634:6;67628:13;67619:6;67615:2;67611:15;67604:38;67158:529;-1:-1:-1;;;;;;67321:64:0;-1:-1:-1;;;67321:64:0;;-1:-1:-1;67158:529:0;66978:716;;;;;;:::o;52379:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52490:47:0;52509:27;52528:7;52509:18;:27::i;:::-;52490:18;:47::i;22906:716::-;22962:13;23013:14;23030:17;23041:5;23030:10;:17::i;:::-;23050:1;23030:21;23013:38;;23066:20;23100:6;-1:-1:-1;;;;;23089:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23089:18:0;-1:-1:-1;23066:41:0;-1:-1:-1;23231:28:0;;;23247:2;23231:28;23288:288;-1:-1:-1;;23320:5:0;-1:-1:-1;;;23457:2:0;23446:14;;23441:30;23320:5;23428:44;23518:2;23509:11;;;-1:-1:-1;23539:21:0;23288:288;23539:21;-1:-1:-1;23597:6:0;22906:716;-1:-1:-1;;;22906:716:0:o;74647:112::-;74724:27;74734:2;74738:8;74724:27;;;;;;;;;;;;:9;:27::i;2129:296::-;2212:7;2255:4;2212:7;2270:118;2294:5;:12;2290:1;:16;2270:118;;;2343:33;2353:12;2367:5;2373:1;2367:8;;;;;;;;:::i;:::-;;;;;;;2343:9;:33::i;:::-;2328:48;-1:-1:-1;2308:3:0;;;;:::i;:::-;;;;2270:118;;;-1:-1:-1;2405:12:0;2129:296;-1:-1:-1;;;2129:296:0:o;54567:366::-;-1:-1:-1;;;;;;;;;;;;;54677:41:0;;;;42398:3;54763:33;;;-1:-1:-1;;;;;54729:68:0;-1:-1:-1;;;54729:68:0;-1:-1:-1;;;54827:24:0;;:29;;-1:-1:-1;;;54808:48:0;;;;42919:3;54896:28;;;;-1:-1:-1;;;54867:58:0;-1:-1:-1;54567:366:0:o;19772:922::-;19825:7;;-1:-1:-1;;;19903:15:0;;19899:102;;-1:-1:-1;;;19939:15:0;;;-1:-1:-1;19983:2:0;19973:12;19899:102;20028:6;20019:5;:15;20015:102;;20064:6;20055:15;;;-1:-1:-1;20099:2:0;20089:12;20015:102;20144:6;20135:5;:15;20131:102;;20180:6;20171:15;;;-1:-1:-1;20215:2:0;20205:12;20131:102;20260:5;20251;:14;20247:99;;20295:5;20286:14;;;-1:-1:-1;20329:1:0;20319:11;20247:99;20373:5;20364;:14;20360:99;;20408:5;20399:14;;;-1:-1:-1;20442:1:0;20432:11;20360:99;20486:5;20477;:14;20473:99;;20521:5;20512:14;;;-1:-1:-1;20555:1:0;20545:11;20473:99;20599:5;20590;:14;20586:66;;20635:1;20625:11;20680:6;19772:922;-1:-1:-1;;19772:922:0:o;73874:689::-;74005:19;74011:2;74015:8;74005:5;:19::i;:::-;-1:-1:-1;;;;;74066:14:0;;;:19;74062:483;;74106:11;74120:13;74168:14;;;74201:233;74232:62;74271:1;74275:2;74279:7;;;;;;74288:5;74232:30;:62::i;:::-;74227:167;;74330:40;;-1:-1:-1;;;74330:40:0;;;;;;;;;;;74227:167;74429:3;74421:5;:11;74201:233;;74516:3;74499:13;;:20;74495:34;;74521:8;;;74495:34;74087:458;;73874:689;;;:::o;9169:149::-;9232:7;9263:1;9259;:5;:51;;9394:13;9488:15;;;9524:4;9517:15;;;9571:4;9555:21;;9259:51;;;-1:-1:-1;9394:13:0;9488:15;;;9524:4;9517:15;9571:4;9555:21;;;9169:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:367::-;2236:8;2246:6;2300:3;2293:4;2285:6;2281:17;2277:27;2267:55;;2318:1;2315;2308:12;2267:55;-1:-1:-1;2341:20:1;;-1:-1:-1;;;;;2373:30:1;;2370:50;;;2416:1;2413;2406:12;2370:50;2453:4;2445:6;2441:17;2429:29;;2513:3;2506:4;2496:6;2493:1;2489:14;2481:6;2477:27;2473:38;2470:47;2467:67;;;2530:1;2527;2520:12;2467:67;2173:367;;;;;:::o;2545:505::-;2640:6;2648;2656;2709:2;2697:9;2688:7;2684:23;2680:32;2677:52;;;2725:1;2722;2715:12;2677:52;2765:9;2752:23;-1:-1:-1;;;;;2790:6:1;2787:30;2784:50;;;2830:1;2827;2820:12;2784:50;2869:70;2931:7;2922:6;2911:9;2907:22;2869:70;:::i;:::-;2958:8;;2843:96;;-1:-1:-1;3040:2:1;3025:18;;;;3012:32;;2545:505;-1:-1:-1;;;;2545:505:1:o;3237:127::-;3298:10;3293:3;3289:20;3286:1;3279:31;3329:4;3326:1;3319:15;3353:4;3350:1;3343:15;3369:275;3440:2;3434:9;3505:2;3486:13;;-1:-1:-1;;3482:27:1;3470:40;;-1:-1:-1;;;;;3525:34:1;;3561:22;;;3522:62;3519:88;;;3587:18;;:::i;:::-;3623:2;3616:22;3369:275;;-1:-1:-1;3369:275:1:o;3649:407::-;3714:5;-1:-1:-1;;;;;3740:6:1;3737:30;3734:56;;;3770:18;;:::i;:::-;3808:57;3853:2;3832:15;;-1:-1:-1;;3828:29:1;3859:4;3824:40;3808:57;:::i;:::-;3799:66;;3888:6;3881:5;3874:21;3928:3;3919:6;3914:3;3910:16;3907:25;3904:45;;;3945:1;3942;3935:12;3904:45;3994:6;3989:3;3982:4;3975:5;3971:16;3958:43;4048:1;4041:4;4032:6;4025:5;4021:18;4017:29;4010:40;3649:407;;;;;:::o;4061:451::-;4130:6;4183:2;4171:9;4162:7;4158:23;4154:32;4151:52;;;4199:1;4196;4189:12;4151:52;4239:9;4226:23;-1:-1:-1;;;;;4264:6:1;4261:30;4258:50;;;4304:1;4301;4294:12;4258:50;4327:22;;4380:4;4372:13;;4368:27;-1:-1:-1;4358:55:1;;4409:1;4406;4399:12;4358:55;4432:74;4498:7;4493:2;4480:16;4475:2;4471;4467:11;4432:74;:::i;4517:118::-;4603:5;4596:13;4589:21;4582:5;4579:32;4569:60;;4625:1;4622;4615:12;4640:241;4696:6;4749:2;4737:9;4728:7;4724:23;4720:32;4717:52;;;4765:1;4762;4755:12;4717:52;4804:9;4791:23;4823:28;4845:5;4823:28;:::i;4886:186::-;4945:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:52;;;5014:1;5011;5004:12;4966:52;5037:29;5056:9;5037:29;:::i;5077:328::-;5154:6;5162;5170;5223:2;5211:9;5202:7;5198:23;5194:32;5191:52;;;5239:1;5236;5229:12;5191:52;5262:29;5281:9;5262:29;:::i;:::-;5252:39;;5310:38;5344:2;5333:9;5329:18;5310:38;:::i;:::-;5300:48;;5395:2;5384:9;5380:18;5367:32;5357:42;;5077:328;;;;;:::o;5410:437::-;5496:6;5504;5557:2;5545:9;5536:7;5532:23;5528:32;5525:52;;;5573:1;5570;5563:12;5525:52;5613:9;5600:23;-1:-1:-1;;;;;5638:6:1;5635:30;5632:50;;;5678:1;5675;5668:12;5632:50;5717:70;5779:7;5770:6;5759:9;5755:22;5717:70;:::i;:::-;5806:8;;5691:96;;-1:-1:-1;5410:437:1;-1:-1:-1;;;;5410:437:1:o;5852:349::-;5936:12;;-1:-1:-1;;;;;5932:38:1;5920:51;;6024:4;6013:16;;;6007:23;-1:-1:-1;;;;;6003:48:1;5987:14;;;5980:72;6115:4;6104:16;;;6098:23;6091:31;6084:39;6068:14;;;6061:63;6177:4;6166:16;;;6160:23;6185:8;6156:38;6140:14;;6133:62;5852:349::o;6206:724::-;6441:2;6493:21;;;6563:13;;6466:18;;;6585:22;;;6412:4;;6441:2;6664:15;;;;6638:2;6623:18;;;6412:4;6707:197;6721:6;6718:1;6715:13;6707:197;;;6770:52;6818:3;6809:6;6803:13;6770:52;:::i;:::-;6879:15;;;;6851:4;6842:14;;;;;6743:1;6736:9;6707:197;;7302:183;7362:4;-1:-1:-1;;;;;7387:6:1;7384:30;7381:56;;;7417:18;;:::i;:::-;-1:-1:-1;7462:1:1;7458:14;7474:4;7454:25;;7302:183::o;7490:662::-;7544:5;7597:3;7590:4;7582:6;7578:17;7574:27;7564:55;;7615:1;7612;7605:12;7564:55;7651:6;7638:20;7677:4;7701:60;7717:43;7757:2;7717:43;:::i;:::-;7701:60;:::i;:::-;7795:15;;;7881:1;7877:10;;;;7865:23;;7861:32;;;7826:12;;;;7905:15;;;7902:35;;;7933:1;7930;7923:12;7902:35;7969:2;7961:6;7957:15;7981:142;7997:6;7992:3;7989:15;7981:142;;;8063:17;;8051:30;;8101:12;;;;8014;;7981:142;;;-1:-1:-1;8141:5:1;7490:662;-1:-1:-1;;;;;;7490:662:1:o;8157:1146::-;8275:6;8283;8336:2;8324:9;8315:7;8311:23;8307:32;8304:52;;;8352:1;8349;8342:12;8304:52;8392:9;8379:23;-1:-1:-1;;;;;8462:2:1;8454:6;8451:14;8448:34;;;8478:1;8475;8468:12;8448:34;8516:6;8505:9;8501:22;8491:32;;8561:7;8554:4;8550:2;8546:13;8542:27;8532:55;;8583:1;8580;8573:12;8532:55;8619:2;8606:16;8641:4;8665:60;8681:43;8721:2;8681:43;:::i;8665:60::-;8759:15;;;8841:1;8837:10;;;;8829:19;;8825:28;;;8790:12;;;;8865:19;;;8862:39;;;8897:1;8894;8887:12;8862:39;8921:11;;;;8941:148;8957:6;8952:3;8949:15;8941:148;;;9023:23;9042:3;9023:23;:::i;:::-;9011:36;;8974:12;;;;9067;;;;8941:148;;;9108:5;-1:-1:-1;;9151:18:1;;9138:32;;-1:-1:-1;;9182:16:1;;;9179:36;;;9211:1;9208;9201:12;9179:36;;9234:63;9289:7;9278:8;9267:9;9263:24;9234:63;:::i;:::-;9224:73;;;8157:1146;;;;;:::o;9308:632::-;9479:2;9531:21;;;9601:13;;9504:18;;;9623:22;;;9450:4;;9479:2;9702:15;;;;9676:2;9661:18;;;9450:4;9745:169;9759:6;9756:1;9753:13;9745:169;;;9820:13;;9808:26;;9889:15;;;;9854:12;;;;9781:1;9774:9;9745:169;;9945:315;10010:6;10018;10071:2;10059:9;10050:7;10046:23;10042:32;10039:52;;;10087:1;10084;10077:12;10039:52;10110:29;10129:9;10110:29;:::i;:::-;10100:39;;10189:2;10178:9;10174:18;10161:32;10202:28;10224:5;10202:28;:::i;:::-;10249:5;10239:15;;;9945:315;;;;;:::o;10265:667::-;10360:6;10368;10376;10384;10437:3;10425:9;10416:7;10412:23;10408:33;10405:53;;;10454:1;10451;10444:12;10405:53;10477:29;10496:9;10477:29;:::i;:::-;10467:39;;10525:38;10559:2;10548:9;10544:18;10525:38;:::i;:::-;10515:48;;10610:2;10599:9;10595:18;10582:32;10572:42;;10665:2;10654:9;10650:18;10637:32;-1:-1:-1;;;;;10684:6:1;10681:30;10678:50;;;10724:1;10721;10714:12;10678:50;10747:22;;10800:4;10792:13;;10788:27;-1:-1:-1;10778:55:1;;10829:1;10826;10819:12;10778:55;10852:74;10918:7;10913:2;10900:16;10895:2;10891;10887:11;10852:74;:::i;:::-;10842:84;;;10265:667;;;;;;;:::o;10937:268::-;11135:3;11120:19;;11148:51;11124:9;11181:6;11148:51;:::i;11210:260::-;11278:6;11286;11339:2;11327:9;11318:7;11314:23;11310:32;11307:52;;;11355:1;11352;11345:12;11307:52;11378:29;11397:9;11378:29;:::i;:::-;11368:39;;11426:38;11460:2;11449:9;11445:18;11426:38;:::i;:::-;11416:48;;11210:260;;;;;:::o;11475:254::-;11543:6;11551;11604:2;11592:9;11583:7;11579:23;11575:32;11572:52;;;11620:1;11617;11610:12;11572:52;11656:9;11643:23;11633:33;;11685:38;11719:2;11708:9;11704:18;11685:38;:::i;11734:380::-;11813:1;11809:12;;;;11856;;;11877:61;;11931:4;11923:6;11919:17;11909:27;;11877:61;11984:2;11976:6;11973:14;11953:18;11950:38;11947:161;;12030:10;12025:3;12021:20;12018:1;12011:31;12065:4;12062:1;12055:15;12093:4;12090:1;12083:15;11947:161;;11734:380;;;:::o;12119:184::-;12189:6;12242:2;12230:9;12221:7;12217:23;12213:32;12210:52;;;12258:1;12255;12248:12;12210:52;-1:-1:-1;12281:16:1;;12119:184;-1:-1:-1;12119:184:1:o;12587:245::-;12654:6;12707:2;12695:9;12686:7;12682:23;12678:32;12675:52;;;12723:1;12720;12713:12;12675:52;12755:9;12749:16;12774:28;12796:5;12774:28;:::i;13432:342::-;13634:2;13616:21;;;13673:2;13653:18;;;13646:30;-1:-1:-1;;;13707:2:1;13692:18;;13685:48;13765:2;13750:18;;13432:342::o;13779:412::-;13981:2;13963:21;;;14020:2;14000:18;;;13993:30;14059:34;14054:2;14039:18;;14032:62;-1:-1:-1;;;14125:2:1;14110:18;;14103:46;14181:3;14166:19;;13779:412::o;14196:127::-;14257:10;14252:3;14248:20;14245:1;14238:31;14288:4;14285:1;14278:15;14312:4;14309:1;14302:15;14328:128;14368:3;14399:1;14395:6;14392:1;14389:13;14386:39;;;14405:18;;:::i;:::-;-1:-1:-1;14441:9:1;;14328:128::o;14863:125::-;14903:4;14931:1;14928;14925:8;14922:34;;;14936:18;;:::i;:::-;-1:-1:-1;14973:9:1;;14863:125::o;14993:420::-;15195:2;15177:21;;;15234:2;15214:18;;;15207:30;15273:34;15268:2;15253:18;;15246:62;15344:26;15339:2;15324:18;;15317:54;15403:3;15388:19;;14993:420::o;15777:168::-;15817:7;15883:1;15879;15875:6;15871:14;15868:1;15865:21;15860:1;15853:9;15846:17;15842:45;15839:71;;;15890:18;;:::i;:::-;-1:-1:-1;15930:9:1;;15777:168::o;15950:399::-;16152:2;16134:21;;;16191:2;16171:18;;;16164:30;16230:34;16225:2;16210:18;;16203:62;-1:-1:-1;;;16296:2:1;16281:18;;16274:33;16339:3;16324:19;;15950:399::o;16663:402::-;16865:2;16847:21;;;16904:2;16884:18;;;16877:30;16943:34;16938:2;16923:18;;16916:62;-1:-1:-1;;;17009:2:1;16994:18;;16987:36;17055:3;17040:19;;16663:402::o;17202:217::-;17242:1;17268;17258:132;;17312:10;17307:3;17303:20;17300:1;17293:31;17347:4;17344:1;17337:15;17375:4;17372:1;17365:15;17258:132;-1:-1:-1;17404:9:1;;17202:217::o;18159:399::-;18361:2;18343:21;;;18400:2;18380:18;;;18373:30;18439:34;18434:2;18419:18;;18412:62;-1:-1:-1;;;18505:2:1;18490:18;;18483:33;18548:3;18533:19;;18159:399::o;18563:127::-;18624:10;18619:3;18615:20;18612:1;18605:31;18655:4;18652:1;18645:15;18679:4;18676:1;18669:15;19107:135;19146:3;19167:17;;;19164:43;;19187:18;;:::i;:::-;-1:-1:-1;19234:1:1;19223:13;;19107:135::o;21324:1527::-;21548:3;21586:6;21580:13;21612:4;21625:51;21669:6;21664:3;21659:2;21651:6;21647:15;21625:51;:::i;:::-;21739:13;;21698:16;;;;21761:55;21739:13;21698:16;21783:15;;;21761:55;:::i;:::-;21905:13;;21838:20;;;21878:1;;21965;21987:18;;;;22040;;;;22067:93;;22145:4;22135:8;22131:19;22119:31;;22067:93;22208:2;22198:8;22195:16;22175:18;22172:40;22169:167;;-1:-1:-1;;;22235:33:1;;22291:4;22288:1;22281:15;22321:4;22242:3;22309:17;22169:167;22352:18;22379:110;;;;22503:1;22498:328;;;;22345:481;;22379:110;-1:-1:-1;;22414:24:1;;22400:39;;22459:20;;;;-1:-1:-1;22379:110:1;;22498:328;21271:1;21264:14;;;21308:4;21295:18;;22593:1;22607:169;22621:8;22618:1;22615:15;22607:169;;;22703:14;;22688:13;;;22681:37;22746:16;;;;22638:10;;22607:169;;;22611:3;;22807:8;22800:5;22796:20;22789:27;;22345:481;-1:-1:-1;22842:3:1;;21324:1527;-1:-1:-1;;;;;;;;;;;21324:1527:1:o;24411:489::-;-1:-1:-1;;;;;24680:15:1;;;24662:34;;24732:15;;24727:2;24712:18;;24705:43;24779:2;24764:18;;24757:34;;;24827:3;24822:2;24807:18;;24800:31;;;24605:4;;24848:46;;24874:19;;24866:6;24848:46;:::i;:::-;24840:54;24411:489;-1:-1:-1;;;;;;24411:489:1:o;24905:249::-;24974:6;25027:2;25015:9;25006:7;25002:23;24998:32;24995:52;;;25043:1;25040;25033:12;24995:52;25075:9;25069:16;25094:30;25118:5;25094:30;:::i

Swarm Source

ipfs://063fc67ff317a775d823be1b52cb4684ede91c29aa7edb562c2472861adf0ae4
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.