ETH Price: $3,345.28 (+2.62%)
Gas: 1 Gwei

Token

HZGB Memetons Series I (HZGB)
 

Overview

Max Total Supply

172 HZGB

Holders

169

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
halokitty.eth
Balance
1 HZGB
0xfe0f5cb7aace0bf65c594036fdc84e7186bf92b6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

HZBG Memetons Series 1 is a boutique collection of 388 NFTs, as an anniversary gift of the HZGB DAO community, to deliver gratitude and love to all the builders, contributors and activists.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Hzgb_Airdrop_Series_I

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-22
*/

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

// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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

// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }
        return computedHash;
    }
}

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

// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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;

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: erc721a/contracts/IERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    TokenOwnership memory ownership = _ownerships[curr];
                    if (!ownership.burned) {
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        while (true) {
                            curr--;
                            ownership = _ownerships[curr];
                            if (ownership.addr != address(0)) {
                                return ownership;
                            }
                        }
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, tokenId.toString()))
                : "";
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract())
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

// File: packages/hardhat/contracts/hzgb.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

contract Hzgb_Airdrop_Series_I is ERC721A, Pausable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using SafeMath for uint256;

    bytes32 private merkleRoot;

    string public baseURI;
    string public veiledBaseURI;
    bool public isRevealed = false;

    uint256 public cost = 0.0 ether;

    uint256 public maxBatchSize;
    uint256 public immutable collectionSize;

    uint256 public maxWalletMint = 1;

    event EventMint(uint256 quantity_, uint256 totalSupply_);

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        string memory baseURI_,
        string memory veiledBaseURI_
    ) ERC721A("HZGB Memetons Series I", "HZGB") {
        setBaseURI(baseURI_);
        setVeiledBaseURI(veiledBaseURI_);

        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    //******************************************************//
    //                      Internal                        //
    //******************************************************//
    // The following functions are overrides required by Solidity.
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    //******************************************************//
    //                      States                          //
    //******************************************************//
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (!isRevealed) {
            return veiledBaseURI;
        }
        string memory baseURI_ = _baseURI();
        return
            bytes(baseURI_).length > 0
                ? string(abi.encodePacked(baseURI_, tokenId.toString()))
                : "";
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    //******************************************************//
    //                      Setters                         //
    //******************************************************//
    function unveil(string memory updatedTokenURI_) external onlyOwner {
        require(isRevealed == false, "Tokens are already unveiled");
        baseURI = updatedTokenURI_;
        isRevealed = true;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function setCost(uint256 cost_) external onlyOwner {
        cost = cost_;
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }

    function setVeiledBaseURI(string memory baseURI_) public onlyOwner {
        veiledBaseURI = baseURI_;
    }

    function _widthdraw(address address_, uint256 amount_) private {
        (bool success, ) = payable(address_).call{value: amount_}("");
        require(success, "Transfer failed.");
    }

    function withdrawAll() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(msg.sender, address(this).balance);
    }

    function setMaxWalletMint(uint256 walletMax_) external onlyOwner {
        require(walletMax_ >= 1, "Max mints per wallet must be at least 1");
        maxWalletMint = walletMax_;
    }

    function setMaxBatchSize(uint256 batchSize_) external onlyOwner {
        require(batchSize_ >= 1, "Max mint must be at least 1");
        maxBatchSize = batchSize_;
    }

    function setMerkleRoot(bytes32 newMerkleRoot_) external onlyOwner {
        require(newMerkleRoot_ != merkleRoot, "Merkle root will be unchanged!");
        merkleRoot = newMerkleRoot_;
    }

    //******************************************************//
    //                     Modifier                         //
    //******************************************************//
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    //******************************************************//
    //                      Mint                            //
    //******************************************************//

    function isWhitelisted(address to_, bytes32[] calldata merkleProof_)
        public
        view
        returns (bool)
    {
        require(merkleRoot != 0, "Merkle root is not set!");
        bytes32 leaf = keccak256(abi.encodePacked(to_));

        return MerkleProof.verify(merkleProof_, merkleRoot, leaf);
    }

    function ClaimNFTAirDrop(bytes32[] calldata merkleProof_)
        external
        payable
        callerIsUser
        whenNotPaused
    {
        address wallet = _msgSender();
        uint256 totalSupply_ = totalSupply();

        require(
            isWhitelisted(wallet, merkleProof_),
            "Address is not in Whitelist!"
        );

        require(
            balanceOf(wallet) + 1 <= maxWalletMint,
            "Wallet address is over the maximum allowed mints"
        );

        require(
            totalSupply_ + 1 <= collectionSize,
            "Cannot mint over supply cap of 388"
        );
        _safeMint(wallet, 1);
        emit EventMint(1, totalSupply());
    }

    // For marketing, unsold token etc.
    function devMint(uint256 count_) external onlyOwner {
        uint256 totalSupply_ = totalSupply();
        require(
            totalSupply_ + count_ <= collectionSize,
            "Cannot mint over supply cap of 388"
        );
        require(
            count_ % maxBatchSize == 0,
            "can only mint a multiple of the maxBatchSize"
        );
        uint256 numChunks = count_ / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
        emit EventMint(count_, totalSupply());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"veiledBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":false,"internalType":"uint256","name":"quantity_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"name":"EventMint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"ClaimNFTAirDrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count_","type":"uint256"}],"name":"devMint","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"nonpayable","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":"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost_","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchSize_","type":"uint256"}],"name":"setMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"walletMax_","type":"uint256"}],"name":"setMaxWalletMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setVeiledBaseURI","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"updatedTokenURI_","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"veiledBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600d805460ff191690556000600e5560016010553480156200002557600080fd5b5060405162002cbb38038062002cbb83398101604081905262000048916200038d565b604080518082018252601681527f485a4742204d656d65746f6e7320536572696573204900000000000000000000602080830191825283518085019094526004845263242d23a160e11b908401528151919291620000a99160029162000230565b508051620000bf90600390602084019062000230565b506000805550506008805460ff19169055620000db3362000107565b6001600955620000eb8262000161565b620000f681620001cf565b5050600f919091556080526200045e565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03610100909104163314620001b65760405162461bcd60e51b8152602060048201819052602482015260008051602062002c9b83398151915260448201526064015b60405180910390fd5b8051620001cb90600b90602084019062000230565b5050565b6008546001600160a01b03610100909104163314620002205760405162461bcd60e51b8152602060048201819052602482015260008051602062002c9b8339815191526044820152606401620001ad565b8051620001cb90600c9060208401905b8280546200023e906200040b565b90600052602060002090601f016020900481019282620002625760008555620002ad565b82601f106200027d57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ad57825182559160200191906001019062000290565b50620002bb929150620002bf565b5090565b5b80821115620002bb5760008155600101620002c0565b600082601f830112620002e857600080fd5b81516001600160401b038082111562000305576200030562000448565b604051601f8301601f19908116603f0116810190828211818310171562000330576200033062000448565b816040528381526020925086838588010111156200034d57600080fd5b600091505b8382101562000371578582018301518183018401529082019062000352565b83821115620003835760008385830101525b9695505050505050565b60008060008060808587031215620003a457600080fd5b84516020860151604087015191955093506001600160401b0380821115620003cb57600080fd5b620003d988838901620002d6565b93506060870151915080821115620003f057600080fd5b50620003ff87828801620002d6565b91505092959194509250565b600181811c908216806200042057607f821691505b602082108114156200044257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051612813620004886000396000818161042001528181610b22015261155e01526128136000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e57806395d89b41116100ab578063d07a34201161006f578063d07a34201461064b578063e985e9c51461066b578063ee4aa004146106b4578063f2fde38b146106c7578063f39d1007146106e757600080fd5b806395d89b41146105b6578063a22cb465146105cb578063b88d4fde146105eb578063c87b56dd1461060b578063cff449231461062b57600080fd5b8063715018a6116100f2578063715018a6146105345780637cb64759146105495780638456cb5914610569578063853828b61461057e5780638da5cb5b1461059357600080fd5b80635c975abb146104b25780636352211e146104ca57806363c4cd9a146104ea5780636c0360eb146104ff57806370a082311461051457600080fd5b80632f745c59116101bc57806345c0f5331161018057806345c0f5331461040e5780634e1113d21461044257806354214f691461045857806355f804b3146104725780635a23dd991461049257600080fd5b80632f745c5914610379578063375a069a146103995780633f4ba83a146103b957806342842e0e146103ce57806344a0d68a146103ee57600080fd5b806313faede61161020357806313faede6146102e657806318160ddd1461030a57806323b872dd146103235780632913daa0146103435780632b26a6bf1461035957600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046124f2565b610707565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610759565b604051610261919061260c565b34801561029857600080fd5b506102ac6102a73660046124d9565b6107eb565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461246e565b61082f565b005b3480156102f257600080fd5b506102fc600e5481565b604051908152602001610261565b34801561031657600080fd5b50600154600054036102fc565b34801561032f57600080fd5b506102e461033e366004612329565b6108b6565b34801561034f57600080fd5b506102fc600f5481565b34801561036557600080fd5b506102e46103743660046124d9565b6108c1565b34801561038557600080fd5b506102fc61039436600461246e565b610950565b3480156103a557600080fd5b506102e46103b43660046124d9565b610adf565b3480156103c557600080fd5b506102e4610c60565b3480156103da57600080fd5b506102e46103e9366004612329565b610c9a565b3480156103fa57600080fd5b506102e46104093660046124d9565b610cb5565b34801561041a57600080fd5b506102fc7f000000000000000000000000000000000000000000000000000000000000000081565b34801561044e57600080fd5b506102fc60105481565b34801561046457600080fd5b50600d546102559060ff1681565b34801561047e57600080fd5b506102e461048d36600461252c565b610cea565b34801561049e57600080fd5b506102556104ad3660046123e0565b610d31565b3480156104be57600080fd5b5060085460ff16610255565b3480156104d657600080fd5b506102ac6104e53660046124d9565b610e07565b3480156104f657600080fd5b5061027f610e19565b34801561050b57600080fd5b5061027f610ea7565b34801561052057600080fd5b506102fc61052f3660046122db565b610eb4565b34801561054057600080fd5b506102e4610f02565b34801561055557600080fd5b506102e46105643660046124d9565b610f3c565b34801561057557600080fd5b506102e4610fc3565b34801561058a57600080fd5b506102e4610ffb565b34801561059f57600080fd5b5060085461010090046001600160a01b03166102ac565b3480156105c257600080fd5b5061027f6110a0565b3480156105d757600080fd5b506102e46105e6366004612432565b6110af565b3480156105f757600080fd5b506102e4610606366004612365565b611145565b34801561061757600080fd5b5061027f6106263660046124d9565b61118f565b34801561063757600080fd5b506102e461064636600461252c565b6112f6565b34801561065757600080fd5b506102e461066636600461252c565b61139d565b34801561067757600080fd5b506102556106863660046122f6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102e46106c2366004612498565b6113e0565b3480156106d357600080fd5b506102e46106e23660046122db565b6115ff565b3480156106f357600080fd5b506102e46107023660046124d9565b6116a0565b60006001600160e01b031982166380ac58cd60e01b148061073857506001600160e01b03198216635b5e139f60e01b145b8061075357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076890612705565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612705565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f682611736565b610813576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083a82610e07565b9050806001600160a01b0316836001600160a01b0316141561086f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108a6576108898133610686565b6108a6576040516367d9dca160e11b815260040160405180910390fd5b6108b1838383611761565b505050565b6108b18383836117bd565b6008546001600160a01b036101009091041633146108fa5760405162461bcd60e51b81526004016108f19061261f565b60405180910390fd5b600181101561094b5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c656173742031000000000060448201526064016108f1565b600f55565b600061095b83610eb4565b82106109b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f1565b60006109c36001546000540390565b905060008060005b83811015610a7f57600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610a3057805192505b876001600160a01b0316836001600160a01b03161415610a6c5786841415610a5e5750935061075392505050565b83610a6881612740565b9450505b5080610a7781612740565b9150506109cb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f1565b6008546001600160a01b03610100909104163314610b0f5760405162461bcd60e51b81526004016108f19061261f565b6000610b1e6001546000540390565b90507f0000000000000000000000000000000000000000000000000000000000000000610b4b8383612696565b1115610b695760405162461bcd60e51b81526004016108f190612654565b600f54610b76908361275b565b15610bd85760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108f1565b6000600f5483610be891906126ae565b905060005b81811015610c1357610c0133600f546119aa565b80610c0b81612740565b915050610bed565b507f52579c243ddd3696f76a3f4cdde8ef8ad867784bfbba7f8b60eb1439eba54ee183610c436001546000540390565b6040805192835260208301919091520160405180910390a1505050565b6008546001600160a01b03610100909104163314610c905760405162461bcd60e51b81526004016108f19061261f565b610c986119c4565b565b6108b183838360405180602001604052806000815250611145565b6008546001600160a01b03610100909104163314610ce55760405162461bcd60e51b81526004016108f19061261f565b600e55565b6008546001600160a01b03610100909104163314610d1a5760405162461bcd60e51b81526004016108f19061261f565b8051610d2d90600b906020840190612166565b5050565b600a54600090610d835760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f74207365742100000000000000000060448201526064016108f1565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610dfe84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a57565b95945050505050565b6000610e1282611a6d565b5192915050565b600c8054610e2690612705565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5290612705565b8015610e9f5780601f10610e7457610100808354040283529160200191610e9f565b820191906000526020600020905b815481529060010190602001808311610e8257829003601f168201915b505050505081565b600b8054610e2690612705565b60006001600160a01b038216610edd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03610100909104163314610f325760405162461bcd60e51b81526004016108f19061261f565b610c986000611b87565b6008546001600160a01b03610100909104163314610f6c5760405162461bcd60e51b81526004016108f19061261f565b600a54811415610fbe5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e67656421000060448201526064016108f1565b600a55565b6008546001600160a01b03610100909104163314610ff35760405162461bcd60e51b81526004016108f19061261f565b610c98611be1565b6008546001600160a01b0361010090910416331461102b5760405162461bcd60e51b81526004016108f19061261f565b6002600954141561107e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f1565b6002600955478061108e57600080fd5b6110983347611c5c565b506001600955565b60606003805461076890612705565b6001600160a01b0382163314156110d95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111508484846117bd565b6001600160a01b0383163b156111895761116c84848484611cf2565b611189576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061119a82611736565b6111fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f1565b600d5460ff1661129a57600c805461121590612705565b80601f016020809104026020016040519081016040528092919081815260200182805461124190612705565b801561128e5780601f106112635761010080835404028352916020019161128e565b820191906000526020600020905b81548152906001019060200180831161127157829003601f168201915b50505050509050919050565b60006112a4611dea565b905060008151116112c457604051806020016040528060008152506112ef565b806112ce84611df9565b6040516020016112df9291906125a0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b036101009091041633146113265760405162461bcd60e51b81526004016108f19061261f565b600d5460ff16156113795760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c6564000000000060448201526064016108f1565b805161138c90600b906020840190612166565b5050600d805460ff19166001179055565b6008546001600160a01b036101009091041633146113cd5760405162461bcd60e51b81526004016108f19061261f565b8051610d2d90600c906020840190612166565b32331461142f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f1565b60085460ff16156114755760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f1565b3360006114856001546000540390565b9050611492828585610d31565b6114de5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e2057686974656c697374210000000060448201526064016108f1565b6010546114ea83610eb4565b6114f5906001612696565b111561155c5760405162461bcd60e51b815260206004820152603060248201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60448201526f756d20616c6c6f776564206d696e747360801b60648201526084016108f1565b7f0000000000000000000000000000000000000000000000000000000000000000611588826001612696565b11156115a65760405162461bcd60e51b81526004016108f190612654565b6115b18260016119aa565b7f52579c243ddd3696f76a3f4cdde8ef8ad867784bfbba7f8b60eb1439eba54ee160016115e16001546000540390565b6040805192835260208301919091520160405180910390a150505050565b6008546001600160a01b0361010090910416331461162f5760405162461bcd60e51b81526004016108f19061261f565b6001600160a01b0381166116945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f1565b61169d81611b87565b50565b6008546001600160a01b036101009091041633146116d05760405162461bcd60e51b81526004016108f19061261f565b60018110156117315760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b60648201526084016108f1565b601055565b6000805482108015610753575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117c882611a6d565b9050836001600160a01b031681600001516001600160a01b0316146117ff5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061181d575061181d8533610686565b8061183857503361182d846107eb565b6001600160a01b0316145b90508061185857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661187f57604051633a954ecd60e21b815260040160405180910390fd5b61188b60008487611761565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661195f57600054821461195f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610d2d828260405180602001604052806000815250611ef6565b60085460ff16611a0d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108f1565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082611a6485846120ba565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015611b6e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b6c5780516001600160a01b031615611b03579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b67579392505050565b611b03565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff1615611c275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f1565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a3a3390565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ca9576040519150601f19603f3d011682016040523d82523d6000602084013e611cae565b606091505b50509050806108b15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108f1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d279033908990889088906004016125cf565b602060405180830381600087803b158015611d4157600080fd5b505af1925050508015611d71575060408051601f3d908101601f19168201909252611d6e9181019061250f565b60015b611dcc573d808015611d9f576040519150601f19603f3d011682016040523d82523d6000602084013e611da4565b606091505b508051611dc4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461076890612705565b606081611e1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e475780611e3181612740565b9150611e409050600a836126ae565b9150611e21565b6000816001600160401b03811115611e6157611e616127b1565b6040519080825280601f01601f191660200182016040528015611e8b576020820181803683370190505b5090505b8415611de257611ea06001836126c2565b9150611ead600a8661275b565b611eb8906030612696565b60f81b818381518110611ecd57611ecd61279b565b60200101906001600160f81b031916908160001a905350611eef600a866126ae565b9450611e8f565b6000546001600160a01b038416611f1f57604051622e076360e81b815260040160405180910390fd5b82611f3d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612065575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461202e6000878480600101955087611cf2565b61204b576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fe357826000541461206057600080fd5b6120aa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612066575b5060009081556111899085838684565b600081815b845181101561215e5760008582815181106120dc576120dc61279b565b6020026020010151905080831161211e57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061214b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061215681612740565b9150506120bf565b509392505050565b82805461217290612705565b90600052602060002090601f01602090048101928261219457600085556121da565b82601f106121ad57805160ff19168380011785556121da565b828001600101855582156121da579182015b828111156121da5782518255916020019190600101906121bf565b506121e69291506121ea565b5090565b5b808211156121e657600081556001016121eb565b60006001600160401b0380841115612219576122196127b1565b604051601f8501601f19908116603f01168101908282118183101715612241576122416127b1565b8160405280935085815286868601111561225a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461228b57600080fd5b919050565b60008083601f8401126122a257600080fd5b5081356001600160401b038111156122b957600080fd5b6020830191508360208260051b85010111156122d457600080fd5b9250929050565b6000602082840312156122ed57600080fd5b6112ef82612274565b6000806040838503121561230957600080fd5b61231283612274565b915061232060208401612274565b90509250929050565b60008060006060848603121561233e57600080fd5b61234784612274565b925061235560208501612274565b9150604084013590509250925092565b6000806000806080858703121561237b57600080fd5b61238485612274565b935061239260208601612274565b92506040850135915060608501356001600160401b038111156123b457600080fd5b8501601f810187136123c557600080fd5b6123d4878235602084016121ff565b91505092959194509250565b6000806000604084860312156123f557600080fd5b6123fe84612274565b925060208401356001600160401b0381111561241957600080fd5b61242586828701612290565b9497909650939450505050565b6000806040838503121561244557600080fd5b61244e83612274565b91506020830135801515811461246357600080fd5b809150509250929050565b6000806040838503121561248157600080fd5b61248a83612274565b946020939093013593505050565b600080602083850312156124ab57600080fd5b82356001600160401b038111156124c157600080fd5b6124cd85828601612290565b90969095509350505050565b6000602082840312156124eb57600080fd5b5035919050565b60006020828403121561250457600080fd5b81356112ef816127c7565b60006020828403121561252157600080fd5b81516112ef816127c7565b60006020828403121561253e57600080fd5b81356001600160401b0381111561255457600080fd5b8201601f8101841361256557600080fd5b611de2848235602084016121ff565b6000815180845261258c8160208601602086016126d9565b601f01601f19169290920160200192915050565b600083516125b28184602088016126d9565b8351908301906125c68183602088016126d9565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260290830184612574565b9695505050505050565b6020815260006112ef6020830184612574565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f662033604082015261070760f31b606082015260800190565b600082198211156126a9576126a961276f565b500190565b6000826126bd576126bd612785565b500490565b6000828210156126d4576126d461276f565b500390565b60005b838110156126f45781810151838201526020016126dc565b838111156111895750506000910152565b600181811c9082168061271957607f821691505b6020821081141561273a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127545761275461276f565b5060010190565b60008261276a5761276a612785565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461169d57600080fdfea26469706673582212203917ca6d7108e312da037ea66226ee449c341df2d23d554a92a90c7cd17f338f64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000184000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f687a676264616f2e6d7970696e6174612e636c6f75642f697066732f516d536e7635665638626b686269503376444d46573734756d556b74346655555a7a77643376764b624e4c4279570000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80635c975abb1161012e57806395d89b41116100ab578063d07a34201161006f578063d07a34201461064b578063e985e9c51461066b578063ee4aa004146106b4578063f2fde38b146106c7578063f39d1007146106e757600080fd5b806395d89b41146105b6578063a22cb465146105cb578063b88d4fde146105eb578063c87b56dd1461060b578063cff449231461062b57600080fd5b8063715018a6116100f2578063715018a6146105345780637cb64759146105495780638456cb5914610569578063853828b61461057e5780638da5cb5b1461059357600080fd5b80635c975abb146104b25780636352211e146104ca57806363c4cd9a146104ea5780636c0360eb146104ff57806370a082311461051457600080fd5b80632f745c59116101bc57806345c0f5331161018057806345c0f5331461040e5780634e1113d21461044257806354214f691461045857806355f804b3146104725780635a23dd991461049257600080fd5b80632f745c5914610379578063375a069a146103995780633f4ba83a146103b957806342842e0e146103ce57806344a0d68a146103ee57600080fd5b806313faede61161020357806313faede6146102e657806318160ddd1461030a57806323b872dd146103235780632913daa0146103435780632b26a6bf1461035957600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046124f2565b610707565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610759565b604051610261919061260c565b34801561029857600080fd5b506102ac6102a73660046124d9565b6107eb565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461246e565b61082f565b005b3480156102f257600080fd5b506102fc600e5481565b604051908152602001610261565b34801561031657600080fd5b50600154600054036102fc565b34801561032f57600080fd5b506102e461033e366004612329565b6108b6565b34801561034f57600080fd5b506102fc600f5481565b34801561036557600080fd5b506102e46103743660046124d9565b6108c1565b34801561038557600080fd5b506102fc61039436600461246e565b610950565b3480156103a557600080fd5b506102e46103b43660046124d9565b610adf565b3480156103c557600080fd5b506102e4610c60565b3480156103da57600080fd5b506102e46103e9366004612329565b610c9a565b3480156103fa57600080fd5b506102e46104093660046124d9565b610cb5565b34801561041a57600080fd5b506102fc7f000000000000000000000000000000000000000000000000000000000000018481565b34801561044e57600080fd5b506102fc60105481565b34801561046457600080fd5b50600d546102559060ff1681565b34801561047e57600080fd5b506102e461048d36600461252c565b610cea565b34801561049e57600080fd5b506102556104ad3660046123e0565b610d31565b3480156104be57600080fd5b5060085460ff16610255565b3480156104d657600080fd5b506102ac6104e53660046124d9565b610e07565b3480156104f657600080fd5b5061027f610e19565b34801561050b57600080fd5b5061027f610ea7565b34801561052057600080fd5b506102fc61052f3660046122db565b610eb4565b34801561054057600080fd5b506102e4610f02565b34801561055557600080fd5b506102e46105643660046124d9565b610f3c565b34801561057557600080fd5b506102e4610fc3565b34801561058a57600080fd5b506102e4610ffb565b34801561059f57600080fd5b5060085461010090046001600160a01b03166102ac565b3480156105c257600080fd5b5061027f6110a0565b3480156105d757600080fd5b506102e46105e6366004612432565b6110af565b3480156105f757600080fd5b506102e4610606366004612365565b611145565b34801561061757600080fd5b5061027f6106263660046124d9565b61118f565b34801561063757600080fd5b506102e461064636600461252c565b6112f6565b34801561065757600080fd5b506102e461066636600461252c565b61139d565b34801561067757600080fd5b506102556106863660046122f6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102e46106c2366004612498565b6113e0565b3480156106d357600080fd5b506102e46106e23660046122db565b6115ff565b3480156106f357600080fd5b506102e46107023660046124d9565b6116a0565b60006001600160e01b031982166380ac58cd60e01b148061073857506001600160e01b03198216635b5e139f60e01b145b8061075357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076890612705565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612705565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f682611736565b610813576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083a82610e07565b9050806001600160a01b0316836001600160a01b0316141561086f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108a6576108898133610686565b6108a6576040516367d9dca160e11b815260040160405180910390fd5b6108b1838383611761565b505050565b6108b18383836117bd565b6008546001600160a01b036101009091041633146108fa5760405162461bcd60e51b81526004016108f19061261f565b60405180910390fd5b600181101561094b5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c656173742031000000000060448201526064016108f1565b600f55565b600061095b83610eb4565b82106109b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f1565b60006109c36001546000540390565b905060008060005b83811015610a7f57600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610a3057805192505b876001600160a01b0316836001600160a01b03161415610a6c5786841415610a5e5750935061075392505050565b83610a6881612740565b9450505b5080610a7781612740565b9150506109cb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f1565b6008546001600160a01b03610100909104163314610b0f5760405162461bcd60e51b81526004016108f19061261f565b6000610b1e6001546000540390565b90507f0000000000000000000000000000000000000000000000000000000000000184610b4b8383612696565b1115610b695760405162461bcd60e51b81526004016108f190612654565b600f54610b76908361275b565b15610bd85760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108f1565b6000600f5483610be891906126ae565b905060005b81811015610c1357610c0133600f546119aa565b80610c0b81612740565b915050610bed565b507f52579c243ddd3696f76a3f4cdde8ef8ad867784bfbba7f8b60eb1439eba54ee183610c436001546000540390565b6040805192835260208301919091520160405180910390a1505050565b6008546001600160a01b03610100909104163314610c905760405162461bcd60e51b81526004016108f19061261f565b610c986119c4565b565b6108b183838360405180602001604052806000815250611145565b6008546001600160a01b03610100909104163314610ce55760405162461bcd60e51b81526004016108f19061261f565b600e55565b6008546001600160a01b03610100909104163314610d1a5760405162461bcd60e51b81526004016108f19061261f565b8051610d2d90600b906020840190612166565b5050565b600a54600090610d835760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f74207365742100000000000000000060448201526064016108f1565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610dfe84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a57565b95945050505050565b6000610e1282611a6d565b5192915050565b600c8054610e2690612705565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5290612705565b8015610e9f5780601f10610e7457610100808354040283529160200191610e9f565b820191906000526020600020905b815481529060010190602001808311610e8257829003601f168201915b505050505081565b600b8054610e2690612705565b60006001600160a01b038216610edd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03610100909104163314610f325760405162461bcd60e51b81526004016108f19061261f565b610c986000611b87565b6008546001600160a01b03610100909104163314610f6c5760405162461bcd60e51b81526004016108f19061261f565b600a54811415610fbe5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e67656421000060448201526064016108f1565b600a55565b6008546001600160a01b03610100909104163314610ff35760405162461bcd60e51b81526004016108f19061261f565b610c98611be1565b6008546001600160a01b0361010090910416331461102b5760405162461bcd60e51b81526004016108f19061261f565b6002600954141561107e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108f1565b6002600955478061108e57600080fd5b6110983347611c5c565b506001600955565b60606003805461076890612705565b6001600160a01b0382163314156110d95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111508484846117bd565b6001600160a01b0383163b156111895761116c84848484611cf2565b611189576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061119a82611736565b6111fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f1565b600d5460ff1661129a57600c805461121590612705565b80601f016020809104026020016040519081016040528092919081815260200182805461124190612705565b801561128e5780601f106112635761010080835404028352916020019161128e565b820191906000526020600020905b81548152906001019060200180831161127157829003601f168201915b50505050509050919050565b60006112a4611dea565b905060008151116112c457604051806020016040528060008152506112ef565b806112ce84611df9565b6040516020016112df9291906125a0565b6040516020818303038152906040525b9392505050565b6008546001600160a01b036101009091041633146113265760405162461bcd60e51b81526004016108f19061261f565b600d5460ff16156113795760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c6564000000000060448201526064016108f1565b805161138c90600b906020840190612166565b5050600d805460ff19166001179055565b6008546001600160a01b036101009091041633146113cd5760405162461bcd60e51b81526004016108f19061261f565b8051610d2d90600c906020840190612166565b32331461142f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f1565b60085460ff16156114755760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f1565b3360006114856001546000540390565b9050611492828585610d31565b6114de5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e2057686974656c697374210000000060448201526064016108f1565b6010546114ea83610eb4565b6114f5906001612696565b111561155c5760405162461bcd60e51b815260206004820152603060248201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60448201526f756d20616c6c6f776564206d696e747360801b60648201526084016108f1565b7f0000000000000000000000000000000000000000000000000000000000000184611588826001612696565b11156115a65760405162461bcd60e51b81526004016108f190612654565b6115b18260016119aa565b7f52579c243ddd3696f76a3f4cdde8ef8ad867784bfbba7f8b60eb1439eba54ee160016115e16001546000540390565b6040805192835260208301919091520160405180910390a150505050565b6008546001600160a01b0361010090910416331461162f5760405162461bcd60e51b81526004016108f19061261f565b6001600160a01b0381166116945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f1565b61169d81611b87565b50565b6008546001600160a01b036101009091041633146116d05760405162461bcd60e51b81526004016108f19061261f565b60018110156117315760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b60648201526084016108f1565b601055565b6000805482108015610753575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117c882611a6d565b9050836001600160a01b031681600001516001600160a01b0316146117ff5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061181d575061181d8533610686565b8061183857503361182d846107eb565b6001600160a01b0316145b90508061185857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661187f57604051633a954ecd60e21b815260040160405180910390fd5b61188b60008487611761565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661195f57600054821461195f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610d2d828260405180602001604052806000815250611ef6565b60085460ff16611a0d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108f1565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600082611a6485846120ba565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015611b6e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b6c5780516001600160a01b031615611b03579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b67579392505050565b611b03565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460ff1615611c275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f1565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a3a3390565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611ca9576040519150601f19603f3d011682016040523d82523d6000602084013e611cae565b606091505b50509050806108b15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108f1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d279033908990889088906004016125cf565b602060405180830381600087803b158015611d4157600080fd5b505af1925050508015611d71575060408051601f3d908101601f19168201909252611d6e9181019061250f565b60015b611dcc573d808015611d9f576040519150601f19603f3d011682016040523d82523d6000602084013e611da4565b606091505b508051611dc4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461076890612705565b606081611e1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e475780611e3181612740565b9150611e409050600a836126ae565b9150611e21565b6000816001600160401b03811115611e6157611e616127b1565b6040519080825280601f01601f191660200182016040528015611e8b576020820181803683370190505b5090505b8415611de257611ea06001836126c2565b9150611ead600a8661275b565b611eb8906030612696565b60f81b818381518110611ecd57611ecd61279b565b60200101906001600160f81b031916908160001a905350611eef600a866126ae565b9450611e8f565b6000546001600160a01b038416611f1f57604051622e076360e81b815260040160405180910390fd5b82611f3d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612065575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461202e6000878480600101955087611cf2565b61204b576040516368d2bf6b60e11b815260040160405180910390fd5b808210611fe357826000541461206057600080fd5b6120aa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612066575b5060009081556111899085838684565b600081815b845181101561215e5760008582815181106120dc576120dc61279b565b6020026020010151905080831161211e57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061214b565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061215681612740565b9150506120bf565b509392505050565b82805461217290612705565b90600052602060002090601f01602090048101928261219457600085556121da565b82601f106121ad57805160ff19168380011785556121da565b828001600101855582156121da579182015b828111156121da5782518255916020019190600101906121bf565b506121e69291506121ea565b5090565b5b808211156121e657600081556001016121eb565b60006001600160401b0380841115612219576122196127b1565b604051601f8501601f19908116603f01168101908282118183101715612241576122416127b1565b8160405280935085815286868601111561225a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461228b57600080fd5b919050565b60008083601f8401126122a257600080fd5b5081356001600160401b038111156122b957600080fd5b6020830191508360208260051b85010111156122d457600080fd5b9250929050565b6000602082840312156122ed57600080fd5b6112ef82612274565b6000806040838503121561230957600080fd5b61231283612274565b915061232060208401612274565b90509250929050565b60008060006060848603121561233e57600080fd5b61234784612274565b925061235560208501612274565b9150604084013590509250925092565b6000806000806080858703121561237b57600080fd5b61238485612274565b935061239260208601612274565b92506040850135915060608501356001600160401b038111156123b457600080fd5b8501601f810187136123c557600080fd5b6123d4878235602084016121ff565b91505092959194509250565b6000806000604084860312156123f557600080fd5b6123fe84612274565b925060208401356001600160401b0381111561241957600080fd5b61242586828701612290565b9497909650939450505050565b6000806040838503121561244557600080fd5b61244e83612274565b91506020830135801515811461246357600080fd5b809150509250929050565b6000806040838503121561248157600080fd5b61248a83612274565b946020939093013593505050565b600080602083850312156124ab57600080fd5b82356001600160401b038111156124c157600080fd5b6124cd85828601612290565b90969095509350505050565b6000602082840312156124eb57600080fd5b5035919050565b60006020828403121561250457600080fd5b81356112ef816127c7565b60006020828403121561252157600080fd5b81516112ef816127c7565b60006020828403121561253e57600080fd5b81356001600160401b0381111561255457600080fd5b8201601f8101841361256557600080fd5b611de2848235602084016121ff565b6000815180845261258c8160208601602086016126d9565b601f01601f19169290920160200192915050565b600083516125b28184602088016126d9565b8351908301906125c68183602088016126d9565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260290830184612574565b9695505050505050565b6020815260006112ef6020830184612574565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f662033604082015261070760f31b606082015260800190565b600082198211156126a9576126a961276f565b500190565b6000826126bd576126bd612785565b500490565b6000828210156126d4576126d461276f565b500390565b60005b838110156126f45781810151838201526020016126dc565b838111156111895750506000910152565b600181811c9082168061271957607f821691505b6020821081141561273a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127545761275461276f565b5060010190565b60008261276a5761276a612785565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461169d57600080fdfea26469706673582212203917ca6d7108e312da037ea66226ee449c341df2d23d554a92a90c7cd17f338f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000184000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f687a676264616f2e6d7970696e6174612e636c6f75642f697066732f516d536e7635665638626b686269503376444d46573734756d556b74346655555a7a77643376764b624e4c4279570000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 4
