ETH Price: $2,598.84 (-2.91%)
Gas: 5 Gwei

Token

IconicNFT (IMNFT)
 

Overview

Max Total Supply

54 IMNFT

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 IMNFT
0xa5327ec0c858d649a5f9a98ba5cd93dcd11ea323
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
IconicNFT721a

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-15
*/

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;
    }
}




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);
    }
}




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);
        }
    }
}




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);
    }
}




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;
    }
}




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)
        }
    }
}




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);
}




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)
        }
    }
}



pragma solidity ^0.8.22;





contract IconicNFT721a is ERC721A, ReentrancyGuard, Ownable {
  uint16 public maxMintsPerAddress = 1;
  mapping(address => int16) public artPassMints;

  bool public artPassMintingActive = false;
  bool public allowListMintingActive = false;
  bool public mintingActive = false;
  bool public mintToEnabled = false;
  bool public burningActive = false;
  bytes32 public allowListMerkleRoot = '';
  bytes32 public artPassMerkleRoot = '';

  string public baseURI;
  bool public useEditionForURI = false;
  
  uint256 public mintPrice;
  address payable iconicAddress;
  address admin;
  address public secondaryAdmin;

  mapping(uint16 => uint16) public editionSupply; //how many available within that edition
  mapping(uint256 => uint16) public tokenToEdition; //token to edition
  mapping (uint16 => uint256) public seriesNumberToMintPrice; // series number to mint price

  constructor(string memory name_,
    string memory symbol_,
    string memory baseURI_,
    bytes32 artPassMerkleRoot_,
    bytes32 allowListMerkleRoot_,
    address iconicAddress_,
    uint256 mintPrice_,
    uint16 editionSupply_)
    ERC721A(name_, symbol_) {
    require(_msgSenderERC721A() != iconicAddress_, "Error");
    admin = _msgSenderERC721A();

    baseURI = baseURI_;
    artPassMerkleRoot = artPassMerkleRoot_;
    allowListMerkleRoot = allowListMerkleRoot_;
    iconicAddress = payable(iconicAddress_);
    mintPrice = mintPrice_;

    uint16[] memory editions = new uint16[](1);
    uint16[] memory supplies = new uint16[](1);
    editions[0] = 1;
    supplies[0] = editionSupply_;
    setEditionSupply(editions, supplies);
  }

  function enableArtPassMinting() public requiresAdmin {
    artPassMintingActive = true;
  }

  function disableArtPassMinting() public requiresAdmin {
    artPassMintingActive = false;
  }

  function enableAllowListMinting() public requiresAdmin {
    allowListMintingActive = true;
  }

  function disableAllowListMinting() public requiresAdmin {
    allowListMintingActive = false;
  }

  function enableMinting() public requiresAdmin {
    mintingActive = true;
  }

  function disableMinting() public requiresAdmin {
    mintingActive = false;
  }

  function enableMintTo() public requiresAdmin {
    mintToEnabled = true;
  }

  function disableMintTo() public requiresAdmin {
    mintToEnabled = false;
  }

  function enableTokenBurning() public requiresAdmin {
    burningActive = true;
  }

  function disableTokenBurning() public requiresAdmin {
    burningActive = false;
  }

  function enableUseEditionForURI() public requiresAdmin {
    useEditionForURI = true;
  }

  function disableUseEditionForURI() public requiresAdmin {
    useEditionForURI = false;
  }

  function setBaseTokenURI(string memory baseURI_) public requiresAdmin {
    baseURI = baseURI_;
  }

  function setMintPrice(uint256 mintPrice_) public requiresAdmin {
    mintPrice = mintPrice_;
  }

  function setMaxMintsPerAddress(uint16 maxMintsPerAddress_) public requiresAdmin {
    maxMintsPerAddress = maxMintsPerAddress_;
  }

  function setArtPassMerkleRoot(bytes32 merkleRoot_) public requiresAdmin {
    artPassMerkleRoot = merkleRoot_;
  }

  function setAllowListMerkleRoot(bytes32 merkleRoot_) public requiresAdmin {
    allowListMerkleRoot = merkleRoot_;
  }

  function setAdditionalArtPassMints(address[] memory artPassHolders, int16[] memory extras) public requiresAdmin {
    //remember to zero out old addresses
    require(artPassHolders.length == extras.length, "incorrect list");

    for(uint16 i = 0; i < artPassHolders.length; i++) {
      artPassMints[artPassHolders[i]] = extras[i];
    }
  }

  function setEditionMintPrices(uint256[] memory mintPrices, uint16[] memory seriesNumbers) public requiresAdmin {
    require(mintPrices.length == seriesNumbers.length, "incorrect list");

    for(uint16 i = 0; i < seriesNumbers.length; i++) {
      seriesNumberToMintPrice[seriesNumbers[i]] = mintPrices[i];
    }
  }

  function setEditionSupply(uint16[] memory editions, uint16[] memory supplies) public requiresAdmin {
    require(editions.length == supplies.length, "incorrect list");

    for(uint16 i = 0; i < editions.length; i++) {
      editionSupply[editions[i]] = supplies[i];
    }
  }

  function getAvailableArtPassMintCount(address artPassHolder) public view returns (uint16) {
    int16 availableMints = 1 + artPassMints[artPassHolder];
    return uint16(availableMints);
  }

  function artPassMint(bytes32[] calldata merkleProof, uint16 amount, uint16 editionIndex) external payable nonReentrant() {
    require(artPassMintingActive, "Art Pass minting not enabled");
    require(msg.value == getMintPrice(editionIndex) * amount, "Incorrect amount of ether sent");
    require(amount > 0, "Must mint positive amount");
    require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size");

    require(getAvailableArtPassMintCount(_msgSenderERC721A())>= amount, "Exceeds Art Pass holder mint limit");

    require(
        MerkleProof.verify(
            merkleProof,
            artPassMerkleRoot,
            keccak256(abi.encodePacked(_msgSenderERC721A()))
        ),
        "Not an Art Pass holder"
    );

    iconicAddress.transfer(msg.value);
    _mint(_msgSenderERC721A(), amount);
    _editionUpdate(amount, editionIndex);
    artPassMints[_msgSenderERC721A()] = artPassMints[_msgSenderERC721A()] - int16(amount);
  }

  function allowlistMint(bytes32[] calldata merkleProof, uint16 amount, uint16 editionIndex) external payable nonReentrant() {
    require(allowListMintingActive, "Allow list minting not enabled");
    require(msg.value == getMintPrice(editionIndex) * amount, "Incorrect amount of ether sent");
    require(amount > 0, "Must mint positive amount");
    require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size");

    uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount;
    require(mintCountBySender <= maxMintsPerAddress, "Exceeds per address mint limit");

    require(
        MerkleProof.verify(
            merkleProof,
            allowListMerkleRoot,
            keccak256(abi.encodePacked(_msgSenderERC721A()))
        ),
        "Address not in allowlist"
    );

    iconicAddress.transfer(msg.value);
    _mint(_msgSenderERC721A(), amount);
    _editionUpdate(amount, editionIndex);
    _setAux(_msgSenderERC721A(), mintCountBySender);
  }

  function setSecondaryAdmin(address _secondaryAdmin) public requiresAdmin {
    secondaryAdmin = _secondaryAdmin;
  }

  function mintTo(uint16 amount, uint16 editionIndex, address recipientAddress) external
    requiresSecondaryAdmin
    nonReentrant {
    require(mintToEnabled, "MintTo not enabled");
    require(amount > 0, "Must mint positive amount");
    require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size");

    _mint(recipientAddress, amount);
    _editionUpdate(amount, editionIndex);
  }

  function mint(uint16 amount, uint16 editionIndex) external payable nonReentrant() {
    require(mintingActive, "Minting not enabled");
    require(msg.value == getMintPrice(editionIndex) * amount, "Incorrect amount of ether sent");
    require(amount > 0, "Must mint positive amount");
    require(editionSupply[editionIndex] >= amount, "Mint exceeds collection size");

    uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount;
    require(mintCountBySender <= maxMintsPerAddress, "Exceeds per address mint limit");

    iconicAddress.transfer(msg.value);
    _mint(_msgSenderERC721A(), amount);
    _editionUpdate(amount, editionIndex);
    _setAux(_msgSenderERC721A(), mintCountBySender);
  }

  function burn(uint256 tokenId) public {
    require(burningActive, "Token burning is not enabled");
    _burn(tokenId, true);
  }

  function getMintPrice(uint16 seriesNumber) public view returns (uint256) {
    if(seriesNumberToMintPrice[seriesNumber] == 0) {
      return mintPrice;
    }

    return seriesNumberToMintPrice[seriesNumber];
  }

  function _editionUpdate(uint16 amount, uint16 editionIndex) internal {
    editionSupply[editionIndex] = editionSupply[editionIndex] - amount;

    //this function takes place post mint, so the tokenIds have already been incremented to match the amount
    for(uint tokenId=_nextTokenId() - amount; tokenId < _nextTokenId(); tokenId++) {
      tokenToEdition[tokenId] = editionIndex;
    }
  }

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "Token does not exist");
    uint uriIndex = useEditionForURI ? tokenToEdition[tokenId] : tokenId;
    return string(abi.encodePacked(baseURI, Strings.toString(uriIndex)));
  }

  modifier requiresAdmin() {
    require(_msgSenderERC721A() == admin, "Not Authorized");
   _;
  }

  modifier requiresSecondaryAdmin() {
    require(_msgSenderERC721A() == secondaryAdmin, "Not Authorized");
   _;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bytes32","name":"artPassMerkleRoot_","type":"bytes32"},{"internalType":"bytes32","name":"allowListMerkleRoot_","type":"bytes32"},{"internalType":"address","name":"iconicAddress_","type":"address"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"},{"internalType":"uint16","name":"editionSupply_","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"artPassMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"}],"name":"artPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"artPassMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"artPassMints","outputs":[{"internalType":"int16","name":"","type":"int16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burningActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowListMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableArtPassMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTokenBurning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableUseEditionForURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"editionSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAllowListMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableArtPassMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTokenBurning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableUseEditionForURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"artPassHolder","type":"address"}],"name":"getAvailableArtPassMintCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"seriesNumber","type":"uint16"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintsPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"editionIndex","type":"uint16"},{"internalType":"address","name":"recipientAddress","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintToEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"secondaryAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"seriesNumberToMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"artPassHolders","type":"address[]"},{"internalType":"int16[]","name":"extras","type":"int16[]"}],"name":"setAdditionalArtPassMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setAllowListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setArtPassMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"mintPrices","type":"uint256[]"},{"internalType":"uint16[]","name":"seriesNumbers","type":"uint16[]"}],"name":"setEditionMintPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"editions","type":"uint16[]"},{"internalType":"uint16[]","name":"supplies","type":"uint16[]"}],"name":"setEditionSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxMintsPerAddress_","type":"uint16"}],"name":"setMaxMintsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secondaryAdmin","type":"address"}],"name":"setSecondaryAdmin","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":"","type":"uint256"}],"name":"tokenToEdition","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useEditionForURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526009805461ffff60a01b1916600160a01b179055600b805464ffffffffff191690555f600c819055600d55600f805460ff1916905534801562000045575f80fd5b50604051620039f5380380620039f583398101604081905262000068916200045c565b87876002620000788382620005b1565b506003620000878282620005b1565b5060015f55505060016008556200009e33620001e4565b6001600160a01b0383163303620000e45760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b60448201526064015b60405180910390fd5b601280546001600160a01b03191633179055600e620001048782620005b1565b50600d859055600c849055601180546001600160a01b0319166001600160a01b03851617905560108290556040805160018082528183019092525f916020808301908036833750506040805160018082528183019092529293505f929150602080830190803683370190505090506001825f815181106200018957620001896200067d565b602002602001019061ffff16908161ffff168152505082815f81518110620001b557620001b56200067d565b61ffff90921660209283029190910190910152620001d4828262000235565b50505050505050505050620006be565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6012546001600160a01b0316336001600160a01b0316146200028b5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08105d5d1a1bdc9a5e995960921b6044820152606401620000db565b8051825114620002cf5760405162461bcd60e51b815260206004820152600e60248201526d1a5b98dbdc9c9958dd081b1a5cdd60921b6044820152606401620000db565b5f5b82518161ffff1610156200036857818161ffff1681518110620002f857620002f86200067d565b602002602001015160145f858461ffff16815181106200031c576200031c6200067d565b602002602001015161ffff1661ffff1681526020019081526020015f205f6101000a81548161ffff021916908361ffff16021790555080806200035f9062000691565b915050620002d1565b505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000391575f80fd5b81516001600160401b0380821115620003ae57620003ae6200036d565b604051601f8301601f19908116603f01168101908282118183101715620003d957620003d96200036d565b8160405283815260209250866020858801011115620003f6575f80fd5b5f91505b83821015620004195785820183015181830184015290820190620003fa565b5f602085830101528094505050505092915050565b80516001600160a01b038116811462000445575f80fd5b919050565b805161ffff8116811462000445575f80fd5b5f805f805f805f80610100898b03121562000475575f80fd5b88516001600160401b03808211156200048c575f80fd5b6200049a8c838d0162000381565b995060208b0151915080821115620004b0575f80fd5b620004be8c838d0162000381565b985060408b0151915080821115620004d4575f80fd5b50620004e38b828c0162000381565b96505060608901519450608089015193506200050260a08a016200042e565b925060c089015191506200051960e08a016200044a565b90509295985092959890939650565b600181811c908216806200053d57607f821691505b6020821081036200055c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200036857805f5260205f20601f840160051c81016020851015620005895750805b601f840160051c820191505b81811015620005aa575f815560010162000595565b5050505050565b81516001600160401b03811115620005cd57620005cd6200036d565b620005e581620005de845462000528565b8462000562565b602080601f8311600181146200061b575f8415620006035750858301515b5f19600386901b1c1916600185901b17855562000675565b5f85815260208120601f198616915b828110156200064b578886015182559484019460019091019084016200062a565b50858210156200066957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52603260045260245ffd5b5f61ffff808316818103620006b457634e487b7160e01b5f52601160045260245ffd5b6001019392505050565b61332980620006cc5f395ff3fe608060405260043610610391575f3560e01c80636817c76c116101de578063ae6a80d511610108578063df33ac9c1161009d578063f2fde38b1161006d578063f2fde38b14610a0c578063f4a0a52814610a2b578063f8362e2614610a4a578063fc42e28214610a5e575f80fd5b8063df33ac9c1461099b578063e797ec1b146109ba578063e985e9c5146109ce578063ea7a42e4146109ed575f80fd5b8063c5681a90116100d8578063c5681a9014610935578063c761c72d14610954578063c87b56dd14610968578063db40c44214610987575f80fd5b8063ae6a80d5146108d4578063b1acaacc146108f5578063b2ff92001461090e578063b88d4fde14610922575f80fd5b80638da5cb5b1161017e578063a09271f51161014e578063a09271f51461086a578063a22cb46514610883578063a92bece3146108a2578063aa5ebe87146108b5575f80fd5b80638da5cb5b1461080557806395d89b4114610822578063979e8b72146108365780639bb906e014610855575f80fd5b8063715018a6116101b9578063715018a6146107aa5780637e5cd5c1146107be57806389190f22146107d25780638be06b56146107e6575f80fd5b80636817c76c146107625780636c0360eb1461077757806370a082311461078b575f80fd5b806330176e13116102bf578063499433501161025f5780635e0cb3a21161022f5780635e0cb3a2146106d2578063602787ed146107015780636352211e1461073057806366d6f5651461074f575f80fd5b8063499433501461063d578063530149981461065c578063539ea4f01461069d5780635bbdac29146106bd575f80fd5b806336ab76621161029a57806336ab7662146105ba57806342842e0e146105d957806342966c68146105ec57806346e58f671461060b575f80fd5b806330176e131461056857806331f9c91914610587578063338cff2b146105a6575f80fd5b8063170f580a1161033557806323b872dd1161030557806323b872dd146105035780632691ee8b146105165780632919ac57146105355780632a2d872314610549575f80fd5b8063170f580a146104a157806318160ddd146104b55780631c7c2598146104cf5780631de77f91146104f0575f80fd5b8063081812fc11610370578063081812fc14610400578063081d955f14610437578063095ea7b3146104705780630a1dca0e14610483575f80fd5b806267b63e1461039557806301ffc9a7146103ab57806306fdde03146103df575b5f80fd5b3480156103a0575f80fd5b506103a9610a72565b005b3480156103b6575f80fd5b506103ca6103c5366004612823565b610abd565b60405190151581526020015b60405180910390f35b3480156103ea575f80fd5b506103f3610b0e565b6040516103d6919061288b565b34801561040b575f80fd5b5061041f61041a36600461289d565b610b9e565b6040516001600160a01b0390911681526020016103d6565b348015610442575f80fd5b506104626104513660046128ca565b60166020525f908152604090205481565b6040519081526020016103d6565b6103a961047e3660046128f9565b610be0565b34801561048e575f80fd5b50600b546103ca90610100900460ff1681565b3480156104ac575f80fd5b506103a9610c7e565b3480156104c0575f80fd5b506001545f54035f1901610462565b3480156104da575f80fd5b50600b546103ca90640100000000900460ff1681565b6103a96104fe366004612921565b610cc0565b6103a9610511366004612952565b610ed0565b348015610521575f80fd5b506103a961053036600461298b565b611057565b348015610540575f80fd5b506103a96110ac565b348015610554575f80fd5b506103a9610563366004612a84565b6110ee565b348015610573575f80fd5b506103a9610582366004612b91565b6111d5565b348015610592575f80fd5b50600b546103ca9062010000900460ff1681565b3480156105b1575f80fd5b506103a9611214565b3480156105c5575f80fd5b506103a96105d43660046128ca565b611253565b6103a96105e7366004612952565b6112a8565b3480156105f7575f80fd5b506103a961060636600461289d565b6112c2565b348015610616575f80fd5b5061062a61062536600461298b565b61132a565b60405161ffff90911681526020016103d6565b348015610648575f80fd5b506103a9610657366004612bd5565b61135a565b348015610667575f80fd5b5061068a61067636600461298b565b600a6020525f908152604090205460010b81565b60405160019190910b81526020016103d6565b3480156106a8575f80fd5b50600b546103ca906301000000900460ff1681565b3480156106c8575f80fd5b50610462600d5481565b3480156106dd575f80fd5b5061062a6106ec3660046128ca565b60146020525f908152604090205461ffff1681565b34801561070c575f80fd5b5061062a61071b36600461289d565b60156020525f908152604090205461ffff1681565b34801561073b575f80fd5b5061041f61074a36600461289d565b61145f565b6103a961075d366004612c15565b611469565b34801561076d575f80fd5b5061046260105481565b348015610782575f80fd5b506103f3611709565b348015610796575f80fd5b506104626107a536600461298b565b611795565b3480156107b5575f80fd5b506103a96117e1565b3480156107c9575f80fd5b506103a96117f4565b3480156107dd575f80fd5b506103a9611835565b3480156107f1575f80fd5b506103a9610800366004612d05565b611879565b348015610810575f80fd5b506009546001600160a01b031661041f565b34801561082d575f80fd5b506103f361195c565b348015610841575f80fd5b506104626108503660046128ca565b61196b565b348015610860575f80fd5b50610462600c5481565b348015610875575f80fd5b50600b546103ca9060ff1681565b34801561088e575f80fd5b506103a961089d366004612d5a565b6119a2565b6103a96108b0366004612c15565b611a0d565b3480156108c0575f80fd5b5060135461041f906001600160a01b031681565b3480156108df575f80fd5b5060095461062a90600160a01b900461ffff1681565b348015610900575f80fd5b50600f546103ca9060ff1681565b348015610919575f80fd5b506103a9611c7f565b6103a9610930366004612d93565b611cc2565b348015610940575f80fd5b506103a961094f366004612e09565b611d06565b34801561095f575f80fd5b506103a9611dd4565b348015610973575f80fd5b506103f361098236600461289d565b611e1e565b348015610992575f80fd5b506103a9611ec6565b3480156109a6575f80fd5b506103a96109b536600461289d565b611f0e565b3480156109c5575f80fd5b506103a9611f46565b3480156109d9575f80fd5b506103ca6109e8366004612ea4565b611f8c565b3480156109f8575f80fd5b506103a9610a0736600461289d565b611fb9565b348015610a17575f80fd5b506103a9610a2636600461298b565b611ff1565b348015610a36575f80fd5b506103a9610a4536600461289d565b612067565b348015610a55575f80fd5b506103a961209f565b348015610a69575f80fd5b506103a96120df565b6012546001600160a01b0316336001600160a01b031614610aae5760405162461bcd60e51b8152600401610aa590612ecc565b60405180910390fd5b600f805460ff19166001179055565b5f6301ffc9a760e01b6001600160e01b031983161480610aed57506380ac58cd60e01b6001600160e01b03198316145b80610b085750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610b1d90612ef4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990612ef4565b8015610b945780601f10610b6b57610100808354040283529160200191610b94565b820191905f5260205f20905b815481529060010190602001808311610b7757829003601f168201915b5050505050905090565b5f610ba88261211e565b610bc5576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610bea8261145f565b9050336001600160a01b03821614610c2357610c068133611f8c565b610c23576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6012546001600160a01b0316336001600160a01b031614610cb15760405162461bcd60e51b8152600401610aa590612ecc565b600b805463ff00000019169055565b610cc8612150565b600b5462010000900460ff16610d165760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610aa5565b8161ffff16610d248261196b565b610d2e9190612f40565b3414610d4c5760405162461bcd60e51b8152600401610aa590612f57565b5f8261ffff1611610d6f5760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8181165f9081526014602052604090205481841691161015610da65760405162461bcd60e51b8152600401610aa590612fc5565b5f61ffff8316610dce335b6001600160a01b03165f9081526005602052604090205460c01c90565b610dd89190612ffc565b600954909150600160a01b900461ffff166001600160401b0382161115610e415760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d697400006044820152606401610aa5565b6011546040516001600160a01b03909116903480156108fc02915f818181858888f19350505050158015610e77573d5f803e3d5ffd5b50610e87335b8461ffff166121a9565b610e91838361227b565b610ec1335b6001600160a01b03165f90815260056020526040902080546001600160c01b031660c084901b179055565b50610ecc6001600855565b5050565b5f610eda826122ff565b9050836001600160a01b0316816001600160a01b031614610f0d5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054610f388187335b6001600160a01b039081169116811491141790565b610f6357610f468633611f8c565b610f6357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f8a57604051633a954ecd60e21b815260040160405180910390fd5b8015610f94575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b8416900361102057600184015f81815260046020526040812054900361101e575f54811461101e575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03165f805160206132d483398151915260405160405180910390a45b505050505050565b6012546001600160a01b0316336001600160a01b03161461108a5760405162461bcd60e51b8152600401610aa590612ecc565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6012546001600160a01b0316336001600160a01b0316146110df5760405162461bcd60e51b8152600401610aa590612ecc565b600b805460ff19166001179055565b6012546001600160a01b0316336001600160a01b0316146111215760405162461bcd60e51b8152600401610aa590612ecc565b80518251146111425760405162461bcd60e51b8152600401610aa590613023565b5f5b82518161ffff1610156111d057818161ffff16815181106111675761116761304b565b6020026020010151600a5f858461ffff16815181106111885761118861304b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805461ffff191661ffff92909216919091179055806111c88161305f565b915050611144565b505050565b6012546001600160a01b0316336001600160a01b0316146112085760405162461bcd60e51b8152600401610aa590612ecc565b600e610ecc82826130ca565b6012546001600160a01b0316336001600160a01b0316146112475760405162461bcd60e51b8152600401610aa590612ecc565b600f805460ff19169055565b6012546001600160a01b0316336001600160a01b0316146112865760405162461bcd60e51b8152600401610aa590612ecc565b6009805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6111d083838360405180602001604052805f815250611cc2565b600b54640100000000900460ff1661131c5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e206275726e696e67206973206e6f7420656e61626c6564000000006044820152606401610aa5565b611327816001612368565b50565b6001600160a01b0381165f908152600a6020526040812054819061135390600190810b90613185565b9392505050565b6013546001600160a01b0316336001600160a01b03161461138d5760405162461bcd60e51b8152600401610aa590612ecc565b611395612150565b600b546301000000900460ff166113e35760405162461bcd60e51b8152602060048201526012602482015271135a5b9d151bc81b9bdd08195b98589b195960721b6044820152606401610aa5565b5f8361ffff16116114065760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8281165f908152601460205260409020548185169116101561143d5760405162461bcd60e51b8152600401610aa590612fc5565b61144b818461ffff166121a9565b611455838361227b565b6111d06001600855565b5f610b08826122ff565b611471612150565b600b54610100900460ff166114c85760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c656400006044820152606401610aa5565b8161ffff166114d68261196b565b6114e09190612f40565b34146114fe5760405162461bcd60e51b8152600401610aa590612f57565b5f8261ffff16116115215760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8181165f90815260146020526040902054818416911610156115585760405162461bcd60e51b8152600401610aa590612fc5565b5f61ffff831661156733610db1565b6115719190612ffc565b600954909150600160a01b900461ffff166001600160401b03821611156115da5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d697400006044820152606401610aa5565b6116598585808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600c5491503390505b60405160200161163e919060609190911b6bffffffffffffffffffffffff1916815260140190565b60405160208183030381529060405280519060200120612495565b6116a55760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c69737400000000000000006044820152606401610aa5565b6011546040516001600160a01b03909116903480156108fc02915f818181858888f193505050501580156116db573d5f803e3d5ffd5b506116e533610e7d565b6116ef838361227b565b6116f833610e96565b506117036001600855565b50505050565b600e805461171690612ef4565b80601f016020809104026020016040519081016040528092919081815260200182805461174290612ef4565b801561178d5780601f106117645761010080835404028352916020019161178d565b820191905f5260205f20905b81548152906001019060200180831161177057829003601f168201915b505050505081565b5f6001600160a01b0382166117bd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6117e96124aa565b6117f25f612504565b565b6012546001600160a01b0316336001600160a01b0316146118275760405162461bcd60e51b8152600401610aa590612ecc565b600b805462ff000019169055565b6012546001600160a01b0316336001600160a01b0316146118685760405162461bcd60e51b8152600401610aa590612ecc565b600b805461ff001916610100179055565b6012546001600160a01b0316336001600160a01b0316146118ac5760405162461bcd60e51b8152600401610aa590612ecc565b80518251146118cd5760405162461bcd60e51b8152600401610aa590613023565b5f5b82518161ffff1610156111d057818161ffff16815181106118f2576118f261304b565b602002602001015160145f858461ffff16815181106119135761191361304b565b602002602001015161ffff1661ffff1681526020019081526020015f205f6101000a81548161ffff021916908361ffff16021790555080806119549061305f565b9150506118cf565b606060038054610b1d90612ef4565b61ffff81165f90815260166020526040812054810361198c57505060105490565b5061ffff165f9081526016602052604090205490565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a15612150565b600b5460ff16611a675760405162461bcd60e51b815260206004820152601c60248201527f4172742050617373206d696e74696e67206e6f7420656e61626c6564000000006044820152606401610aa5565b8161ffff16611a758261196b565b611a7f9190612f40565b3414611a9d5760405162461bcd60e51b8152600401610aa590612f57565b5f8261ffff1611611ac05760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8181165f9081526014602052604090205481841691161015611af75760405162461bcd60e51b8152600401610aa590612fc5565b61ffff8216611b053361132a565b61ffff161015611b625760405162461bcd60e51b815260206004820152602260248201527f4578636565647320417274205061737320686f6c646572206d696e74206c696d6044820152611a5d60f21b6064820152608401610aa5565b611ba28484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600d549150339050611616565b611be75760405162461bcd60e51b81526020600482015260166024820152752737ba1030b71020b93a102830b9b9903437b63232b960511b6044820152606401610aa5565b6011546040516001600160a01b03909116903480156108fc02915f818181858888f19350505050158015611c1d573d5f803e3d5ffd5b50611c2c338361ffff166121a9565b611c36828261227b565b335f908152600a6020526040902054611c5390839060010b6131a8565b335f908152600a60205260409020805461ffff191661ffff929092169190911790556001600855611703565b6012546001600160a01b0316336001600160a01b031614611cb25760405162461bcd60e51b8152600401610aa590612ecc565b600b805464ff0000000019169055565b611ccd848484610ed0565b6001600160a01b0383163b1561170357611ce984848484612555565b611703576040516368d2bf6b60e11b815260040160405180910390fd5b6012546001600160a01b0316336001600160a01b031614611d395760405162461bcd60e51b8152600401610aa590612ecc565b8051825114611d5a5760405162461bcd60e51b8152600401610aa590613023565b5f5b81518161ffff1610156111d057828161ffff1681518110611d7f57611d7f61304b565b602002602001015160165f848461ffff1681518110611da057611da061304b565b602002602001015161ffff1661ffff1681526020019081526020015f20819055508080611dcc9061305f565b915050611d5c565b6012546001600160a01b0316336001600160a01b031614611e075760405162461bcd60e51b8152600401610aa590612ecc565b600b805464ff000000001916640100000000179055565b6060611e298261211e565b611e6c5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610aa5565b600f545f9060ff16611e7e5782611e91565b5f8381526015602052604090205461ffff165b9050600e611e9e8261263d565b604051602001611eaf9291906131cb565b604051602081830303815290604052915050919050565b6012546001600160a01b0316336001600160a01b031614611ef95760405162461bcd60e51b8152600401610aa590612ecc565b600b805463ff00000019166301000000179055565b6012546001600160a01b0316336001600160a01b031614611f415760405162461bcd60e51b8152600401610aa590612ecc565b600d55565b6012546001600160a01b0316336001600160a01b031614611f795760405162461bcd60e51b8152600401610aa590612ecc565b600b805462ff0000191662010000179055565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6012546001600160a01b0316336001600160a01b031614611fec5760405162461bcd60e51b8152600401610aa590612ecc565b600c55565b611ff96124aa565b6001600160a01b03811661205e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa5565b61132781612504565b6012546001600160a01b0316336001600160a01b03161461209a5760405162461bcd60e51b8152600401610aa590612ecc565b601055565b6012546001600160a01b0316336001600160a01b0316146120d25760405162461bcd60e51b8152600401610aa590612ecc565b600b805461ff0019169055565b6012546001600160a01b0316336001600160a01b0316146121125760405162461bcd60e51b8152600401610aa590612ecc565b600b805460ff19169055565b5f8160011115801561213057505f5482105b8015610b085750505f90815260046020526040902054600160e01b161590565b6002600854036121a25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa5565b6002600855565b5f8054908290036121cd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083905f805160206132d48339815191528180a4600183015b8181146122535780835f5f805160206132d48339815191525f80a4600101612230565b50815f0361227357604051622e076360e81b815260040160405180910390fd5b5f5550505050565b61ffff8082165f9081526014602052604090205461229b9184911661324e565b61ffff8281165f908152601460205260408120805461ffff1916938316939093179092558154908416906122cf9190613269565b90505b5f548110156111d0575f818152601560205260409020805461ffff191661ffff84161790556001016122d2565b5f818060011161234f575f5481101561234f575f8181526004602052604081205490600160e01b8216900361234d575b805f0361135357505f19015f8181526004602052604090205461232f565b505b604051636f96cda160e11b815260040160405180910390fd5b5f612372836122ff565b9050805f8061238e865f90815260066020526040902080549091565b9150915084156123ce576123a3818433610f23565b6123ce576123b18333611f8c565b6123ce57604051632ce44b5f60e11b815260040160405180910390fd5b80156123d8575f82555b6001600160a01b0383165f81815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b175f87815260046020526040812091909155600160e11b8516900361246157600186015f81815260046020526040812054900361245f575f54811461245f575f8181526004602052604090208590555b505b60405186905f906001600160a01b038616905f805160206132d4833981519152908390a45050600180548101905550505050565b5f826124a185846126cc565b14949350505050565b6009546001600160a01b031633146117f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa5565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061258990339089908890889060040161327c565b6020604051808303815f875af19250505080156125c3575060408051601f3d908101601f191682019092526125c0918101906132b8565b60015b61261f573d8080156125f0576040519150601f19603f3d011682016040523d82523d5f602084013e6125f5565b606091505b5080515f03612617576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60605f6126498361270e565b60010190505f816001600160401b03811115612667576126676129a4565b6040519080825280601f01601f191660200182016040528015612691576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461269b57509392505050565b5f81815b8451811015612706576126fc828683815181106126ef576126ef61304b565b60200260200101516127e5565b91506001016126d0565b509392505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061274c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612778576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061279657662386f26fc10000830492506010015b6305f5e10083106127ae576305f5e100830492506008015b61271083106127c257612710830492506004015b606483106127d4576064830492506002015b600a8310610b085760010192915050565b5f8183106127ff575f828152602084905260409020611353565b505f9182526020526040902090565b6001600160e01b031981168114611327575f80fd5b5f60208284031215612833575f80fd5b81356113538161280e565b5f5b83811015612858578181015183820152602001612840565b50505f910152565b5f815180845261287781602086016020860161283e565b601f01601f19169290920160200192915050565b602081525f6113536020830184612860565b5f602082840312156128ad575f80fd5b5035919050565b803561ffff811681146128c5575f80fd5b919050565b5f602082840312156128da575f80fd5b611353826128b4565b80356001600160a01b03811681146128c5575f80fd5b5f806040838503121561290a575f80fd5b612913836128e3565b946020939093013593505050565b5f8060408385031215612932575f80fd5b61293b836128b4565b9150612949602084016128b4565b90509250929050565b5f805f60608486031215612964575f80fd5b61296d846128e3565b925061297b602085016128e3565b9150604084013590509250925092565b5f6020828403121561299b575f80fd5b611353826128e3565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156129e0576129e06129a4565b604052919050565b5f6001600160401b03821115612a0057612a006129a4565b5060051b60200190565b5f82601f830112612a19575f80fd5b81356020612a2e612a29836129e8565b6129b8565b8083825260208201915060208460051b870101935086841115612a4f575f80fd5b602086015b84811015612a795780358060010b8114612a6c575f80fd5b8352918301918301612a54565b509695505050505050565b5f8060408385031215612a95575f80fd5b82356001600160401b0380821115612aab575f80fd5b818501915085601f830112612abe575f80fd5b81356020612ace612a29836129e8565b82815260059290921b84018101918181019089841115612aec575f80fd5b948201945b83861015612b1157612b02866128e3565b82529482019490820190612af1565b96505086013592505080821115612b26575f80fd5b50612b3385828601612a0a565b9150509250929050565b5f6001600160401b03831115612b5557612b556129a4565b612b68601f8401601f19166020016129b8565b9050828152838383011115612b7b575f80fd5b828260208301375f602084830101529392505050565b5f60208284031215612ba1575f80fd5b81356001600160401b03811115612bb6575f80fd5b8201601f81018413612bc6575f80fd5b61263584823560208401612b3d565b5f805f60608486031215612be7575f80fd5b612bf0846128b4565b9250612bfe602085016128b4565b9150612c0c604085016128e3565b90509250925092565b5f805f8060608587031215612c28575f80fd5b84356001600160401b0380821115612c3e575f80fd5b818701915087601f830112612c51575f80fd5b813581811115612c5f575f80fd5b8860208260051b8501011115612c73575f80fd5b602092830196509450612c8991870190506128b4565b9150612c97604086016128b4565b905092959194509250565b5f82601f830112612cb1575f80fd5b81356020612cc1612a29836129e8565b8083825260208201915060208460051b870101935086841115612ce2575f80fd5b602086015b84811015612a7957612cf8816128b4565b8352918301918301612ce7565b5f8060408385031215612d16575f80fd5b82356001600160401b0380821115612d2c575f80fd5b612d3886838701612ca2565b93506020850135915080821115612d4d575f80fd5b50612b3385828601612ca2565b5f8060408385031215612d6b575f80fd5b612d74836128e3565b915060208301358015158114612d88575f80fd5b809150509250929050565b5f805f8060808587031215612da6575f80fd5b612daf856128e3565b9350612dbd602086016128e3565b92506040850135915060608501356001600160401b03811115612dde575f80fd5b8501601f81018713612dee575f80fd5b612dfd87823560208401612b3d565b91505092959194509250565b5f8060408385031215612e1a575f80fd5b82356001600160401b0380821115612e30575f80fd5b818501915085601f830112612e43575f80fd5b81356020612e53612a29836129e8565b82815260059290921b84018101918181019089841115612e71575f80fd5b948201945b83861015612e8f57853582529482019490820190612e76565b96505086013592505080821115612d4d575f80fd5b5f8060408385031215612eb5575f80fd5b612ebe836128e3565b9150612949602084016128e3565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b600181811c90821680612f0857607f821691505b602082108103612f2657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b0857610b08612f2c565b6020808252601e908201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604082015260600190565b60208082526019908201527f4d757374206d696e7420706f73697469766520616d6f756e7400000000000000604082015260600190565b6020808252601c908201527f4d696e74206578636565647320636f6c6c656374696f6e2073697a6500000000604082015260600190565b6001600160401b0381811683821601908082111561301c5761301c612f2c565b5092915050565b6020808252600e908201526d1a5b98dbdc9c9958dd081b1a5cdd60921b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f61ffff80831681810361307557613075612f2c565b6001019392505050565b601f8211156111d057805f5260205f20601f840160051c810160208510156130a45750805b601f840160051c820191505b818110156130c3575f81556001016130b0565b5050505050565b81516001600160401b038111156130e3576130e36129a4565b6130f7816130f18454612ef4565b8461307f565b602080601f83116001811461312a575f84156131135750858301515b5f19600386901b1c1916600185901b17855561104f565b5f85815260208120601f198616915b8281101561315857888601518255948401946001909101908401613139565b508582101561317557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b600181810b9083900b01617fff8113617fff1982121715610b0857610b08612f2c565b600182810b9082900b03617fff198112617fff82131715610b0857610b08612f2c565b5f8084546131d881612ef4565b600182811680156131f0576001811461320557613231565b60ff1984168752821515830287019450613231565b885f526020805f205f5b858110156132285781548a82015290840190820161320f565b50505082870194505b50505050835161324581836020880161283e565b01949350505050565b61ffff82811682821603908082111561301c5761301c612f2c565b81810381811115610b0857610b08612f2c565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906132ae90830184612860565b9695505050505050565b5f602082840312156132c8575f80fd5b81516113538161280e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208e5c6618982aa73f6743ecd397553270f6472a564683ca101f68a8509e59ad4464736f6c634300081600330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800be0aa56c2a8c3fd00b930997257b7a3b1d05a0e336d2ba957696bf5a85bc568a007c71412aa72182e5aff45d9df0a2b14a04a219b60a31e300bd88158ebfc850000000000000000000000008edf1b10c1198d2953f3bf2358113397f5b4aac100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000949636f6e69634e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005494d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53556b4c736d37716b79396772484d6350394e656941676b6b344d6e725847396f7a467a64646563743373372f00000000000000000000

Deployed Bytecode

0x608060405260043610610391575f3560e01c80636817c76c116101de578063ae6a80d511610108578063df33ac9c1161009d578063f2fde38b1161006d578063f2fde38b14610a0c578063f4a0a52814610a2b578063f8362e2614610a4a578063fc42e28214610a5e575f80fd5b8063df33ac9c1461099b578063e797ec1b146109ba578063e985e9c5146109ce578063ea7a42e4146109ed575f80fd5b8063c5681a90116100d8578063c5681a9014610935578063c761c72d14610954578063c87b56dd14610968578063db40c44214610987575f80fd5b8063ae6a80d5146108d4578063b1acaacc146108f5578063b2ff92001461090e578063b88d4fde14610922575f80fd5b80638da5cb5b1161017e578063a09271f51161014e578063a09271f51461086a578063a22cb46514610883578063a92bece3146108a2578063aa5ebe87146108b5575f80fd5b80638da5cb5b1461080557806395d89b4114610822578063979e8b72146108365780639bb906e014610855575f80fd5b8063715018a6116101b9578063715018a6146107aa5780637e5cd5c1146107be57806389190f22146107d25780638be06b56146107e6575f80fd5b80636817c76c146107625780636c0360eb1461077757806370a082311461078b575f80fd5b806330176e13116102bf578063499433501161025f5780635e0cb3a21161022f5780635e0cb3a2146106d2578063602787ed146107015780636352211e1461073057806366d6f5651461074f575f80fd5b8063499433501461063d578063530149981461065c578063539ea4f01461069d5780635bbdac29146106bd575f80fd5b806336ab76621161029a57806336ab7662146105ba57806342842e0e146105d957806342966c68146105ec57806346e58f671461060b575f80fd5b806330176e131461056857806331f9c91914610587578063338cff2b146105a6575f80fd5b8063170f580a1161033557806323b872dd1161030557806323b872dd146105035780632691ee8b146105165780632919ac57146105355780632a2d872314610549575f80fd5b8063170f580a146104a157806318160ddd146104b55780631c7c2598146104cf5780631de77f91146104f0575f80fd5b8063081812fc11610370578063081812fc14610400578063081d955f14610437578063095ea7b3146104705780630a1dca0e14610483575f80fd5b806267b63e1461039557806301ffc9a7146103ab57806306fdde03146103df575b5f80fd5b3480156103a0575f80fd5b506103a9610a72565b005b3480156103b6575f80fd5b506103ca6103c5366004612823565b610abd565b60405190151581526020015b60405180910390f35b3480156103ea575f80fd5b506103f3610b0e565b6040516103d6919061288b565b34801561040b575f80fd5b5061041f61041a36600461289d565b610b9e565b6040516001600160a01b0390911681526020016103d6565b348015610442575f80fd5b506104626104513660046128ca565b60166020525f908152604090205481565b6040519081526020016103d6565b6103a961047e3660046128f9565b610be0565b34801561048e575f80fd5b50600b546103ca90610100900460ff1681565b3480156104ac575f80fd5b506103a9610c7e565b3480156104c0575f80fd5b506001545f54035f1901610462565b3480156104da575f80fd5b50600b546103ca90640100000000900460ff1681565b6103a96104fe366004612921565b610cc0565b6103a9610511366004612952565b610ed0565b348015610521575f80fd5b506103a961053036600461298b565b611057565b348015610540575f80fd5b506103a96110ac565b348015610554575f80fd5b506103a9610563366004612a84565b6110ee565b348015610573575f80fd5b506103a9610582366004612b91565b6111d5565b348015610592575f80fd5b50600b546103ca9062010000900460ff1681565b3480156105b1575f80fd5b506103a9611214565b3480156105c5575f80fd5b506103a96105d43660046128ca565b611253565b6103a96105e7366004612952565b6112a8565b3480156105f7575f80fd5b506103a961060636600461289d565b6112c2565b348015610616575f80fd5b5061062a61062536600461298b565b61132a565b60405161ffff90911681526020016103d6565b348015610648575f80fd5b506103a9610657366004612bd5565b61135a565b348015610667575f80fd5b5061068a61067636600461298b565b600a6020525f908152604090205460010b81565b60405160019190910b81526020016103d6565b3480156106a8575f80fd5b50600b546103ca906301000000900460ff1681565b3480156106c8575f80fd5b50610462600d5481565b3480156106dd575f80fd5b5061062a6106ec3660046128ca565b60146020525f908152604090205461ffff1681565b34801561070c575f80fd5b5061062a61071b36600461289d565b60156020525f908152604090205461ffff1681565b34801561073b575f80fd5b5061041f61074a36600461289d565b61145f565b6103a961075d366004612c15565b611469565b34801561076d575f80fd5b5061046260105481565b348015610782575f80fd5b506103f3611709565b348015610796575f80fd5b506104626107a536600461298b565b611795565b3480156107b5575f80fd5b506103a96117e1565b3480156107c9575f80fd5b506103a96117f4565b3480156107dd575f80fd5b506103a9611835565b3480156107f1575f80fd5b506103a9610800366004612d05565b611879565b348015610810575f80fd5b506009546001600160a01b031661041f565b34801561082d575f80fd5b506103f361195c565b348015610841575f80fd5b506104626108503660046128ca565b61196b565b348015610860575f80fd5b50610462600c5481565b348015610875575f80fd5b50600b546103ca9060ff1681565b34801561088e575f80fd5b506103a961089d366004612d5a565b6119a2565b6103a96108b0366004612c15565b611a0d565b3480156108c0575f80fd5b5060135461041f906001600160a01b031681565b3480156108df575f80fd5b5060095461062a90600160a01b900461ffff1681565b348015610900575f80fd5b50600f546103ca9060ff1681565b348015610919575f80fd5b506103a9611c7f565b6103a9610930366004612d93565b611cc2565b348015610940575f80fd5b506103a961094f366004612e09565b611d06565b34801561095f575f80fd5b506103a9611dd4565b348015610973575f80fd5b506103f361098236600461289d565b611e1e565b348015610992575f80fd5b506103a9611ec6565b3480156109a6575f80fd5b506103a96109b536600461289d565b611f0e565b3480156109c5575f80fd5b506103a9611f46565b3480156109d9575f80fd5b506103ca6109e8366004612ea4565b611f8c565b3480156109f8575f80fd5b506103a9610a0736600461289d565b611fb9565b348015610a17575f80fd5b506103a9610a2636600461298b565b611ff1565b348015610a36575f80fd5b506103a9610a4536600461289d565b612067565b348015610a55575f80fd5b506103a961209f565b348015610a69575f80fd5b506103a96120df565b6012546001600160a01b0316336001600160a01b031614610aae5760405162461bcd60e51b8152600401610aa590612ecc565b60405180910390fd5b600f805460ff19166001179055565b5f6301ffc9a760e01b6001600160e01b031983161480610aed57506380ac58cd60e01b6001600160e01b03198316145b80610b085750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610b1d90612ef4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990612ef4565b8015610b945780601f10610b6b57610100808354040283529160200191610b94565b820191905f5260205f20905b815481529060010190602001808311610b7757829003601f168201915b5050505050905090565b5f610ba88261211e565b610bc5576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610bea8261145f565b9050336001600160a01b03821614610c2357610c068133611f8c565b610c23576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6012546001600160a01b0316336001600160a01b031614610cb15760405162461bcd60e51b8152600401610aa590612ecc565b600b805463ff00000019169055565b610cc8612150565b600b5462010000900460ff16610d165760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610aa5565b8161ffff16610d248261196b565b610d2e9190612f40565b3414610d4c5760405162461bcd60e51b8152600401610aa590612f57565b5f8261ffff1611610d6f5760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8181165f9081526014602052604090205481841691161015610da65760405162461bcd60e51b8152600401610aa590612fc5565b5f61ffff8316610dce335b6001600160a01b03165f9081526005602052604090205460c01c90565b610dd89190612ffc565b600954909150600160a01b900461ffff166001600160401b0382161115610e415760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d697400006044820152606401610aa5565b6011546040516001600160a01b03909116903480156108fc02915f818181858888f19350505050158015610e77573d5f803e3d5ffd5b50610e87335b8461ffff166121a9565b610e91838361227b565b610ec1335b6001600160a01b03165f90815260056020526040902080546001600160c01b031660c084901b179055565b50610ecc6001600855565b5050565b5f610eda826122ff565b9050836001600160a01b0316816001600160a01b031614610f0d5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054610f388187335b6001600160a01b039081169116811491141790565b610f6357610f468633611f8c565b610f6357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f8a57604051633a954ecd60e21b815260040160405180910390fd5b8015610f94575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b8416900361102057600184015f81815260046020526040812054900361101e575f54811461101e575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03165f805160206132d483398151915260405160405180910390a45b505050505050565b6012546001600160a01b0316336001600160a01b03161461108a5760405162461bcd60e51b8152600401610aa590612ecc565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6012546001600160a01b0316336001600160a01b0316146110df5760405162461bcd60e51b8152600401610aa590612ecc565b600b805460ff19166001179055565b6012546001600160a01b0316336001600160a01b0316146111215760405162461bcd60e51b8152600401610aa590612ecc565b80518251146111425760405162461bcd60e51b8152600401610aa590613023565b5f5b82518161ffff1610156111d057818161ffff16815181106111675761116761304b565b6020026020010151600a5f858461ffff16815181106111885761118861304b565b6020908102919091018101516001600160a01b031682528101919091526040015f20805461ffff191661ffff92909216919091179055806111c88161305f565b915050611144565b505050565b6012546001600160a01b0316336001600160a01b0316146112085760405162461bcd60e51b8152600401610aa590612ecc565b600e610ecc82826130ca565b6012546001600160a01b0316336001600160a01b0316146112475760405162461bcd60e51b8152600401610aa590612ecc565b600f805460ff19169055565b6012546001600160a01b0316336001600160a01b0316146112865760405162461bcd60e51b8152600401610aa590612ecc565b6009805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b6111d083838360405180602001604052805f815250611cc2565b600b54640100000000900460ff1661131c5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e206275726e696e67206973206e6f7420656e61626c6564000000006044820152606401610aa5565b611327816001612368565b50565b6001600160a01b0381165f908152600a6020526040812054819061135390600190810b90613185565b9392505050565b6013546001600160a01b0316336001600160a01b03161461138d5760405162461bcd60e51b8152600401610aa590612ecc565b611395612150565b600b546301000000900460ff166113e35760405162461bcd60e51b8152602060048201526012602482015271135a5b9d151bc81b9bdd08195b98589b195960721b6044820152606401610aa5565b5f8361ffff16116114065760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8281165f908152601460205260409020548185169116101561143d5760405162461bcd60e51b8152600401610aa590612fc5565b61144b818461ffff166121a9565b611455838361227b565b6111d06001600855565b5f610b08826122ff565b611471612150565b600b54610100900460ff166114c85760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c656400006044820152606401610aa5565b8161ffff166114d68261196b565b6114e09190612f40565b34146114fe5760405162461bcd60e51b8152600401610aa590612f57565b5f8261ffff16116115215760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8181165f90815260146020526040902054818416911610156115585760405162461bcd60e51b8152600401610aa590612fc5565b5f61ffff831661156733610db1565b6115719190612ffc565b600954909150600160a01b900461ffff166001600160401b03821611156115da5760405162461bcd60e51b815260206004820152601e60248201527f45786365656473207065722061646472657373206d696e74206c696d697400006044820152606401610aa5565b6116598585808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600c5491503390505b60405160200161163e919060609190911b6bffffffffffffffffffffffff1916815260140190565b60405160208183030381529060405280519060200120612495565b6116a55760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c69737400000000000000006044820152606401610aa5565b6011546040516001600160a01b03909116903480156108fc02915f818181858888f193505050501580156116db573d5f803e3d5ffd5b506116e533610e7d565b6116ef838361227b565b6116f833610e96565b506117036001600855565b50505050565b600e805461171690612ef4565b80601f016020809104026020016040519081016040528092919081815260200182805461174290612ef4565b801561178d5780601f106117645761010080835404028352916020019161178d565b820191905f5260205f20905b81548152906001019060200180831161177057829003601f168201915b505050505081565b5f6001600160a01b0382166117bd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6117e96124aa565b6117f25f612504565b565b6012546001600160a01b0316336001600160a01b0316146118275760405162461bcd60e51b8152600401610aa590612ecc565b600b805462ff000019169055565b6012546001600160a01b0316336001600160a01b0316146118685760405162461bcd60e51b8152600401610aa590612ecc565b600b805461ff001916610100179055565b6012546001600160a01b0316336001600160a01b0316146118ac5760405162461bcd60e51b8152600401610aa590612ecc565b80518251146118cd5760405162461bcd60e51b8152600401610aa590613023565b5f5b82518161ffff1610156111d057818161ffff16815181106118f2576118f261304b565b602002602001015160145f858461ffff16815181106119135761191361304b565b602002602001015161ffff1661ffff1681526020019081526020015f205f6101000a81548161ffff021916908361ffff16021790555080806119549061305f565b9150506118cf565b606060038054610b1d90612ef4565b61ffff81165f90815260166020526040812054810361198c57505060105490565b5061ffff165f9081526016602052604090205490565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a15612150565b600b5460ff16611a675760405162461bcd60e51b815260206004820152601c60248201527f4172742050617373206d696e74696e67206e6f7420656e61626c6564000000006044820152606401610aa5565b8161ffff16611a758261196b565b611a7f9190612f40565b3414611a9d5760405162461bcd60e51b8152600401610aa590612f57565b5f8261ffff1611611ac05760405162461bcd60e51b8152600401610aa590612f8e565b61ffff8181165f9081526014602052604090205481841691161015611af75760405162461bcd60e51b8152600401610aa590612fc5565b61ffff8216611b053361132a565b61ffff161015611b625760405162461bcd60e51b815260206004820152602260248201527f4578636565647320417274205061737320686f6c646572206d696e74206c696d6044820152611a5d60f21b6064820152608401610aa5565b611ba28484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600d549150339050611616565b611be75760405162461bcd60e51b81526020600482015260166024820152752737ba1030b71020b93a102830b9b9903437b63232b960511b6044820152606401610aa5565b6011546040516001600160a01b03909116903480156108fc02915f818181858888f19350505050158015611c1d573d5f803e3d5ffd5b50611c2c338361ffff166121a9565b611c36828261227b565b335f908152600a6020526040902054611c5390839060010b6131a8565b335f908152600a60205260409020805461ffff191661ffff929092169190911790556001600855611703565b6012546001600160a01b0316336001600160a01b031614611cb25760405162461bcd60e51b8152600401610aa590612ecc565b600b805464ff0000000019169055565b611ccd848484610ed0565b6001600160a01b0383163b1561170357611ce984848484612555565b611703576040516368d2bf6b60e11b815260040160405180910390fd5b6012546001600160a01b0316336001600160a01b031614611d395760405162461bcd60e51b8152600401610aa590612ecc565b8051825114611d5a5760405162461bcd60e51b8152600401610aa590613023565b5f5b81518161ffff1610156111d057828161ffff1681518110611d7f57611d7f61304b565b602002602001015160165f848461ffff1681518110611da057611da061304b565b602002602001015161ffff1661ffff1681526020019081526020015f20819055508080611dcc9061305f565b915050611d5c565b6012546001600160a01b0316336001600160a01b031614611e075760405162461bcd60e51b8152600401610aa590612ecc565b600b805464ff000000001916640100000000179055565b6060611e298261211e565b611e6c5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610aa5565b600f545f9060ff16611e7e5782611e91565b5f8381526015602052604090205461ffff165b9050600e611e9e8261263d565b604051602001611eaf9291906131cb565b604051602081830303815290604052915050919050565b6012546001600160a01b0316336001600160a01b031614611ef95760405162461bcd60e51b8152600401610aa590612ecc565b600b805463ff00000019166301000000179055565b6012546001600160a01b0316336001600160a01b031614611f415760405162461bcd60e51b8152600401610aa590612ecc565b600d55565b6012546001600160a01b0316336001600160a01b031614611f795760405162461bcd60e51b8152600401610aa590612ecc565b600b805462ff0000191662010000179055565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6012546001600160a01b0316336001600160a01b031614611fec5760405162461bcd60e51b8152600401610aa590612ecc565b600c55565b611ff96124aa565b6001600160a01b03811661205e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa5565b61132781612504565b6012546001600160a01b0316336001600160a01b03161461209a5760405162461bcd60e51b8152600401610aa590612ecc565b601055565b6012546001600160a01b0316336001600160a01b0316146120d25760405162461bcd60e51b8152600401610aa590612ecc565b600b805461ff0019169055565b6012546001600160a01b0316336001600160a01b0316146121125760405162461bcd60e51b8152600401610aa590612ecc565b600b805460ff19169055565b5f8160011115801561213057505f5482105b8015610b085750505f90815260046020526040902054600160e01b161590565b6002600854036121a25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa5565b6002600855565b5f8054908290036121cd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083905f805160206132d48339815191528180a4600183015b8181146122535780835f5f805160206132d48339815191525f80a4600101612230565b50815f0361227357604051622e076360e81b815260040160405180910390fd5b5f5550505050565b61ffff8082165f9081526014602052604090205461229b9184911661324e565b61ffff8281165f908152601460205260408120805461ffff1916938316939093179092558154908416906122cf9190613269565b90505b5f548110156111d0575f818152601560205260409020805461ffff191661ffff84161790556001016122d2565b5f818060011161234f575f5481101561234f575f8181526004602052604081205490600160e01b8216900361234d575b805f0361135357505f19015f8181526004602052604090205461232f565b505b604051636f96cda160e11b815260040160405180910390fd5b5f612372836122ff565b9050805f8061238e865f90815260066020526040902080549091565b9150915084156123ce576123a3818433610f23565b6123ce576123b18333611f8c565b6123ce57604051632ce44b5f60e11b815260040160405180910390fd5b80156123d8575f82555b6001600160a01b0383165f81815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b175f87815260046020526040812091909155600160e11b8516900361246157600186015f81815260046020526040812054900361245f575f54811461245f575f8181526004602052604090208590555b505b60405186905f906001600160a01b038616905f805160206132d4833981519152908390a45050600180548101905550505050565b5f826124a185846126cc565b14949350505050565b6009546001600160a01b031633146117f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa5565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061258990339089908890889060040161327c565b6020604051808303815f875af19250505080156125c3575060408051601f3d908101601f191682019092526125c0918101906132b8565b60015b61261f573d8080156125f0576040519150601f19603f3d011682016040523d82523d5f602084013e6125f5565b606091505b5080515f03612617576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60605f6126498361270e565b60010190505f816001600160401b03811115612667576126676129a4565b6040519080825280601f01601f191660200182016040528015612691576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461269b57509392505050565b5f81815b8451811015612706576126fc828683815181106126ef576126ef61304b565b60200260200101516127e5565b91506001016126d0565b509392505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061274c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612778576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061279657662386f26fc10000830492506010015b6305f5e10083106127ae576305f5e100830492506008015b61271083106127c257612710830492506004015b606483106127d4576064830492506002015b600a8310610b085760010192915050565b5f8183106127ff575f828152602084905260409020611353565b505f9182526020526040902090565b6001600160e01b031981168114611327575f80fd5b5f60208284031215612833575f80fd5b81356113538161280e565b5f5b83811015612858578181015183820152602001612840565b50505f910152565b5f815180845261287781602086016020860161283e565b601f01601f19169290920160200192915050565b602081525f6113536020830184612860565b5f602082840312156128ad575f80fd5b5035919050565b803561ffff811681146128c5575f80fd5b919050565b5f602082840312156128da575f80fd5b611353826128b4565b80356001600160a01b03811681146128c5575f80fd5b5f806040838503121561290a575f80fd5b612913836128e3565b946020939093013593505050565b5f8060408385031215612932575f80fd5b61293b836128b4565b9150612949602084016128b4565b90509250929050565b5f805f60608486031215612964575f80fd5b61296d846128e3565b925061297b602085016128e3565b9150604084013590509250925092565b5f6020828403121561299b575f80fd5b611353826128e3565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156129e0576129e06129a4565b604052919050565b5f6001600160401b03821115612a0057612a006129a4565b5060051b60200190565b5f82601f830112612a19575f80fd5b81356020612a2e612a29836129e8565b6129b8565b8083825260208201915060208460051b870101935086841115612a4f575f80fd5b602086015b84811015612a795780358060010b8114612a6c575f80fd5b8352918301918301612a54565b509695505050505050565b5f8060408385031215612a95575f80fd5b82356001600160401b0380821115612aab575f80fd5b818501915085601f830112612abe575f80fd5b81356020612ace612a29836129e8565b82815260059290921b84018101918181019089841115612aec575f80fd5b948201945b83861015612b1157612b02866128e3565b82529482019490820190612af1565b96505086013592505080821115612b26575f80fd5b50612b3385828601612a0a565b9150509250929050565b5f6001600160401b03831115612b5557612b556129a4565b612b68601f8401601f19166020016129b8565b9050828152838383011115612b7b575f80fd5b828260208301375f602084830101529392505050565b5f60208284031215612ba1575f80fd5b81356001600160401b03811115612bb6575f80fd5b8201601f81018413612bc6575f80fd5b61263584823560208401612b3d565b5f805f60608486031215612be7575f80fd5b612bf0846128b4565b9250612bfe602085016128b4565b9150612c0c604085016128e3565b90509250925092565b5f805f8060608587031215612c28575f80fd5b84356001600160401b0380821115612c3e575f80fd5b818701915087601f830112612c51575f80fd5b813581811115612c5f575f80fd5b8860208260051b8501011115612c73575f80fd5b602092830196509450612c8991870190506128b4565b9150612c97604086016128b4565b905092959194509250565b5f82601f830112612cb1575f80fd5b81356020612cc1612a29836129e8565b8083825260208201915060208460051b870101935086841115612ce2575f80fd5b602086015b84811015612a7957612cf8816128b4565b8352918301918301612ce7565b5f8060408385031215612d16575f80fd5b82356001600160401b0380821115612d2c575f80fd5b612d3886838701612ca2565b93506020850135915080821115612d4d575f80fd5b50612b3385828601612ca2565b5f8060408385031215612d6b575f80fd5b612d74836128e3565b915060208301358015158114612d88575f80fd5b809150509250929050565b5f805f8060808587031215612da6575f80fd5b612daf856128e3565b9350612dbd602086016128e3565b92506040850135915060608501356001600160401b03811115612dde575f80fd5b8501601f81018713612dee575f80fd5b612dfd87823560208401612b3d565b91505092959194509250565b5f8060408385031215612e1a575f80fd5b82356001600160401b0380821115612e30575f80fd5b818501915085601f830112612e43575f80fd5b81356020612e53612a29836129e8565b82815260059290921b84018101918181019089841115612e71575f80fd5b948201945b83861015612e8f57853582529482019490820190612e76565b96505086013592505080821115612d4d575f80fd5b5f8060408385031215612eb5575f80fd5b612ebe836128e3565b9150612949602084016128e3565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b600181811c90821680612f0857607f821691505b602082108103612f2657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b0857610b08612f2c565b6020808252601e908201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604082015260600190565b60208082526019908201527f4d757374206d696e7420706f73697469766520616d6f756e7400000000000000604082015260600190565b6020808252601c908201527f4d696e74206578636565647320636f6c6c656374696f6e2073697a6500000000604082015260600190565b6001600160401b0381811683821601908082111561301c5761301c612f2c565b5092915050565b6020808252600e908201526d1a5b98dbdc9c9958dd081b1a5cdd60921b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f61ffff80831681810361307557613075612f2c565b6001019392505050565b601f8211156111d057805f5260205f20601f840160051c810160208510156130a45750805b601f840160051c820191505b818110156130c3575f81556001016130b0565b5050505050565b81516001600160401b038111156130e3576130e36129a4565b6130f7816130f18454612ef4565b8461307f565b602080601f83116001811461312a575f84156131135750858301515b5f19600386901b1c1916600185901b17855561104f565b5f85815260208120601f198616915b8281101561315857888601518255948401946001909101908401613139565b508582101561317557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b600181810b9083900b01617fff8113617fff1982121715610b0857610b08612f2c565b600182810b9082900b03617fff198112617fff82131715610b0857610b08612f2c565b5f8084546131d881612ef4565b600182811680156131f0576001811461320557613231565b60ff1984168752821515830287019450613231565b885f526020805f205f5b858110156132285781548a82015290840190820161320f565b50505082870194505b50505050835161324581836020880161283e565b01949350505050565b61ffff82811682821603908082111561301c5761301c612f2c565b81810381811115610b0857610b08612f2c565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906132ae90830184612860565b9695505050505050565b5f602082840312156132c8575f80fd5b81516113538161280e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208e5c6618982aa73f6743ecd397553270f6472a564683ca101f68a8509e59ad4464736f6c63430008160033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800be0aa56c2a8c3fd00b930997257b7a3b1d05a0e336d2ba957696bf5a85bc568a007c71412aa72182e5aff45d9df0a2b14a04a219b60a31e300bd88158ebfc850000000000000000000000008edf1b10c1198d2953f3bf2358113397f5b4aac100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000949636f6e69634e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005494d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53556b4c736d37716b79396772484d6350394e656941676b6b344d6e725847396f7a467a64646563743373372f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): IconicNFT
Arg [1] : symbol_ (string): IMNFT
Arg [2] : baseURI_ (string): ipfs://QmSUkLsm7qky9grHMcP9NeiAgkk4MnrXG9ozFzddect3s7/
Arg [3] : artPassMerkleRoot_ (bytes32): 0x0be0aa56c2a8c3fd00b930997257b7a3b1d05a0e336d2ba957696bf5a85bc568
Arg [4] : allowListMerkleRoot_ (bytes32): 0xa007c71412aa72182e5aff45d9df0a2b14a04a219b60a31e300bd88158ebfc85
Arg [5] : iconicAddress_ (address): 0x8edF1B10c1198D2953f3bF2358113397F5B4aac1
Arg [6] : mintPrice_ (uint256): 0
Arg [7] : editionSupply_ (uint16): 1

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0be0aa56c2a8c3fd00b930997257b7a3b1d05a0e336d2ba957696bf5a85bc568
Arg [4] : a007c71412aa72182e5aff45d9df0a2b14a04a219b60a31e300bd88158ebfc85
Arg [5] : 0000000000000000000000008edf1b10c1198d2953f3bf2358113397f5b4aac1
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 49636f6e69634e46540000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [11] : 494d4e4654000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d53556b4c736d37716b79396772484d6350394e65694167
Arg [14] : 6b6b344d6e725847396f7a467a64646563743373372f00000000000000000000