Arg [1] : collectionSize_ (uint256): 388
Arg [2] : baseURI_ (string):
Arg [3] : veiledBaseURI_ (string): https://hzgbdao.mypinata.cloud/ipfs/QmSnv5fV8bkhbiP3vDMFW74umUkt4fUUZzwd3vvKbNLByW

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000184
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [6] : 68747470733a2f2f687a676264616f2e6d7970696e6174612e636c6f75642f69
Arg [7] : 7066732f516d536e7635665638626b686269503376444d46573734756d556b74
Arg [8] : 346655555a7a77643376764b624e4c4279570000000000000000000000000000


Deployed Bytecode Sourcemap

63100:6907:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43409:355;;;;;;;;;;-1:-1:-1;43409:355:0;;;;;:::i;:::-;;:::i;:::-;;;7857:14:1;;7850:22;7832:41;;7820:2;7805:18;43409:355:0;;;;;;;;46695:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48318:245::-;;;;;;;;;;-1:-1:-1;48318:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7155:32:1;;;7137:51;;7125:2;7110:18;48318:245:0;6991:203:1;47858:394:0;;;;;;;;;;-1:-1:-1;47858:394:0;;;;;:::i;:::-;;:::i;:::-;;63388:31;;;;;;;;;;;;;;;;;;;15696:25:1;;;15684:2;15669:18;63388:31:0;15550:177:1;42649:312:0;;;;;;;;;;-1:-1:-1;42912:12:0;;42702:7;42896:13;:28;42649:312;;49306:170;;;;;;;;;;-1:-1:-1;49306:170:0;;;;;:::i;:::-;;:::i;63428:27::-;;;;;;;;;;;;;;;;67420:174;;;;;;;;;;-1:-1:-1;67420:174:0;;;;;:::i;:::-;;:::i;65094:848::-;;;;;;;;;;-1:-1:-1;65094:848:0;;;;;:::i;:::-;;:::i;69420:584::-;;;;;;;;;;-1:-1:-1;69420:584:0;;;;;:::i;:::-;;:::i;66429:67::-;;;;;;;;;;;;;:::i;49547:185::-;;;;;;;;;;-1:-1:-1;49547:185:0;;;;;:::i;:::-;;:::i;66504:82::-;;;;;;;;;;-1:-1:-1;66504:82:0;;;;;:::i;:::-;;:::i;63462:39::-;;;;;;;;;;;;;;;63510:32;;;;;;;;;;;;;;;;63349:30;;;;;;;;;;-1:-1:-1;63349:30:0;;;;;;;;66594:98;;;;;;;;;;-1:-1:-1;66594:98:0;;;;;:::i;:::-;;:::i;68319:326::-;;;;;;;;;;-1:-1:-1;68319:326:0;;;;;:::i;:::-;;:::i;16393:86::-;;;;;;;;;;-1:-1:-1;16464:7:0;;;;16393:86;;46503:125;;;;;;;;;;-1:-1:-1;46503:125:0;;;;;:::i;:::-;;:::i;63315:27::-;;;;;;;;;;;;;:::i;63287:21::-;;;;;;;;;;;;;:::i;43828:206::-;;;;;;;;;;-1:-1:-1;43828:206:0;;;;;:::i;:::-;;:::i;19313:103::-;;;;;;;;;;;;;:::i;67602:194::-;;;;;;;;;;-1:-1:-1;67602:194:0;;;;;:::i;:::-;;:::i;66360:61::-;;;;;;;;;;;;;:::i;67016:200::-;;;;;;;;;;;;;:::i;18662:87::-;;;;;;;;;;-1:-1:-1;18735:6:0;;;;;-1:-1:-1;;;;;18735:6:0;18662:87;;46864:104;;;;;;;;;;;;;:::i;48635:319::-;;;;;;;;;;-1:-1:-1;48635:319:0;;;;;:::i;:::-;;:::i;49803:392::-;;;;;;;;;;-1:-1:-1;49803:392:0;;;;;:::i;:::-;;:::i;64549:537::-;;;;;;;;;;-1:-1:-1;64549:537:0;;;;;:::i;:::-;;:::i;66142:210::-;;;;;;;;;;-1:-1:-1;66142:210:0;;;;;:::i;:::-;;:::i;66700:110::-;;;;;;;;;;-1:-1:-1;66700:110:0;;;;;:::i;:::-;;:::i;49025:214::-;;;;;;;;;;-1:-1:-1;49025:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;49196:25:0;;;49167:4;49196:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49025:214;68653:718;;;;;;:::i;:::-;;:::i;19571:238::-;;;;;;;;;;-1:-1:-1;19571:238:0;;;;;:::i;:::-;;:::i;67224:188::-;;;;;;;;;;-1:-1:-1;67224:188:0;;;;;:::i;:::-;;:::i;43409:355::-;43556:4;-1:-1:-1;;;;;;43598:40:0;;-1:-1:-1;;;43598:40:0;;:105;;-1:-1:-1;;;;;;;43655:48:0;;-1:-1:-1;;;43655:48:0;43598:105;:158;;;-1:-1:-1;;;;;;;;;;31747:40:0;;;43720:36;43578:178;43409:355;-1:-1:-1;;43409:355:0:o;46695:100::-;46749:13;46782:5;46775:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46695:100;:::o;48318:245::-;48422:7;48452:16;48460:7;48452;:16::i;:::-;48447:64;;48477:34;;-1:-1:-1;;;48477:34:0;;;;;;;;;;;48447:64;-1:-1:-1;48531:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48531:24:0;;48318:245::o;47858:394::-;47931:13;47947:24;47963:7;47947:15;:24::i;:::-;47931:40;;47992:5;-1:-1:-1;;;;;47986:11:0;:2;-1:-1:-1;;;;;47986:11:0;;47982:48;;;48006:24;;-1:-1:-1;;;48006:24:0;;;;;;;;;;;47982:48;15131:10;-1:-1:-1;;;;;48047:21:0;;;48043:161;;48088:37;48105:5;15131:10;49025:214;:::i;48088:37::-;48083:121;;48153:35;;-1:-1:-1;;;48153:35:0;;;;;;;;;;;48083:121;48216:28;48225:2;48229:7;48238:5;48216:8;:28::i;:::-;47920:332;47858:394;;:::o;49306:170::-;49440:28;49450:4;49456:2;49460:7;49440:9;:28::i;67420:174::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;;;;;;;;;67517:1:::1;67503:10;:15;;67495:55;;;::::0;-1:-1:-1;;;67495:55:0;;8974:2:1;67495:55:0::1;::::0;::::1;8956:21:1::0;9013:2;8993:18;;;8986:30;9052:29;9032:18;;;9025:57;9099:18;;67495:55:0::1;8772:351:1::0;67495:55:0::1;67561:12;:25:::0;67420:174::o;65094:848::-;65203:7;65244:16;65254:5;65244:9;:16::i;:::-;65236:5;:24;65228:71;;;;-1:-1:-1;;;65228:71:0;;8571:2:1;65228:71:0;;;8553:21:1;8610:2;8590:18;;;8583:30;8649:34;8629:18;;;8622:62;-1:-1:-1;;;8700:18:1;;;8693:32;8742:19;;65228:71:0;8369:398:1;65228:71:0;65310:22;65335:13;42912:12;;42702:7;42896:13;:28;;42649:312;65335:13;65310:38;;65359:19;65393:25;65447:9;65442:426;65466:14;65462:1;:18;65442:426;;;65502:31;65536:14;;;:11;:14;;;;;;;;;65502:48;;;;;;;;;-1:-1:-1;;;;;65502:48:0;;;;;-1:-1:-1;;;65502:48:0;;-1:-1:-1;;;;;65502:48:0;;;;;;;;-1:-1:-1;;;65502:48:0;;;;;;;;;;;;;65569:28;65565:103;;65638:14;;;-1:-1:-1;65565:103:0;65707:5;-1:-1:-1;;;;;65686:26:0;:17;-1:-1:-1;;;;;65686:26:0;;65682:175;;;65752:5;65737:11;:20;65733:77;;;-1:-1:-1;65789:1:0;-1:-1:-1;65782:8:0;;-1:-1:-1;;;65782:8:0;65733:77;65828:13;;;;:::i;:::-;;;;65682:175;-1:-1:-1;65482:3:0;;;;:::i;:::-;;;;65442:426;;;-1:-1:-1;65878:56:0;;-1:-1:-1;;;65878:56:0;;14977:2:1;65878:56:0;;;14959:21:1;15016:2;14996:18;;;14989:30;15055:34;15035:18;;;15028:62;-1:-1:-1;;;15106:18:1;;;15099:44;15160:19;;65878:56:0;14775:410:1;69420:584:0;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;69483:20:::1;69506:13;42912:12:::0;;42702:7;42896:13;:28;;42649:312;69506:13:::1;69483:36:::0;-1:-1:-1;69577:14:0::1;69552:21;69567:6:::0;69483:36;69552:21:::1;:::i;:::-;:39;;69530:123;;;;-1:-1:-1::0;;;69530:123:0::1;;;;;;;:::i;:::-;69695:12;::::0;69686:21:::1;::::0;:6;:21:::1;:::i;:::-;:26:::0;69664:120:::1;;;::::0;-1:-1:-1;;;69664:120:0;;10438:2:1;69664:120:0::1;::::0;::::1;10420:21:1::0;10477:2;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;-1:-1:-1;;;10567:18:1;;;10560:42;10619:19;;69664:120:0::1;10236:408:1::0;69664:120:0::1;69795:17;69824:12;;69815:6;:21;;;;:::i;:::-;69795:41;;69852:9;69847:102;69871:9;69867:1;:13;69847:102;;;69902:35;69912:10;69924:12;;69902:9;:35::i;:::-;69882:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69847:102;;;;69964:32;69974:6;69982:13;42912:12:::0;;42702:7;42896:13;:28;;42649:312;69982:13:::1;69964:32;::::0;;8066:25:1;;;8122:2;8107:18;;8100:34;;;;8039:18;69964:32:0::1;;;;;;;69472:532;;69420:584:::0;:::o;66429:67::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;66478:10:::1;:8;:10::i;:::-;66429:67::o:0;49547:185::-;49685:39;49702:4;49708:2;49712:7;49685:39;;;;;;;;;;;;:16;:39::i;66504:82::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;66566:4:::1;:12:::0;66504:82::o;66594:98::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;66666:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;66594:98:::0;:::o;68319:326::-;68466:10;;68436:4;;68458:51;;;;-1:-1:-1;;;68458:51:0;;9330:2:1;68458:51:0;;;9312:21:1;9369:2;9349:18;;;9342:30;9408:25;9388:18;;;9381:53;9451:18;;68458:51:0;9128:347:1;68458:51:0;68545:21;;-1:-1:-1;;5969:2:1;5965:15;;;5961:53;68545:21:0;;;5949:66:1;68520:12:0;;6031::1;;68545:21:0;;;;;;;;;;;;68535:32;;;;;;68520:47;;68587:50;68606:12;;68587:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68620:10:0;;;-1:-1:-1;68632:4:0;;-1:-1:-1;68587:18:0;:50::i;:::-;68580:57;68319:326;-1:-1:-1;;;;;68319:326:0:o;46503:125::-;46567:7;46594:21;46607:7;46594:12;:21::i;:::-;:26;;46503:125;-1:-1:-1;;46503:125:0:o;63315:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63287:21::-;;;;;;;:::i;43828:206::-;43892:7;-1:-1:-1;;;;;43916:19:0;;43912:60;;43944:28;;-1:-1:-1;;;43944:28:0;;;;;;;;;;;43912:60;-1:-1:-1;;;;;;43998:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43998:27:0;;43828:206::o;19313:103::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;19378:30:::1;19405:1;19378:18;:30::i;67602:194::-:0;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;67705:10:::1;;67687:14;:28;;67679:71;;;::::0;-1:-1:-1;;;67679:71:0;;10851:2:1;67679:71:0::1;::::0;::::1;10833:21:1::0;10890:2;10870:18;;;10863:30;10929:32;10909:18;;;10902:60;10979:18;;67679:71:0::1;10649:354:1::0;67679:71:0::1;67761:10;:27:::0;67602:194::o;66360:61::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;66405:8:::1;:6;:8::i;67016:200::-:0;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;1810:1:::1;2408:7;;:19;;2400:63;;;::::0;-1:-1:-1;;;2400:63:0;;15392:2:1;2400:63:0::1;::::0;::::1;15374:21:1::0;15431:2;15411:18;;;15404:30;15470:33;15450:18;;;15443:61;15521:18;;2400:63:0::1;15190:355:1::0;2400:63:0::1;1810:1;2541:7;:18:::0;67100:21:::2;67140:11:::0;67132:20:::2;;;::::0;::::2;;67163:45;67174:10;67186:21;67163:10;:45::i;:::-;-1:-1:-1::0;1766:1:0::1;2720:7;:22:::0;67016:200::o;46864:104::-;46920:13;46953:7;46946:14;;;;;:::i;48635:319::-;-1:-1:-1;;;;;48766:24:0;;15131:10;48766:24;48762:54;;;48799:17;;-1:-1:-1;;;48799:17:0;;;;;;;;;;;48762:54;15131:10;48829:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;48829:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;48829:53:0;;;;;;;;;;48898:48;;7832:41:1;;;48829:42:0;;15131:10;48898:48;;7805:18:1;48898:48:0;;;;;;;48635:319;;:::o;49803:392::-;49970:28;49980:4;49986:2;49990:7;49970:9;:28::i;:::-;-1:-1:-1;;;;;50013:13:0;;21308:20;21356:8;50009:179;;50048:56;50079:4;50085:2;50089:7;50098:5;50048:30;:56::i;:::-;50043:145;;50132:40;;-1:-1:-1;;;50132:40:0;;;;;;;;;;;50043:145;49803:392;;;;:::o;64549:537::-;64659:13;64712:16;64720:7;64712;:16::i;:::-;64690:113;;;;-1:-1:-1;;;64690:113:0;;13100:2:1;64690:113:0;;;13082:21:1;13139:2;13119:18;;;13112:30;13178:34;13158:18;;;13151:62;-1:-1:-1;;;13229:18:1;;;13222:45;13284:19;;64690:113:0;12898:411:1;64690:113:0;64821:10;;;;64816:64;;64855:13;64848:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64549:537;;;:::o;64816:64::-;64890:22;64915:10;:8;:10::i;:::-;64890:35;;64981:1;64962:8;64956:22;:26;:122;;;;;;;;;;;;;;;;;65026:8;65036:18;:7;:16;:18::i;:::-;65009:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64956:122;64936:142;64549:537;-1:-1:-1;;;64549:537:0:o;66142:210::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;66228:10:::1;::::0;::::1;;:19;66220:59;;;::::0;-1:-1:-1;;;66220:59:0;;14621:2:1;66220:59:0::1;::::0;::::1;14603:21:1::0;14660:2;14640:18;;;14633:30;14699:29;14679:18;;;14672:57;14746:18;;66220:59:0::1;14419:351:1::0;66220:59:0::1;66290:26:::0;;::::1;::::0;:7:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;66327:10:0::1;:17:::0;;-1:-1:-1;;66327:17:0::1;66340:4;66327:17;::::0;;66142:210::o;66700:110::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;66778:24;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;68653:718::-:0;68039:9;68052:10;68039:23;68031:66;;;;-1:-1:-1;;;68031:66:0;;12035:2:1;68031:66:0;;;12017:21:1;12074:2;12054:18;;;12047:30;12113:32;12093:18;;;12086:60;12163:18;;68031:66:0;11833:354:1;68031:66:0;16464:7;;;;16718:9:::1;16710:38;;;::::0;-1:-1:-1;;;16710:38:0;;12394:2:1;16710:38:0::1;::::0;::::1;12376:21:1::0;12433:2;12413:18;;;12406:30;-1:-1:-1;;;12452:18:1;;;12445:46;12508:18;;16710:38:0::1;12192:340:1::0;16710:38:0::1;15131:10:::0;68807:14:::2;68870:13;42912:12:::0;;42702:7;42896:13;:28;;42649:312;68870:13:::2;68847:36;;68918:35;68932:6;68940:12;;68918:13;:35::i;:::-;68896:113;;;::::0;-1:-1:-1;;;68896:113:0;;13919:2:1;68896:113:0::2;::::0;::::2;13901:21:1::0;13958:2;13938:18;;;13931:30;13997;13977:18;;;13970:58;14045:18;;68896:113:0::2;13717:352:1::0;68896:113:0::2;69069:13;;69044:17;69054:6;69044:9;:17::i;:::-;:21;::::0;69064:1:::2;69044:21;:::i;:::-;:38;;69022:136;;;::::0;-1:-1:-1;;;69022:136:0;;11618:2:1;69022:136:0::2;::::0;::::2;11600:21:1::0;11657:2;11637:18;;;11630:30;11696:34;11676:18;;;11669:62;-1:-1:-1;;;11747:18:1;;;11740:46;11803:19;;69022:136:0::2;11416:412:1::0;69022:136:0::2;69213:14;69193:16;:12:::0;69208:1:::2;69193:16;:::i;:::-;:34;;69171:118;;;;-1:-1:-1::0;;;69171:118:0::2;;;;;;;:::i;:::-;69300:20;69310:6;69318:1;69300:9;:20::i;:::-;69336:27;69346:1;69349:13;42912:12:::0;;42702:7;42896:13;:28;;42649:312;69349:13:::2;69336:27;::::0;;8066:25:1;;;8122:2;8107:18;;8100:34;;;;8039:18;69336:27:0::2;;;;;;;68796:575;;68653:718:::0;;:::o;19571:238::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19674:22:0;::::1;19652:110;;;::::0;-1:-1:-1;;;19652:110:0;;10031:2:1;19652:110:0::1;::::0;::::1;10013:21:1::0;10070:2;10050:18;;;10043:30;10109:34;10089:18;;;10082:62;-1:-1:-1;;;10160:18:1;;;10153:36;10206:19;;19652:110:0::1;9829:402:1::0;19652:110:0::1;19773:28;19792:8;19773:18;:28::i;:::-;19571:238:::0;:::o;67224:188::-;18735:6;;-1:-1:-1;;;;;18735:6:0;;;;;15131:10;18882:23;18874:68;;;;-1:-1:-1;;;18874:68:0;;;;;;;:::i;:::-;67322:1:::1;67308:10;:15;;67300:67;;;::::0;-1:-1:-1;;;67300:67:0;;11210:2:1;67300:67:0::1;::::0;::::1;11192:21:1::0;11249:2;11229:18;;;11222:30;11288:34;11268:18;;;11261:62;-1:-1:-1;;;11339:18:1;;;11332:37;11386:19;;67300:67:0::1;11008:403:1::0;67300:67:0::1;67378:13;:26:::0;67224:188::o;50450:213::-;50507:4;50597:13;;50587:7;:23;50544:111;;;;-1:-1:-1;;50628:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;50628:27:0;;;;50627:28;;50450:213::o;59902:196::-;60017:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;60017:29:0;-1:-1:-1;;;;;60017:29:0;;;;;;;;;60062:28;;60017:24;;60062:28;;;;;;;59902:196;;;:::o;54850:2130::-;54965:35;55003:21;55016:7;55003:12;:21::i;:::-;54965:59;;55063:4;-1:-1:-1;;;;;55041:26:0;:13;:18;;;-1:-1:-1;;;;;55041:26:0;;55037:67;;55076:28;;-1:-1:-1;;;55076:28:0;;;;;;;;;;;55037:67;55117:22;15131:10;-1:-1:-1;;;;;55143:20:0;;;;:73;;-1:-1:-1;55180:36:0;55197:4;15131:10;49025:214;:::i;55180:36::-;55143:126;;;-1:-1:-1;15131:10:0;55233:20;55245:7;55233:11;:20::i;:::-;-1:-1:-1;;;;;55233:36:0;;55143:126;55117:153;;55288:17;55283:66;;55314:35;;-1:-1:-1;;;55314:35:0;;;;;;;;;;;55283:66;-1:-1:-1;;;;;55364:16:0;;55360:52;;55389:23;;-1:-1:-1;;;55389:23:0;;;;;;;;;;;55360:52;55533:35;55550:1;55554:7;55563:4;55533:8;:35::i;:::-;-1:-1:-1;;;;;55864:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;55864:31:0;;;-1:-1:-1;;;;;55864:31:0;;;-1:-1:-1;;55864:31:0;;;;;;;55910:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;55910:29:0;;;;;;;;;;;55990:20;;;:11;:20;;;;;;56025:18;;-1:-1:-1;;;;;;56058:49:0;;;;-1:-1:-1;;;56091:15:0;56058:49;;;;;;;;;;56381:11;;56441:24;;;;;56484:13;;55990:20;;56441:24;;56484:13;56480:384;;56694:13;;56679:11;:28;56675:174;;56732:20;;56801:28;;;;-1:-1:-1;;;;;56775:54:0;-1:-1:-1;;;56775:54:0;-1:-1:-1;;;;;;56775:54:0;;;-1:-1:-1;;;;;56732:20:0;;56775:54;;;;56675:174;55839:1036;;;56911:7;56907:2;-1:-1:-1;;;;;56892:27:0;56901:4;-1:-1:-1;;;;;56892:27:0;;;;;;;;;;;54954:2026;;54850:2130;;;:::o;50747:104::-;50816:27;50826:2;50830:8;50816:27;;;;;;;;;;;;:9;:27::i;17452:120::-;16464:7;;;;16988:41;;;;-1:-1:-1;;;16988:41:0;;9682:2:1;16988:41:0;;;9664:21:1;9721:2;9701:18;;;9694:30;-1:-1:-1;;;9740:18:1;;;9733:50;9800:18;;16988:41:0;9480:344:1;16988:41:0;17511:7:::1;:15:::0;;-1:-1:-1;;17511:15:0::1;::::0;;17542:22:::1;15131:10:::0;17551:12:::1;17542:22;::::0;-1:-1:-1;;;;;7155:32:1;;;7137:51;;7125:2;7110:18;17542:22:0::1;;;;;;;17452:120::o:0;10848:190::-;10973:4;11026;10997:25;11010:5;11017:4;10997:12;:25::i;:::-;:33;;10848:190;-1:-1:-1;;;;10848:190:0:o;45209:1232::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;45352:7:0;45454:13;;45447:4;:20;45443:931;;;45492:31;45526:17;;;:11;:17;;;;;;;;;45492:51;;;;;;;;;-1:-1:-1;;;;;45492:51:0;;;;-1:-1:-1;;;45492:51:0;;-1:-1:-1;;;;;45492:51:0;;;;;;;;-1:-1:-1;;;45492:51:0;;;;;;;;;;;;;;45566:789;;45620:14;;-1:-1:-1;;;;;45620:28:0;;45616:109;;45688:9;45209:1232;-1:-1:-1;;;45209:1232:0:o;45616:109::-;-1:-1:-1;;;46091:6:0;46140:17;;;;:11;:17;;;;;;;;;46128:29;;;;;;;;;-1:-1:-1;;;;;46128:29:0;;;;;-1:-1:-1;;;46128:29:0;;-1:-1:-1;;;;;46128:29:0;;;;;;;;-1:-1:-1;;;46128:29:0;;;;;;;;;;;;;46192:28;46188:117;;46264:9;45209:1232;-1:-1:-1;;;45209:1232:0:o;46188:117::-;46047:285;;;45469:905;45443:931;46402:31;;-1:-1:-1;;;46402:31:0;;;;;;;;;;;19969:191;20062:6;;;-1:-1:-1;;;;;20079:17:0;;;20062:6;20079:17;;;-1:-1:-1;;;;;;20079:17:0;;;;;;20112:40;;20062:6;;;;;;;;20112:40;;20043:16;;20112:40;20032:128;19969:191;:::o;17193:118::-;16464:7;;;;16718:9;16710:38;;;;-1:-1:-1;;;16710:38:0;;12394:2:1;16710:38:0;;;12376:21:1;12433:2;12413:18;;;12406:30;-1:-1:-1;;;12452:18:1;;;12445:46;12508:18;;16710:38:0;12192:340:1;16710:38:0;17253:7:::1;:14:::0;;-1:-1:-1;;17253:14:0::1;17263:4;17253:14;::::0;;17283:20:::1;17290:12;15131:10:::0;;15051:98;66818:190;66893:12;66919:8;-1:-1:-1;;;;;66911:22:0;66941:7;66911:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66892:61;;;66972:7;66964:36;;;;-1:-1:-1;;;66964:36:0;;14276:2:1;66964:36:0;;;14258:21:1;14315:2;14295:18;;;14288:30;-1:-1:-1;;;14334:18:1;;;14327:46;14390:18;;66964:36:0;14074:340:1;60590:772:0;60787:155;;-1:-1:-1;;;60787:155:0;;60753:4;;-1:-1:-1;;;;;60787:36:0;;;;;:155;;15131:10;;60873:4;;60896:7;;60922:5;;60787:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60787:155:0;;;;;;;;-1:-1:-1;;60787:155:0;;;;;;;;;;;;:::i;:::-;;;60770:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61113:13:0;;61109:235;;61159:40;;-1:-1:-1;;;61159:40:0;;;;;;;;;;;61109:235;61302:6;61296:13;61287:6;61283:2;61279:15;61272:38;60770:585;-1:-1:-1;;;;;;60998:55:0;-1:-1:-1;;;60998:55:0;;-1:-1:-1;60770:585:0;60590:772;;;;;;:::o;64249:100::-;64301:13;64334:7;64327:14;;;;;:::i;12583:723::-;12639:13;12860:10;12856:53;;-1:-1:-1;;12887:10:0;;;;;;;;;;;;-1:-1:-1;;;12887:10:0;;;;;12583:723::o;12856:53::-;12934:5;12919:12;12975:78;12982:9;;12975:78;;13008:8;;;;:::i;:::-;;-1:-1:-1;13031:10:0;;-1:-1:-1;13039:2:0;13031:10;;:::i;:::-;;;12975:78;;;13063:19;13095:6;-1:-1:-1;;;;;13085:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13085:17:0;;13063:39;;13113:154;13120:10;;13113:154;;13147:11;13157:1;13147:11;;:::i;:::-;;-1:-1:-1;13216:10:0;13224:2;13216:5;:10;:::i;:::-;13203:24;;:2;:24;:::i;:::-;13190:39;;13173:6;13180;13173:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13173:56:0;;;;;;;;-1:-1:-1;13244:11:0;13253:2;13244:11;;:::i;:::-;;;13113:154;;51224:1940;51347:20;51370:13;-1:-1:-1;;;;;51398:16:0;;51394:48;;51423:19;;-1:-1:-1;;;51423:19:0;;;;;;;;;;;51394:48;51457:13;51453:44;;51479:18;;-1:-1:-1;;;51479:18:0;;;;;;;;;;;51453:44;-1:-1:-1;;;;;51848:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;51907:49:0;;-1:-1:-1;;;;;51848:44:0;;;;;;;51907:49;;;;-1:-1:-1;;51848:44:0;;;;;;51907:49;;;;;;;;;;;;;;;;51973:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;52023:66:0;;;-1:-1:-1;;;52073:15:0;52023:66;;;;;;;;;;;;;51973:25;;52170:23;;;;21308:20;21356:8;52210:822;;52250:504;52281:38;;52306:12;;-1:-1:-1;;;;;52281:38:0;;;52298:1;;52281:38;;52298:1;;52281:38;52373:212;52442:1;52475:2;52508:14;;;;;;52553:5;52373:30;:212::i;:::-;52342:365;;52643:40;;-1:-1:-1;;;52643:40:0;;;;;;;;;;;52342:365;52749:3;52734:12;:18;52250:504;;52835:12;52818:13;;:29;52814:43;;52849:8;;;52814:43;52210:822;;;52898:119;52929:40;;52954:14;;;;;-1:-1:-1;;;;;52929:40:0;;;52946:1;;52929:40;;52946:1;;52929:40;53012:3;52997:12;:18;52898:119;;52210:822;-1:-1:-1;53046:13:0;:28;;;53096:60;;53129:2;53133:12;53147:8;53096:60;:::i;11400:813::-;11510:7;11558:4;11510:7;11573:603;11597:5;:12;11593:1;:16;11573:603;;;11631:20;11654:5;11660:1;11654:8;;;;;;;;:::i;:::-;;;;;;;11631:31;;11697:12;11681;:28;11677:488;;11856:44;;;;;;6211:19:1;;;6246:12;;;6239:28;;;6283:12;;11856:44:0;;;;;;;;;;;;11824:95;;;;;;11809:110;;11677:488;;;12086:44;;;;;;6211:19:1;;;6246:12;;;6239:28;;;6283:12;;12086:44:0;;;;;;;;;;;;12054:95;;;;;;12039:110;;11677:488;-1:-1:-1;11611:3:0;;;;:::i;:::-;;;;11573:603;;;-1:-1:-1;12193:12:0;11400:813;-1:-1:-1;;;11400:813:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:1;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:511::-;2755:6;2763;2771;2824:2;2812:9;2803:7;2799:23;2795:32;2792:52;;;2840:1;2837;2830:12;2792:52;2863:29;2882:9;2863:29;:::i;:::-;2853:39;;2943:2;2932:9;2928:18;2915:32;-1:-1:-1;;;;;2962:6:1;2959:30;2956:50;;;3002:1;2999;2992:12;2956:50;3041:70;3103:7;3094:6;3083:9;3079:22;3041:70;:::i;:::-;2660:511;;3130:8;;-1:-1:-1;3015:96:1;;-1:-1:-1;;;;2660:511:1:o;3176:347::-;3241:6;3249;3302:2;3290:9;3281:7;3277:23;3273:32;3270:52;;;3318:1;3315;3308:12;3270:52;3341:29;3360:9;3341:29;:::i;:::-;3331:39;;3420:2;3409:9;3405:18;3392:32;3467:5;3460:13;3453:21;3446:5;3443:32;3433:60;;3489:1;3486;3479:12;3433:60;3512:5;3502:15;;;3176:347;;;;;:::o;3528:254::-;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3696:29;3715:9;3696:29;:::i;:::-;3686:39;3772:2;3757:18;;;;3744:32;;-1:-1:-1;;;3528:254:1:o;3787:437::-;3873:6;3881;3934:2;3922:9;3913:7;3909:23;3905:32;3902:52;;;3950:1;3947;3940:12;3902:52;3990:9;3977:23;-1:-1:-1;;;;;4015:6:1;4012:30;4009:50;;;4055:1;4052;4045:12;4009:50;4094:70;4156:7;4147:6;4136:9;4132:22;4094:70;:::i;:::-;4183:8;;4068:96;;-1:-1:-1;3787:437:1;-1:-1:-1;;;;3787:437:1:o;4229:180::-;4288:6;4341:2;4329:9;4320:7;4316:23;4312:32;4309:52;;;4357:1;4354;4347:12;4309:52;-1:-1:-1;4380:23:1;;4229:180;-1:-1:-1;4229:180:1:o;4414:245::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4580:9;4567:23;4599:30;4623:5;4599:30;:::i;4664:249::-;4733:6;4786:2;4774:9;4765:7;4761:23;4757:32;4754:52;;;4802:1;4799;4792:12;4754:52;4834:9;4828:16;4853:30;4877:5;4853:30;:::i;4918:450::-;4987:6;5040:2;5028:9;5019:7;5015:23;5011:32;5008:52;;;5056:1;5053;5046:12;5008:52;5096:9;5083:23;-1:-1:-1;;;;;5121:6:1;5118:30;5115:50;;;5161:1;5158;5151:12;5115:50;5184:22;;5237:4;5229:13;;5225:27;-1:-1:-1;5215:55:1;;5266:1;5263;5256:12;5215:55;5289:73;5354:7;5349:2;5336:16;5331:2;5327;5323:11;5289:73;:::i;5558:257::-;5599:3;5637:5;5631:12;5664:6;5659:3;5652:19;5680:63;5736:6;5729:4;5724:3;5720:14;5713:4;5706:5;5702:16;5680:63;:::i;:::-;5797:2;5776:15;-1:-1:-1;;5772:29:1;5763:39;;;;5804:4;5759:50;;5558:257;-1:-1:-1;;5558:257:1:o;6306:470::-;6485:3;6523:6;6517:13;6539:53;6585:6;6580:3;6573:4;6565:6;6561:17;6539:53;:::i;:::-;6655:13;;6614:16;;;;6677:57;6655:13;6614:16;6711:4;6699:17;;6677:57;:::i;:::-;6750:20;;6306:470;-1:-1:-1;;;;6306:470:1:o;7199:488::-;-1:-1:-1;;;;;7468:15:1;;;7450:34;;7520:15;;7515:2;7500:18;;7493:43;7567:2;7552:18;;7545:34;;;7615:3;7610:2;7595:18;;7588:31;;;7393:4;;7636:45;;7661:19;;7653:6;7636:45;:::i;:::-;7628:53;7199:488;-1:-1:-1;;;;;;7199:488:1:o;8145:219::-;8294:2;8283:9;8276:21;8257:4;8314:44;8354:2;8343:9;8339:18;8331:6;8314:44;:::i;12537:356::-;12739:2;12721:21;;;12758:18;;;12751:30;12817:34;12812:2;12797:18;;12790:62;12884:2;12869:18;;12537:356::o;13314:398::-;13516:2;13498:21;;;13555:2;13535:18;;;13528:30;13594:34;13589:2;13574:18;;13567:62;-1:-1:-1;;;13660:2:1;13645:18;;13638:32;13702:3;13687:19;;13314:398::o;15985:128::-;16025:3;16056:1;16052:6;16049:1;16046:13;16043:39;;;16062:18;;:::i;:::-;-1:-1:-1;16098:9:1;;15985:128::o;16118:120::-;16158:1;16184;16174:35;;16189:18;;:::i;:::-;-1:-1:-1;16223:9:1;;16118:120::o;16243:125::-;16283:4;16311:1;16308;16305:8;16302:34;;;16316:18;;:::i;:::-;-1:-1:-1;16353:9:1;;16243:125::o;16373:258::-;16445:1;16455:113;16469:6;16466:1;16463:13;16455:113;;;16545:11;;;16539:18;16526:11;;;16519:39;16491:2;16484:10;16455:113;;;16586:6;16583:1;16580:13;16577:48;;;-1:-1:-1;;16621:1:1;16603:16;;16596:27;16373:258::o;16636:380::-;16715:1;16711:12;;;;16758;;;16779:61;;16833:4;16825:6;16821:17;16811:27;;16779:61;16886:2;16878:6;16875:14;16855:18;16852:38;16849:161;;;16932:10;16927:3;16923:20;16920:1;16913:31;16967:4;16964:1;16957:15;16995:4;16992:1;16985:15;16849:161;;16636:380;;;:::o;17021:135::-;17060:3;-1:-1:-1;;17081:17:1;;17078:43;;;17101:18;;:::i;:::-;-1:-1:-1;17148:1:1;17137:13;;17021:135::o;17161:112::-;17193:1;17219;17209:35;;17224:18;;:::i;:::-;-1:-1:-1;17258:9:1;;17161:112::o;17278:127::-;17339:10;17334:3;17330:20;17327:1;17320:31;17370:4;17367:1;17360:15;17394:4;17391:1;17384:15;17410:127;17471:10;17466:3;17462:20;17459:1;17452:31;17502:4;17499:1;17492:15;17526:4;17523:1;17516:15;17542:127;17603:10;17598:3;17594:20;17591:1;17584:31;17634:4;17631:1;17624:15;17658:4;17655:1;17648:15;17674:127;17735:10;17730:3;17726:20;17723:1;17716:31;17766:4;17763:1;17756:15;17790:4;17787:1;17780:15;17806:131;-1:-1:-1;;;;;;17880:32:1;;17870:43;;17860:71;;17927:1;17924;17917:12

Swarm Source

ipfs://3917ca6d7108e312da037ea66226ee449c341df2d23d554a92a90c7cd17f338f
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.