Deployed Bytecode Sourcemap

81802:9234:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84407:91;;;;;;;;;;;;;:::i;:::-;;48731:639;;;;;;;;;;-1:-1:-1;48731:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48731:639:0;;;;;;;;49633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56124:218::-;;;;;;;;;;-1:-1:-1;56124:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;56124:218:0;1533:203:1;82606:58:0;;;;;;;;;;-1:-1:-1;82606:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2240:25:1;;;2228:2;2213:18;82606:58:0;2094:177:1;55557:408:0;;;;;;:::i;:::-;;:::i;82005:42::-;;;;;;;;;;-1:-1:-1;82005:42:0;;;;;;;;;;;84139:80;;;;;;;;;;;;;:::i;45384:323::-;;;;;;;;;;-1:-1:-1;90490:1:0;45658:12;45445:7;45642:13;:28;-1:-1:-1;;45642:46:0;45384:323;;82128:33;;;;;;;;;;-1:-1:-1;82128:33:0;;;;;;;;;;;88916:720;;;;;;:::i;:::-;;:::i;59763:2825::-;;;;;;:::i;:::-;;:::i;88373:118::-;;;;;;;;;;-1:-1:-1;88373:118:0;;;;;:::i;:::-;;:::i;83475:93::-;;;;;;;;;;;;;:::i;85201:350::-;;;;;;;;;;-1:-1:-1;85201:350:0;;;;;:::i;:::-;;:::i;84603:101::-;;;;;;;;;;-1:-1:-1;84603:101:0;;;;;:::i;:::-;;:::i;82052:33::-;;;;;;;;;;-1:-1:-1;82052:33:0;;;;;;;;;;;84504:93;;;;;;;;;;;;;:::i;84814:133::-;;;;;;;;;;-1:-1:-1;84814:133:0;;;;;:::i;:::-;;:::i;62684:193::-;;;;;;:::i;:::-;;:::i;89642:132::-;;;;;;;;;;-1:-1:-1;89642:132:0;;;;;:::i;:::-;;:::i;86174:193::-;;;;;;;;;;-1:-1:-1;86174:193:0;;;;;:::i;:::-;;:::i;:::-;;;7061:6:1;7049:19;;;7031:38;;7019:2;7004:18;86174:193:0;6887:188:1;88497:413:0;;;;;;;;;;-1:-1:-1;88497:413:0;;;;;:::i;:::-;;:::i;81908:45::-;;;;;;;;;;-1:-1:-1;81908:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7586:1:1;7575:21;;;;7557:40;;7545:2;7530:18;81908:45:0;7415:188:1;82090:33:0;;;;;;;;;;-1:-1:-1;82090:33:0;;;;;;;;;;;82210:37;;;;;;;;;;;;;;;;82442:46;;;;;;;;;;-1:-1:-1;82442:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;82534:48;;;;;;;;;;-1:-1:-1;82534:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51026:152;;;;;;;;;;-1:-1:-1;51026:152:0;;;;;:::i;:::-;;:::i;87363:1004::-;;;;;;:::i;:::-;;:::i;82325:24::-;;;;;;;;;;;;;;;;82254:21;;;;;;;;;;;;;:::i;46568:233::-;;;;;;;;;;-1:-1:-1;46568:233:0;;;;;:::i;:::-;;:::i;2539:103::-;;;;;;;;;;;;;:::i;83968:81::-;;;;;;;;;;;;;:::i;83675:97::-;;;;;;;;;;;;;:::i;85886:282::-;;;;;;;;;;-1:-1:-1;85886:282:0;;;;;:::i;:::-;;:::i;1891:87::-;;;;;;;;;;-1:-1:-1;1964:6:0;;-1:-1:-1;;;;;1964:6:0;1891:87;;49809:104;;;;;;;;;;;;;:::i;89780:218::-;;;;;;;;;;-1:-1:-1;89780:218:0;;;;;:::i;:::-;;:::i;82166:39::-;;;;;;;;;;;;;;;;81960:40;;;;;;;;;;-1:-1:-1;81960:40:0;;;;;;;;56682:234;;;;;;;;;;-1:-1:-1;56682:234:0;;;;;:::i;:::-;;:::i;86373:984::-;;;;;;:::i;:::-;;:::i;82406:29::-;;;;;;;;;;-1:-1:-1;82406:29:0;;;;-1:-1:-1;;;;;82406:29:0;;;81867:36;;;;;;;;;;-1:-1:-1;81867:36:0;;;;-1:-1:-1;;;81867:36:0;;;;;;82280;;;;;;;;;;-1:-1:-1;82280:36:0;;;;;;;;84315:86;;;;;;;;;;;;;:::i;63475:407::-;;;;;;:::i;:::-;;:::i;85557:323::-;;;;;;;;;;-1:-1:-1;85557:323:0;;;;;:::i;:::-;;:::i;84225:84::-;;;;;;;;;;;;;:::i;90503:300::-;;;;;;;;;;-1:-1:-1;90503:300:0;;;;;:::i;:::-;;:::i;84055:78::-;;;;;;;;;;;;;:::i;84953:116::-;;;;;;;;;;-1:-1:-1;84953:116:0;;;;;:::i;:::-;;:::i;83883:79::-;;;;;;;;;;;;;:::i;57073:164::-;;;;;;;;;;-1:-1:-1;57073:164:0;;;;;:::i;:::-;;:::i;85075:120::-;;;;;;;;;;-1:-1:-1;85075:120:0;;;;;:::i;:::-;;:::i;2797:201::-;;;;;;;;;;-1:-1:-1;2797:201:0;;;;;:::i;:::-;;:::i;84710:98::-;;;;;;;;;;-1:-1:-1;84710:98:0;;;;;:::i;:::-;;:::i;83778:99::-;;;;;;;;;;;;;:::i;83574:95::-;;;;;;;;;;;;;:::i;84407:91::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;;;;;;;;;84469:16:::1;:23:::0;;-1:-1:-1;;84469:23:0::1;84488:4;84469:23;::::0;;84407:91::o;48731:639::-;48816:4;-1:-1:-1;;;;;;;;;49140:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;49217:25:0;;;49140:102;:179;;;-1:-1:-1;;;;;;;;;;49294:25:0;;;49140:179;49120:199;48731:639;-1:-1:-1;;48731:639:0:o;49633:100::-;49687:13;49720:5;49713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49633:100;:::o;56124:218::-;56200:7;56225:16;56233:7;56225;:16::i;:::-;56220:64;;56250:34;;-1:-1:-1;;;56250:34:0;;;;;;;;;;;56220:64;-1:-1:-1;56304:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;56304:30:0;;56124:218::o;55557:408::-;55646:13;55662:16;55670:7;55662;:16::i;:::-;55646:32;-1:-1:-1;79890:10:0;-1:-1:-1;;;;;55695:28:0;;;55691:175;;55743:44;55760:5;79890:10;57073:164;:::i;55743:44::-;55738:128;;55815:35;;-1:-1:-1;;;55815:35:0;;;;;;;;;;;55738:128;55878:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;55878:35:0;-1:-1:-1;;;;;55878:35:0;;;;;;;;;55929:28;;55878:24;;55929:28;;;;;;;55635:330;55557:408;;:::o;84139:80::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84192:13:::1;:21:::0;;-1:-1:-1;;84192:21:0::1;::::0;;84139:80::o;88916:720::-;20509:21;:19;:21::i;:::-;89013:13:::1;::::0;;;::::1;;;89005:45;;;::::0;-1:-1:-1;;;89005:45:0;;13380:2:1;89005:45:0::1;::::0;::::1;13362:21:1::0;13419:2;13399:18;;;13392:30;-1:-1:-1;;;13438:18:1;;;13431:49;13497:18;;89005:45:0::1;13178:343:1::0;89005:45:0::1;89107:6;89078:35;;:26;89091:12;89078;:26::i;:::-;:35;;;;:::i;:::-;89065:9;:48;89057:91;;;;-1:-1:-1::0;;;89057:91:0::1;;;;;;;:::i;:::-;89172:1;89163:6;:10;;;89155:48;;;;-1:-1:-1::0;;;89155:48:0::1;;;;;;;:::i;:::-;89218:37;:27:::0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;;:37;;::::1;:27:::0;::::1;:37;;89210:78;;;;-1:-1:-1::0;;;89210:78:0::1;;;;;;;:::i;:::-;89297:24;89324:37;::::0;::::1;:28;79890:10:::0;89332:19:::1;-1:-1:-1::0;;;;;47543:25:0;47510:6;47543:25;;;:18;:25;;;;;;41101:3;47543:40;;47455:137;89324:28:::1;:37;;;;:::i;:::-;89397:18;::::0;89297:64;;-1:-1:-1;;;;89397:18:0;::::1;;;-1:-1:-1::0;;;;;89376:39:0;::::1;;;89368:82;;;::::0;-1:-1:-1;;;89368:82:0;;15288:2:1;89368:82:0::1;::::0;::::1;15270:21:1::0;15327:2;15307:18;;;15300:30;15366:32;15346:18;;;15339:60;15416:18;;89368:82:0::1;15086:354:1::0;89368:82:0::1;89459:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;89459:13:0;;::::1;::::0;89482:9:::1;89459:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;89482:9;89459:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;89499:34:0::1;79890:10:::0;89505:19:::1;89526:6;89499:34;;:5;:34::i;:::-;89540:36;89555:6;89563:12;89540:14;:36::i;:::-;89583:47;79890:10:::0;89591:19:::1;-1:-1:-1::0;;;;;47869:25:0;47852:14;47869:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;48069:32:0;41101:3;48106:24;;;48068:63;48142:34;;47780:404;89583:47:::1;88998:638;20553:20:::0;19947:1;21073:7;:22;20890:213;20553:20;88916:720;;:::o;59763:2825::-;59905:27;59935;59954:7;59935:18;:27::i;:::-;59905:57;;60020:4;-1:-1:-1;;;;;59979:45:0;59995:19;-1:-1:-1;;;;;59979:45:0;;59975:86;;60033:28;;-1:-1:-1;;;60033:28:0;;;;;;;;;;;59975:86;60075:27;58871:24;;;:15;:24;;;;;59099:26;;60266:68;59099:26;60308:4;79890:10;60314:19;-1:-1:-1;;;;;58345:32:0;;;58189:28;;58474:20;;58496:30;;58471:56;;57886:659;60266:68;60261:180;;60354:43;60371:4;79890:10;57073:164;:::i;60354:43::-;60349:92;;60406:35;;-1:-1:-1;;;60406:35:0;;;;;;;;;;;60349:92;-1:-1:-1;;;;;60458:16:0;;60454:52;;60483:23;;-1:-1:-1;;;60483:23:0;;;;;;;;;;;60454:52;60655:15;60652:160;;;60795:1;60774:19;60767:30;60652:160;-1:-1:-1;;;;;61192:24:0;;;;;;;:18;:24;;;;;;61190:26;;-1:-1:-1;;61190:26:0;;;61261:22;;;;;;;;;61259:24;;-1:-1:-1;61259:24:0;;;54415:11;54390:23;54386:41;54373:63;-1:-1:-1;;;54373:63:0;61554:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;61849:47:0;;:52;;61845:627;;61954:1;61944:11;;61922:19;62077:30;;;:17;:30;;;;;;:35;;62073:384;;62215:13;;62200:11;:28;62196:242;;62362:30;;;;:17;:30;;;;;:52;;;62196:242;61903:569;61845:627;62519:7;62515:2;-1:-1:-1;;;;;62500:27:0;62509:4;-1:-1:-1;;;;;62500:27:0;-1:-1:-1;;;;;;;;;;;62500:27:0;;;;;;;;;62538:42;59894:2694;;;59763:2825;;;:::o;88373:118::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;88453:14:::1;:32:::0;;-1:-1:-1;;;;;;88453:32:0::1;-1:-1:-1::0;;;;;88453:32:0;;;::::1;::::0;;;::::1;::::0;;88373:118::o;83475:93::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;83535:20:::1;:27:::0;;-1:-1:-1;;83535:27:0::1;83558:4;83535:27;::::0;;83475:93::o;85201:350::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;85395:6:::1;:13;85370:14;:21;:38;85362:65;;;;-1:-1:-1::0;;;85362:65:0::1;;;;;;;:::i;:::-;85440:8;85436:110;85458:14;:21;85454:1;:25;;;85436:110;;;85529:6;85536:1;85529:9;;;;;;;;;;:::i;:::-;;;;;;;85495:12;:31;85508:14;85523:1;85508:17;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;85495:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;85495:31:0;:43;;-1:-1:-1;;85495:43:0::1;;::::0;;;;;;;::::1;::::0;;85481:3;::::1;::::0;::::1;:::i;:::-;;;;85436:110;;;;85201:350:::0;;:::o;84603:101::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84680:7:::1;:18;84690:8:::0;84680:7;:18:::1;:::i;84504:93::-:0;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84567:16:::1;:24:::0;;-1:-1:-1;;84567:24:0::1;::::0;;84504:93::o;84814:133::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84901:18:::1;:40:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;84901:40:0::1;-1:-1:-1::0;;;;84901:40:0;;::::1;::::0;;;::::1;::::0;;84814:133::o;62684:193::-;62830:39;62847:4;62853:2;62857:7;62830:39;;;;;;;;;;;;:16;:39::i;89642:132::-;89695:13;;;;;;;89687:54;;;;-1:-1:-1;;;89687:54:0;;18494:2:1;89687:54:0;;;18476:21:1;18533:2;18513:18;;;18506:30;18572;18552:18;;;18545:58;18620:18;;89687:54:0;18292:352:1;89687:54:0;89748:20;89754:7;89763:4;89748:5;:20::i;:::-;89642:132;:::o;86174:193::-;-1:-1:-1;;;;;86298:27:0;;86256:6;86298:27;;;:12;:27;;;;;;86256:6;;86294:31;;86298:27;;;;;86294:31;:::i;:::-;86271:54;86174:193;-1:-1:-1;;;86174:193:0:o;88497:413::-;90987:14;;-1:-1:-1;;;;;90987:14:0;79890:10;-1:-1:-1;;;;;90964:37:0;;90956:64;;;;-1:-1:-1;;;90956:64:0;;;;;;;:::i;:::-;20509:21:::1;:19;:21::i;:::-;88645:13:::2;::::0;;;::::2;;;88637:44;;;::::0;-1:-1:-1;;;88637:44:0;;19041:2:1;88637:44:0::2;::::0;::::2;19023:21:1::0;19080:2;19060:18;;;19053:30;-1:-1:-1;;;19099:18:1;;;19092:48;19157:18;;88637:44:0::2;18839:342:1::0;88637:44:0::2;88705:1;88696:6;:10;;;88688:48;;;;-1:-1:-1::0;;;88688:48:0::2;;;;;;;:::i;:::-;88751:37;:27:::0;;::::2;;::::0;;;:13:::2;:27;::::0;;;;;:37;;::::2;:27:::0;::::2;:37;;88743:78;;;;-1:-1:-1::0;;;88743:78:0::2;;;;;;;:::i;:::-;88830:31;88836:16;88854:6;88830:31;;:5;:31::i;:::-;88868:36;88883:6;88891:12;88868:14;:36::i;:::-;20553:20:::1;19947:1:::0;21073:7;:22;20890:213;51026:152;51098:7;51141:27;51160:7;51141:18;:27::i;87363:1004::-;20509:21;:19;:21::i;:::-;87501:22:::1;::::0;::::1;::::0;::::1;;;87493:65;;;::::0;-1:-1:-1;;;87493:65:0;;19388:2:1;87493:65:0::1;::::0;::::1;19370:21:1::0;19427:2;19407:18;;;19400:30;19466:32;19446:18;;;19439:60;19516:18;;87493:65:0::1;19186:354:1::0;87493:65:0::1;87615:6;87586:35;;:26;87599:12;87586;:26::i;:::-;:35;;;;:::i;:::-;87573:9;:48;87565:91;;;;-1:-1:-1::0;;;87565:91:0::1;;;;;;;:::i;:::-;87680:1;87671:6;:10;;;87663:48;;;;-1:-1:-1::0;;;87663:48:0::1;;;;;;;:::i;:::-;87726:37;:27:::0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;;:37;;::::1;:27:::0;::::1;:37;;87718:78;;;;-1:-1:-1::0;;;87718:78:0::1;;;;;;;:::i;:::-;87805:24;87832:37;::::0;::::1;:28;79890:10:::0;87840:19:::1;79803:105:::0;87832:28:::1;:37;;;;:::i;:::-;87905:18;::::0;87805:64;;-1:-1:-1;;;;87905:18:0;::::1;;;-1:-1:-1::0;;;;;87884:39:0;::::1;;;87876:82;;;::::0;-1:-1:-1;;;87876:82:0;;15288:2:1;87876:82:0::1;::::0;::::1;15270:21:1::0;15327:2;15307:18;;;15300:30;15366:32;15346:18;;;15339:60;15416:18;;87876:82:0::1;15086:354:1::0;87876:82:0::1;87985:152;88018:11;;87985:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;88044:19:0::1;::::0;;-1:-1:-1;79890:10:0;;-1:-1:-1;88105:19:0::1;88088:37;;;;;;;19694:2:1::0;19690:15;;;;-1:-1:-1;;19686:53:1;19674:66;;19765:2;19756:12;;19545:229;88088:37:0::1;;;;;;;;;;;;;88078:48;;;;;;87985:18;:152::i;:::-;87967:214;;;::::0;-1:-1:-1;;;87967:214:0;;19981:2:1;87967:214:0::1;::::0;::::1;19963:21:1::0;20020:2;20000:18;;;19993:30;20059:26;20039:18;;;20032:54;20103:18;;87967:214:0::1;19779:348:1::0;87967:214:0::1;88190:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;88190:13:0;;::::1;::::0;88213:9:::1;88190:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;88213:9;88190:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;88230:34:0::1;79890:10:::0;88236:19:::1;79803:105:::0;88230:34:::1;88271:36;88286:6;88294:12;88271:14;:36::i;:::-;88314:47;79890:10:::0;88322:19:::1;79803:105:::0;88314:47:::1;87486:881;20553:20:::0;19947:1;21073:7;:22;20890:213;20553:20;87363:1004;;;;:::o;82254:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46568:233::-;46640:7;-1:-1:-1;;;;;46664:19:0;;46660:60;;46692:28;;-1:-1:-1;;;46692:28:0;;;;;;;;;;;46660:60;-1:-1:-1;;;;;;46738:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;46738:55:0;;46568:233::o;2539:103::-;1777:13;:11;:13::i;:::-;2604:30:::1;2631:1;2604:18;:30::i;:::-;2539:103::o:0;83968:81::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84022:13:::1;:21:::0;;-1:-1:-1;;84022:21:0::1;::::0;;83968:81::o;83675:97::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;83737:22:::1;:29:::0;;-1:-1:-1;;83737:29:0::1;;;::::0;;83675:97::o;85886:282::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;86019:8:::1;:15;86000:8;:15;:34;85992:61;;;;-1:-1:-1::0;;;85992:61:0::1;;;;;;;:::i;:::-;86066:8;86062:101;86084:8;:15;86080:1;:19;;;86062:101;;;86144:8;86153:1;86144:11;;;;;;;;;;:::i;:::-;;;;;;;86115:13;:26;86129:8;86138:1;86129:11;;;;;;;;;;:::i;:::-;;;;;;;86115:26;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;86101:3;;;;;:::i;:::-;;;;86062:101;;49809:104:::0;49865:13;49898:7;49891:14;;;;;:::i;89780:218::-;89863:37;;;89844:7;89863:37;;;:23;:37;;;;;;:42;;89860:80;;-1:-1:-1;;89923:9:0;;;89780:218::o;89860:80::-;-1:-1:-1;89955:37:0;;;;;;:23;:37;;;;;;;89780:218::o;56682:234::-;79890:10;56777:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;56777:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;56777:60:0;;;;;;;;;;56853:55;;540:41:1;;;56777:49:0;;79890:10;56853:55;;513:18:1;56853:55:0;;;;;;;56682:234;;:::o;86373:984::-;20509:21;:19;:21::i;:::-;86509:20:::1;::::0;::::1;;86501:61;;;::::0;-1:-1:-1;;;86501:61:0;;20334:2:1;86501:61:0::1;::::0;::::1;20316:21:1::0;20373:2;20353:18;;;20346:30;20412;20392:18;;;20385:58;20460:18;;86501:61:0::1;20132:352:1::0;86501:61:0::1;86619:6;86590:35;;:26;86603:12;86590;:26::i;:::-;:35;;;;:::i;:::-;86577:9;:48;86569:91;;;;-1:-1:-1::0;;;86569:91:0::1;;;;;;;:::i;:::-;86684:1;86675:6;:10;;;86667:48;;;;-1:-1:-1::0;;;86667:48:0::1;;;;;;;:::i;:::-;86730:37;:27:::0;;::::1;;::::0;;;:13:::1;:27;::::0;;;;;:37;;::::1;:27:::0;::::1;:37;;86722:78;;;;-1:-1:-1::0;;;86722:78:0::1;;;;;;;:::i;:::-;86817:58;::::0;::::1;:49;79890:10:::0;86174:193;:::i;86817:49::-:1;:58;;;;86809:105;;;::::0;-1:-1:-1;;;86809:105:0;;20691:2:1;86809:105:0::1;::::0;::::1;20673:21:1::0;20730:2;20710:18;;;20703:30;20769:34;20749:18;;;20742:62;-1:-1:-1;;;20820:18:1;;;20813:32;20862:19;;86809:105:0::1;20489:398:1::0;86809:105:0::1;86941:150;86974:11;;86941:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;87000:17:0::1;::::0;;-1:-1:-1;79890:10:0;;-1:-1:-1;87059:19:0::1;79803:105:::0;86941:150:::1;86923:210;;;::::0;-1:-1:-1;;;86923:210:0;;21094:2:1;86923:210:0::1;::::0;::::1;21076:21:1::0;21133:2;21113:18;;;21106:30;-1:-1:-1;;;21152:18:1;;;21145:52;21214:18;;86923:210:0::1;20892:346:1::0;86923:210:0::1;87142:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;87142:13:0;;::::1;::::0;87165:9:::1;87142:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;87165:9;87142:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;87182:34:0::1;79890:10:::0;87209:6:::1;87182:34;;:5;:34::i;:::-;87223:36;87238:6;87246:12;87223:14;:36::i;:::-;79890:10:::0;87302:33:::1;::::0;;;:12:::1;:33;::::0;;;;;:49:::1;::::0;87344:6;;87302:33;::::1;:49;:::i;:::-;79890:10:::0;87266:33:::1;::::0;;;:12:::1;:33;::::0;;;;:85;;-1:-1:-1;;87266:85:0::1;;::::0;;;;;;;::::1;::::0;;-1:-1:-1;21073:7:0;:22;20553:20;20890:213;84315:86;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84374:13:::1;:21:::0;;-1:-1:-1;;84374:21:0::1;::::0;;84315:86::o;63475:407::-;63650:31;63663:4;63669:2;63673:7;63650:12;:31::i;:::-;-1:-1:-1;;;;;63696:14:0;;;:19;63692:183;;63735:56;63766:4;63772:2;63776:7;63785:5;63735:30;:56::i;:::-;63730:145;;63819:40;;-1:-1:-1;;;63819:40:0;;;;;;;;;;;85557:323;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;85704:13:::1;:20;85683:10;:17;:41;85675:68;;;;-1:-1:-1::0;;;85675:68:0::1;;;;;;;:::i;:::-;85756:8;85752:123;85774:13;:20;85770:1;:24;;;85752:123;;;85854:10;85865:1;85854:13;;;;;;;;;;:::i;:::-;;;;;;;85810:23;:41;85834:13;85848:1;85834:16;;;;;;;;;;:::i;:::-;;;;;;;85810:41;;;;;;;;;;;;;;;:57;;;;85796:3;;;;;:::i;:::-;;;;85752:123;;84225:84:::0;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84283:13:::1;:20:::0;;-1:-1:-1;;84283:20:0::1;::::0;::::1;::::0;;84225:84::o;90503:300::-;90576:13;90606:16;90614:7;90606;:16::i;:::-;90598:49;;;;-1:-1:-1;;;90598:49:0;;21639:2:1;90598:49:0;;;21621:21:1;21678:2;21658:18;;;21651:30;-1:-1:-1;;;21697:18:1;;;21690:50;21757:18;;90598:49:0;21437:344:1;90598:49:0;90670:16;;90654:13;;90670:16;;:52;;90715:7;90670:52;;;90689:23;;;;:14;:23;;;;;;;;90670:52;90654:68;;90760:7;90769:26;90786:8;90769:16;:26::i;:::-;90743:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90729:68;;;90503:300;;;:::o;84055:78::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84107:13:::1;:20:::0;;-1:-1:-1;;84107:20:0::1;::::0;::::1;::::0;;84055:78::o;84953:116::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;85032:17:::1;:31:::0;84953:116::o;83883:79::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;83936:13:::1;:20:::0;;-1:-1:-1;;83936:20:0::1;::::0;::::1;::::0;;83883:79::o;57073:164::-;-1:-1:-1;;;;;57194:25:0;;;57170:4;57194:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57073:164::o;85075:120::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;85156:19:::1;:33:::0;85075:120::o;2797:201::-;1777:13;:11;:13::i;:::-;-1:-1:-1;;;;;2886:22:0;::::1;2878:73;;;::::0;-1:-1:-1;;;2878:73:0;;23014:2:1;2878:73:0::1;::::0;::::1;22996:21:1::0;23053:2;23033:18;;;23026:30;23092:34;23072:18;;;23065:62;-1:-1:-1;;;23143:18:1;;;23136:36;23189:19;;2878:73:0::1;22812:402:1::0;2878:73:0::1;2962:28;2981:8;2962:18;:28::i;84710:98::-:0;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;84780:9:::1;:22:::0;84710:98::o;83778:99::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;83841:22:::1;:30:::0;;-1:-1:-1;;83841:30:0::1;::::0;;83778:99::o;83574:95::-;90872:5;;-1:-1:-1;;;;;90872:5:0;79890:10;-1:-1:-1;;;;;90849:28:0;;90841:55;;;;-1:-1:-1;;;90841:55:0;;;;;;;:::i;:::-;83635:20:::1;:28:::0;;-1:-1:-1;;83635:28:0::1;::::0;;83574:95::o;57495:282::-;57560:4;57616:7;90490:1;57597:26;;:66;;;;;57650:13;;57640:7;:23;57597:66;:153;;;;-1:-1:-1;;57701:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;57701:44:0;:49;;57495:282::o;20589:293::-;19991:1;20723:7;;:19;20715:63;;;;-1:-1:-1;;;20715:63:0;;23421:2:1;20715:63:0;;;23403:21:1;23460:2;23440:18;;;23433:30;23499:33;23479:18;;;23472:61;23550:18;;20715:63:0;23219:355:1;20715:63:0;19991:1;20856:7;:18;20589:293::o;67144:2966::-;67217:20;67240:13;;;67268;;;67264:44;;67290:18;;-1:-1:-1;;;67290:18:0;;;;;;;;;;;67264:44;-1:-1:-1;;;;;67796:22:0;;;;;;:18;:22;;;;40865:2;67796:22;;;:71;;67834:32;67822:45;;67796:71;;;68110:31;;;:17;:31;;;;;-1:-1:-1;54846:15:0;;54820:24;54816:46;54415:11;54390:23;54386:41;54383:52;54373:63;;68110:173;;68345:23;;;;68110:31;;67796:22;;-1:-1:-1;;;;;;;;;;;67796:22:0;;68963:335;69624:1;69610:12;69606:20;69564:346;69665:3;69656:7;69653:16;69564:346;;69883:7;69873:8;69870:1;-1:-1:-1;;;;;;;;;;;69840:1:0;69837;69832:59;69718:1;69705:15;69564:346;;;69568:77;69943:8;69955:1;69943:13;69939:45;;69965:19;;-1:-1:-1;;;69965:19:0;;;;;;;;;;;69939:45;70001:13;:19;-1:-1:-1;85436:110:0::1;85201:350:::0;;:::o;90004:400::-;90110:27;;;;;;;;:13;:27;;;;;;:36;;90140:6;;90110:27;:36;:::i;:::-;90080:27;;;;;;;;:13;:27;;;;;:66;;-1:-1:-1;;90080:66:0;;;;;;;;;;;45153:13;;90282:23;;;;;;;;:::i;:::-;90269:36;;90265:134;45126:7;45153:13;90307:7;:24;90265:134;;;90353:23;;;;:14;:23;;;;;:38;;-1:-1:-1;;90353:38:0;;;;;;;-1:-1:-1;90333:9:0;90265:134;;52181:1275;52248:7;52283;;90490:1;52332:23;52328:1061;;52385:13;;52378:4;:20;52374:1015;;;52423:14;52440:23;;;:17;:23;;;;;;;-1:-1:-1;;;52529:24:0;;:29;;52525:845;;53194:113;53201:6;53211:1;53201:11;53194:113;;-1:-1:-1;;;53272:6:0;53254:25;;;;:17;:25;;;;;;53194:113;;52525:845;52400:989;52374:1015;53417:31;;-1:-1:-1;;;53417:31:0;;;;;;;;;;;74332:3081;74412:27;74442;74461:7;74442:18;:27::i;:::-;74412:57;-1:-1:-1;74412:57:0;74482:12;;74604:35;74631:7;58760:27;58871:24;;;:15;:24;;;;;59099:26;;58871:24;;58658:485;74604:35;74547:92;;;;74656:13;74652:316;;;74777:68;74802:15;74819:4;79890:10;74825:19;79803:105;74777:68;74772:184;;74869:43;74886:4;79890:10;57073:164;:::i;74869:43::-;74864:92;;74921:35;;-1:-1:-1;;;74921:35:0;;;;;;;;;;;74864:92;75124:15;75121:160;;;75264:1;75243:19;75236:30;75121:160;-1:-1:-1;;;;;75883:24:0;;;;;;:18;:24;;;;;:60;;75911:32;75883:60;;;54415:11;54390:23;54386:41;54373:63;-1:-1:-1;;;54373:63:0;76181:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;76506:47:0;;:52;;76502:627;;76611:1;76601:11;;76579:19;76734:30;;;:17;:30;;;;;;:35;;76730:384;;76872:13;;76857:11;:28;76853:242;;77019:30;;;;:17;:30;;;;;:52;;;76853:242;76560:569;76502:627;77157:35;;77184:7;;77180:1;;-1:-1:-1;;;;;77157:35:0;;;-1:-1:-1;;;;;;;;;;;77157:35:0;77180:1;;77157:35;-1:-1:-1;;77380:12:0;:14;;;;;;-1:-1:-1;;;;74332:3081:0:o;22177:190::-;22302:4;22355;22326:25;22339:5;22346:4;22326:12;:25::i;:::-;:33;;22177:190;-1:-1:-1;;;;22177:190:0:o;2056:132::-;1964:6;;-1:-1:-1;;;;;1964:6:0;79890:10;2120:23;2112:68;;;;-1:-1:-1;;;2112:68:0;;24090:2:1;2112:68:0;;;24072:21:1;;;24109:18;;;24102:30;24168:34;24148:18;;;24141:62;24220:18;;2112:68:0;23888:356:1;3158:191:0;3251:6;;;-1:-1:-1;;;;;3268:17:0;;;-1:-1:-1;;;;;;3268:17:0;;;;;;;3301:40;;3251:6;;;3268:17;3251:6;;3301:40;;3232:16;;3301:40;3221:128;3158:191;:::o;65966:716::-;66150:88;;-1:-1:-1;;;66150:88:0;;66129:4;;-1:-1:-1;;;;;66150:45:0;;;;;:88;;79890:10;;66217:4;;66223:7;;66232:5;;66150:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66150:88:0;;;;;;;;-1:-1:-1;;66150:88:0;;;;;;;;;;;;:::i;:::-;;;66146:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66433:6;:13;66450:1;66433:18;66429:235;;66479:40;;-1:-1:-1;;;66479:40:0;;;;;;;;;;;66429:235;66622:6;66616:13;66607:6;66603:2;66599:15;66592:38;66146:529;-1:-1:-1;;;;;;66309:64:0;-1:-1:-1;;;66309:64:0;;-1:-1:-1;66146:529:0;65966:716;;;;;;:::o;16413:::-;16469:13;16520:14;16537:17;16548:5;16537:10;:17::i;:::-;16557:1;16537:21;16520:38;;16573:20;16607:6;-1:-1:-1;;;;;16596:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16596:18:0;-1:-1:-1;16573:41:0;-1:-1:-1;16738:28:0;;;16754:2;16738:28;16795:288;-1:-1:-1;;16827:5:0;-1:-1:-1;;;16964:2:0;16953:14;;16948:30;16827:5;16935:44;17025:2;17016:11;;;-1:-1:-1;17046:21:0;16795:288;17046:21;-1:-1:-1;17104:6:0;16413:716;-1:-1:-1;;;16413:716:0:o;23044:296::-;23127:7;23170:4;23127:7;23185:118;23209:5;:12;23205:1;:16;23185:118;;;23258:33;23268:12;23282:5;23288:1;23282:8;;;;;;;;:::i;:::-;;;;;;;23258:9;:33::i;:::-;23243:48;-1:-1:-1;23223:3:0;;23185:118;;;-1:-1:-1;23320:12:0;23044:296;-1:-1:-1;;;23044:296:0:o;13402:922::-;13455:7;;-1:-1:-1;;;13533:15:0;;13529:102;;-1:-1:-1;;;13569:15:0;;;-1:-1:-1;13613:2:0;13603:12;13529:102;13658:6;13649:5;:15;13645:102;;13694:6;13685:15;;;-1:-1:-1;13729:2:0;13719:12;13645:102;13774:6;13765:5;:15;13761:102;;13810:6;13801:15;;;-1:-1:-1;13845:2:0;13835:12;13761:102;13890:5;13881;:14;13877:99;;13925:5;13916:14;;;-1:-1:-1;13959:1:0;13949:11;13877:99;14003:5;13994;:14;13990:99;;14038:5;14029:14;;;-1:-1:-1;14072:1:0;14062:11;13990:99;14116:5;14107;:14;14103:99;;14151:5;14142:14;;;-1:-1:-1;14185:1:0;14175:11;14103:99;14229:5;14220;:14;14216:66;;14265:1;14255:11;14310:6;13402:922;-1:-1:-1;;13402:922:0:o;30084:149::-;30147:7;30178:1;30174;:5;:51;;30309:13;30403:15;;;30439:4;30432:15;;;30486:4;30470:21;;30174:51;;;-1:-1:-1;30309:13:0;30403:15;;;30439:4;30432:15;30486:4;30470:21;;;30084:149::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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:159::-;1808:20;;1868:6;1857:18;;1847:29;;1837:57;;1890:1;1887;1880:12;1837:57;1741:159;;;:::o;1905:184::-;1963:6;2016:2;2004:9;1995:7;1991:23;1987:32;1984:52;;;2032:1;2029;2022:12;1984:52;2055:28;2073:9;2055:28;:::i;2276:173::-;2344:20;;-1:-1:-1;;;;;2393:31:1;;2383:42;;2373:70;;2439:1;2436;2429:12;2454:254;2522:6;2530;2583:2;2571:9;2562:7;2558:23;2554:32;2551:52;;;2599:1;2596;2589:12;2551:52;2622:29;2641:9;2622:29;:::i;:::-;2612:39;2698:2;2683:18;;;;2670:32;;-1:-1:-1;;;2454:254:1:o;2713:256::-;2779:6;2787;2840:2;2828:9;2819:7;2815:23;2811:32;2808:52;;;2856:1;2853;2846:12;2808:52;2879:28;2897:9;2879:28;:::i;:::-;2869:38;;2926:37;2959:2;2948:9;2944:18;2926:37;:::i;:::-;2916:47;;2713:256;;;;;:::o;2974:328::-;3051:6;3059;3067;3120:2;3108:9;3099:7;3095:23;3091:32;3088:52;;;3136:1;3133;3126:12;3088:52;3159:29;3178:9;3159:29;:::i;:::-;3149:39;;3207:38;3241:2;3230:9;3226:18;3207:38;:::i;:::-;3197:48;;3292:2;3281:9;3277:18;3264:32;3254:42;;2974:328;;;;;:::o;3307:186::-;3366:6;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3458:29;3477:9;3458:29;:::i;3498:127::-;3559:10;3554:3;3550:20;3547:1;3540:31;3590:4;3587:1;3580:15;3614:4;3611:1;3604:15;3630:275;3701:2;3695:9;3766:2;3747:13;;-1:-1:-1;;3743:27:1;3731:40;;-1:-1:-1;;;;;3786:34:1;;3822:22;;;3783:62;3780:88;;;3848:18;;:::i;:::-;3884:2;3877:22;3630:275;;-1:-1:-1;3630:275:1:o;3910:183::-;3970:4;-1:-1:-1;;;;;3995:6:1;3992:30;3989:56;;;4025:18;;:::i;:::-;-1:-1:-1;4070:1:1;4066:14;4082:4;4062:25;;3910:183::o;4098:769::-;4150:5;4203:3;4196:4;4188:6;4184:17;4180:27;4170:55;;4221:1;4218;4211:12;4170:55;4257:6;4244:20;4283:4;4307:60;4323:43;4363:2;4323:43;:::i;:::-;4307:60;:::i;:::-;4389:3;4413:2;4408:3;4401:15;4441:4;4436:3;4432:14;4425:21;;4498:4;4492:2;4489:1;4485:10;4477:6;4473:23;4469:34;4455:48;;4526:3;4518:6;4515:15;4512:35;;;4543:1;4540;4533:12;4512:35;4579:4;4571:6;4567:17;4593:245;4609:6;4604:3;4601:15;4593:245;;;4689:3;4676:17;4740:5;4737:1;4726:20;4719:5;4716:31;4706:59;;4761:1;4758;4751:12;4706:59;4778:18;;4816:12;;;;4626;;4593:245;;;-1:-1:-1;4856:5:1;4098:769;-1:-1:-1;;;;;;4098:769:1:o;4872:1142::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;5105:9;5092:23;-1:-1:-1;;;;;5175:2:1;5167:6;5164:14;5161:34;;;5191:1;5188;5181:12;5161:34;5229:6;5218:9;5214:22;5204:32;;5274:7;5267:4;5263:2;5259:13;5255:27;5245:55;;5296:1;5293;5286:12;5245:55;5332:2;5319:16;5354:4;5378:60;5394:43;5434:2;5394:43;:::i;5378:60::-;5472:15;;;5554:1;5550:10;;;;5542:19;;5538:28;;;5503:12;;;;5578:19;;;5575:39;;;5610:1;5607;5600:12;5575:39;5634:11;;;;5654:148;5670:6;5665:3;5662:15;5654:148;;;5736:23;5755:3;5736:23;:::i;:::-;5724:36;;5687:12;;;;5780;;;;5654:148;;;5821:5;-1:-1:-1;;5864:18:1;;5851:32;;-1:-1:-1;;5895:16:1;;;5892:36;;;5924:1;5921;5914:12;5892:36;;5947:61;6000:7;5989:8;5978:9;5974:24;5947:61;:::i;:::-;5937:71;;;4872:1142;;;;;:::o;6019:407::-;6084:5;-1:-1:-1;;;;;6110:6:1;6107:30;6104:56;;;6140:18;;:::i;:::-;6178:57;6223:2;6202:15;;-1:-1:-1;;6198:29:1;6229:4;6194:40;6178:57;:::i;:::-;6169:66;;6258:6;6251:5;6244:21;6298:3;6289:6;6284:3;6280:16;6277:25;6274:45;;;6315:1;6312;6305:12;6274:45;6364:6;6359:3;6352:4;6345:5;6341:16;6328:43;6418:1;6411:4;6402:6;6395:5;6391:18;6387:29;6380:40;6019:407;;;;;:::o;6431:451::-;6500:6;6553:2;6541:9;6532:7;6528:23;6524:32;6521:52;;;6569:1;6566;6559:12;6521:52;6609:9;6596:23;-1:-1:-1;;;;;6634:6:1;6631:30;6628:50;;;6674:1;6671;6664:12;6628:50;6697:22;;6750:4;6742:13;;6738:27;-1:-1:-1;6728:55:1;;6779:1;6776;6769:12;6728:55;6802:74;6868:7;6863:2;6850:16;6845:2;6841;6837:11;6802:74;:::i;7080:330::-;7155:6;7163;7171;7224:2;7212:9;7203:7;7199:23;7195:32;7192:52;;;7240:1;7237;7230:12;7192:52;7263:28;7281:9;7263:28;:::i;:::-;7253:38;;7310:37;7343:2;7332:9;7328:18;7310:37;:::i;:::-;7300:47;;7366:38;7400:2;7389:9;7385:18;7366:38;:::i;:::-;7356:48;;7080:330;;;;;:::o;7790:765::-;7892:6;7900;7908;7916;7969:2;7957:9;7948:7;7944:23;7940:32;7937:52;;;7985:1;7982;7975:12;7937:52;8025:9;8012:23;-1:-1:-1;;;;;8095:2:1;8087:6;8084:14;8081:34;;;8111:1;8108;8101:12;8081:34;8149:6;8138:9;8134:22;8124:32;;8194:7;8187:4;8183:2;8179:13;8175:27;8165:55;;8216:1;8213;8206:12;8165:55;8256:2;8243:16;8282:2;8274:6;8271:14;8268:34;;;8298:1;8295;8288:12;8268:34;8353:7;8346:4;8336:6;8333:1;8329:14;8325:2;8321:23;8317:34;8314:47;8311:67;;;8374:1;8371;8364:12;8311:67;8405:4;8397:13;;;;-1:-1:-1;8429:6:1;-1:-1:-1;8454:39:1;;8472:20;;;-1:-1:-1;8454:39:1;:::i;:::-;8444:49;;8512:37;8545:2;8534:9;8530:18;8512:37;:::i;:::-;8502:47;;7790:765;;;;;;;:::o;8560:672::-;8613:5;8666:3;8659:4;8651:6;8647:17;8643:27;8633:55;;8684:1;8681;8674:12;8633:55;8720:6;8707:20;8746:4;8770:60;8786:43;8826:2;8786:43;:::i;8770:60::-;8852:3;8876:2;8871:3;8864:15;8904:4;8899:3;8895:14;8888:21;;8961:4;8955:2;8952:1;8948:10;8940:6;8936:23;8932:34;8918:48;;8989:3;8981:6;8978:15;8975:35;;;9006:1;9003;8996:12;8975:35;9042:4;9034:6;9030:17;9056:147;9072:6;9067:3;9064:15;9056:147;;;9138:22;9156:3;9138:22;:::i;:::-;9126:35;;9181:12;;;;9089;;9056:147;;9237:591;9353:6;9361;9414:2;9402:9;9393:7;9389:23;9385:32;9382:52;;;9430:1;9427;9420:12;9382:52;9470:9;9457:23;-1:-1:-1;;;;;9540:2:1;9532:6;9529:14;9526:34;;;9556:1;9553;9546:12;9526:34;9579:60;9631:7;9622:6;9611:9;9607:22;9579:60;:::i;:::-;9569:70;;9692:2;9681:9;9677:18;9664:32;9648:48;;9721:2;9711:8;9708:16;9705:36;;;9737:1;9734;9727:12;9705:36;;9760:62;9814:7;9803:8;9792:9;9788:24;9760:62;:::i;9833:347::-;9898:6;9906;9959:2;9947:9;9938:7;9934:23;9930:32;9927:52;;;9975:1;9972;9965:12;9927:52;9998:29;10017:9;9998:29;:::i;:::-;9988:39;;10077:2;10066:9;10062:18;10049:32;10124:5;10117:13;10110:21;10103:5;10100:32;10090:60;;10146:1;10143;10136:12;10090:60;10169:5;10159:15;;;9833:347;;;;;:::o;10185:667::-;10280:6;10288;10296;10304;10357:3;10345:9;10336:7;10332:23;10328:33;10325:53;;;10374:1;10371;10364:12;10325:53;10397:29;10416:9;10397:29;:::i;:::-;10387:39;;10445:38;10479:2;10468:9;10464:18;10445:38;:::i;:::-;10435:48;;10530:2;10519:9;10515:18;10502:32;10492:42;;10585:2;10574:9;10570:18;10557:32;-1:-1:-1;;;;;10604:6:1;10601:30;10598:50;;;10644:1;10641;10634:12;10598:50;10667:22;;10720:4;10712:13;;10708:27;-1:-1:-1;10698:55:1;;10749:1;10746;10739:12;10698:55;10772:74;10838:7;10833:2;10820:16;10815:2;10811;10807:11;10772:74;:::i;:::-;10762:84;;;10185:667;;;;;;;:::o;10857:1138::-;10974:6;10982;11035:2;11023:9;11014:7;11010:23;11006:32;11003:52;;;11051:1;11048;11041:12;11003:52;11091:9;11078:23;-1:-1:-1;;;;;11161:2:1;11153:6;11150:14;11147:34;;;11177:1;11174;11167:12;11147:34;11215:6;11204:9;11200:22;11190:32;;11260:7;11253:4;11249:2;11245:13;11241:27;11231:55;;11282:1;11279;11272:12;11231:55;11318:2;11305:16;11340:4;11364:60;11380:43;11420:2;11380:43;:::i;11364:60::-;11458:15;;;11540:1;11536:10;;;;11528:19;;11524:28;;;11489:12;;;;11564:19;;;11561:39;;;11596:1;11593;11586:12;11561:39;11620:11;;;;11640:142;11656:6;11651:3;11648:15;11640:142;;;11722:17;;11710:30;;11673:12;;;;11760;;;;11640:142;;;11801:5;-1:-1:-1;;11844:18:1;;11831:32;;-1:-1:-1;;11875:16:1;;;11872:36;;;11904:1;11901;11894:12;12185:260;12253:6;12261;12314:2;12302:9;12293:7;12289:23;12285:32;12282:52;;;12330:1;12327;12320:12;12282:52;12353:29;12372:9;12353:29;:::i;:::-;12343:39;;12401:38;12435:2;12424:9;12420:18;12401:38;:::i;12450:338::-;12652:2;12634:21;;;12691:2;12671:18;;;12664:30;-1:-1:-1;;;12725:2:1;12710:18;;12703:44;12779:2;12764:18;;12450:338::o;12793:380::-;12872:1;12868:12;;;;12915;;;12936:61;;12990:4;12982:6;12978:17;12968:27;;12936:61;13043:2;13035:6;13032:14;13012:18;13009:38;13006:161;;13089:10;13084:3;13080:20;13077:1;13070:31;13124:4;13121:1;13114:15;13152:4;13149:1;13142:15;13006:161;;12793:380;;;:::o;13526:127::-;13587:10;13582:3;13578:20;13575:1;13568:31;13618:4;13615:1;13608:15;13642:4;13639:1;13632:15;13658:168;13731:9;;;13762;;13779:15;;;13773:22;;13759:37;13749:71;;13800:18;;:::i;13831:354::-;14033:2;14015:21;;;14072:2;14052:18;;;14045:30;14111:32;14106:2;14091:18;;14084:60;14176:2;14161:18;;13831:354::o;14190:349::-;14392:2;14374:21;;;14431:2;14411:18;;;14404:30;14470:27;14465:2;14450:18;;14443:55;14530:2;14515:18;;14190:349::o;14544:352::-;14746:2;14728:21;;;14785:2;14765:18;;;14758:30;14824;14819:2;14804:18;;14797:58;14887:2;14872:18;;14544:352::o;14901:180::-;-1:-1:-1;;;;;15006:10:1;;;15018;;;15002:27;;15041:11;;;15038:37;;;15055:18;;:::i;:::-;15038:37;14901:180;;;;:::o;15445:338::-;15647:2;15629:21;;;15686:2;15666:18;;;15659:30;-1:-1:-1;;;15720:2:1;15705:18;;15698:44;15774:2;15759:18;;15445:338::o;15788:127::-;15849:10;15844:3;15840:20;15837:1;15830:31;15880:4;15877:1;15870:15;15904:4;15901:1;15894:15;15920:197;15958:3;15986:6;16027:2;16020:5;16016:14;16054:2;16045:7;16042:15;16039:41;;16060:18;;:::i;:::-;16109:1;16096:15;;15920:197;-1:-1:-1;;;15920:197:1:o;16248:518::-;16350:2;16345:3;16342:11;16339:421;;;16386:5;16383:1;16376:16;16430:4;16427:1;16417:18;16500:2;16488:10;16484:19;16481:1;16477:27;16471:4;16467:38;16536:4;16524:10;16521:20;16518:47;;;-1:-1:-1;16559:4:1;16518:47;16614:2;16609:3;16605:12;16602:1;16598:20;16592:4;16588:31;16578:41;;16669:81;16687:2;16680:5;16677:13;16669:81;;;16746:1;16732:16;;16713:1;16702:13;16669:81;;;16673:3;;16248:518;;;:::o;16942:1345::-;17068:3;17062:10;-1:-1:-1;;;;;17087:6:1;17084:30;17081:56;;;17117:18;;:::i;:::-;17146:97;17236:6;17196:38;17228:4;17222:11;17196:38;:::i;:::-;17190:4;17146:97;:::i;:::-;17298:4;;17355:2;17344:14;;17372:1;17367:663;;;;18074:1;18091:6;18088:89;;;-1:-1:-1;18143:19:1;;;18137:26;18088:89;-1:-1:-1;;16899:1:1;16895:11;;;16891:24;16887:29;16877:40;16923:1;16919:11;;;16874:57;18190:81;;17337:944;;17367:663;16195:1;16188:14;;;16232:4;16219:18;;-1:-1:-1;;17403:20:1;;;17521:236;17535:7;17532:1;17529:14;17521:236;;;17624:19;;;17618:26;17603:42;;17716:27;;;;17684:1;17672:14;;;;17551:19;;17521:236;;;17525:3;17785:6;17776:7;17773:19;17770:201;;;17846:19;;;17840:26;-1:-1:-1;;17929:1:1;17925:14;;;17941:3;17921:24;17917:37;17913:42;17898:58;17883:74;;17770:201;-1:-1:-1;;;;;18017:1:1;18001:14;;;17997:22;17984:36;;-1:-1:-1;16942:1345:1:o;18649:185::-;18745:1;18716:16;;;18734;;;;18712:39;18797:5;18766:16;;-1:-1:-1;;18784:20:1;;18763:42;18760:68;;;18808:18;;:::i;21243:189::-;21341:1;21330:16;;;21312;;;;21308:39;-1:-1:-1;;21362:21:1;;21395:6;21385:17;;21359:44;21356:70;;;21406:18;;:::i;21786:1021::-;21962:3;21991:1;22024:6;22018:13;22054:36;22080:9;22054:36;:::i;:::-;22109:1;22126:17;;;22152:133;;;;22299:1;22294:358;;;;22119:533;;22152:133;-1:-1:-1;;22185:24:1;;22173:37;;22258:14;;22251:22;22239:35;;22230:45;;;-1:-1:-1;22152:133:1;;22294:358;22325:6;22322:1;22315:17;22355:4;22400;22397:1;22387:18;22427:1;22441:165;22455:6;22452:1;22449:13;22441:165;;;22533:14;;22520:11;;;22513:35;22576:16;;;;22470:10;;22441:165;;;22445:3;;;22635:6;22630:3;22626:16;22619:23;;22119:533;;;;;22683:6;22677:13;22699:68;22758:8;22753:3;22746:4;22738:6;22734:17;22699:68;:::i;:::-;22783:18;;21786:1021;-1:-1:-1;;;;21786:1021:1:o;23579:171::-;23647:6;23686:10;;;23674;;;23670:27;;23709:12;;;23706:38;;;23724:18;;:::i;23755:128::-;23822:9;;;23843:11;;;23840:37;;;23857:18;;:::i;24249:489::-;-1:-1:-1;;;;;24518:15:1;;;24500:34;;24570:15;;24565:2;24550:18;;24543:43;24617:2;24602:18;;24595:34;;;24665:3;24660:2;24645:18;;24638:31;;;24443:4;;24686:46;;24712:19;;24704:6;24686:46;:::i;:::-;24678:54;24249:489;-1:-1:-1;;;;;;24249:489:1:o;24743:249::-;24812:6;24865:2;24853:9;24844:7;24840:23;24836:32;24833:52;;;24881:1;24878;24871:12;24833:52;24913:9;24907:16;24932:30;24956:5;24932:30;:::i

Swarm Source

ipfs://8e5c6618982aa73f6743ecd397553270f6472a564683ca101f68a8509e59ad44
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.