ETH Price: $2,921.78 (-9.85%)
Gas: 56 Gwei

Token

ZombieMutantYC (ZMYC)
 

Overview

Max Total Supply

3,835 ZMYC

Holders

2,938

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZMYC
0xAc9D910A2311362674198Cfe374a89c0a51E17A1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ZMYC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-16
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-01
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // 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/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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.1 (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.1 (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.1 (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.1 (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.1 (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/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

    // 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 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 && 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 != 1 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")): "";
    }

    /**
     * @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 && !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() && !_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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 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 This is 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: contracts/TheMoonPenguins.sol



pragma solidity ^0.8.4;




contract ZMYC is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL;
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(
        uint256 price,
        uint256 maxSupply,
        string memory baseUri,
        uint256 freeMintAllowance,
        uint256 maxMintPerTx,
        bool isSaleActive,
        uint256 freeMintIsAllowedUntil
    ) ERC721A("ZombieMutantYC", "ZMYC") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** FREE MINT **/

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    /** GETTERS **/

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

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance)
        external
        onlyOwner
    {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil)
        external
        onlyOwner
    {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        if (_currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET -
                freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    address private constant payoutAddress1 =
        0xAF4E452D370Bb2EAdCE0E5DBc183c7aB33070820;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAddress1), balance / 1);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","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":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200489738038062004897833981810160405281019062000037919062000441565b6040518060400160405280600e81526020017f5a6f6d6269654d7574616e7459430000000000000000000000000000000000008152506040518060400160405280600481526020017f5a4d5943000000000000000000000000000000000000000000000000000000008152508160029081620000b4919062000754565b508060039081620000c6919062000754565b50620000d76200016360201b60201c565b6000819055505050620000ff620000f36200016860201b60201c565b6200017060201b60201c565b600160098190555086600a8190555085600b8190555084600c908162000126919062000754565b5083600d8190555082600e8190555081600f60006101000a81548160ff02191690831515021790555080601081905550505050505050506200083b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200025f816200024a565b81146200026b57600080fd5b50565b6000815190506200027f8162000254565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002da826200028f565b810181811067ffffffffffffffff82111715620002fc57620002fb620002a0565b5b80604052505050565b60006200031162000236565b90506200031f8282620002cf565b919050565b600067ffffffffffffffff821115620003425762000341620002a0565b5b6200034d826200028f565b9050602081019050919050565b60005b838110156200037a5780820151818401526020810190506200035d565b60008484015250505050565b60006200039d620003978462000324565b62000305565b905082815260208101848484011115620003bc57620003bb6200028a565b5b620003c98482856200035a565b509392505050565b600082601f830112620003e957620003e862000285565b5b8151620003fb84826020860162000386565b91505092915050565b60008115159050919050565b6200041b8162000404565b81146200042757600080fd5b50565b6000815190506200043b8162000410565b92915050565b600080600080600080600060e0888a03121562000463576200046262000240565b5b6000620004738a828b016200026e565b9750506020620004868a828b016200026e565b965050604088015167ffffffffffffffff811115620004aa57620004a962000245565b5b620004b88a828b01620003d1565b9550506060620004cb8a828b016200026e565b9450506080620004de8a828b016200026e565b93505060a0620004f18a828b016200042a565b92505060c0620005048a828b016200026e565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056657607f821691505b6020821081036200057c576200057b6200051e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a7565b620005f28683620005a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006356200062f62000629846200024a565b6200060a565b6200024a565b9050919050565b6000819050919050565b620006518362000614565b6200066962000660826200063c565b848454620005b4565b825550505050565b600090565b6200068062000671565b6200068d81848462000646565b505050565b5b81811015620006b557620006a960008262000676565b60018101905062000693565b5050565b601f8211156200070457620006ce8162000582565b620006d98462000597565b81016020851015620006e9578190505b62000701620006f88562000597565b83018262000692565b50505b505050565b600082821c905092915050565b6000620007296000198460080262000709565b1980831691505092915050565b600062000744838362000716565b9150826002028217905092915050565b6200075f8262000513565b67ffffffffffffffff8111156200077b576200077a620002a0565b5b6200078782546200054d565b62000794828285620006b9565b600060209050601f831160018114620007cc5760008415620007b7578287015190505b620007c3858262000736565b86555062000833565b601f198416620007dc8662000582565b60005b828110156200080657848901518255600182019150602085019450602081019050620007df565b8683101562000826578489015162000822601f89168262000716565b8355505b6001600288020188555050505b505050505050565b61404c806200084b6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e22565b6107ef565b60405161023d9190612e6a565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f15565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f6d565b610963565b6040516102a59190612fdb565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613022565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613071565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613071565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613071565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061308c565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613071565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c25565b6040516103e59190613071565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613022565b610c2b565b005b34801561042357600080fd5b5061043e6004803603810190610439919061308c565b610d5a565b005b34801561044c57600080fd5b5061046760048036038101906104629190613214565b610d7a565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f6d565b610e59565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612f6d565b610edf565b6040516104c69190612fdb565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061325d565b610ef5565b6040516105039190613071565b60405180910390f35b34801561051857600080fd5b50610521610fc4565b005b34801561052f57600080fd5b5061053861104c565b6040516105459190612e6a565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906132b6565b61105f565b005b34801561058357600080fd5b5061059e60048036038101906105999190612f6d565b6110f8565b005b3480156105ac57600080fd5b506105b561117e565b6040516105c29190613071565b60405180910390f35b3480156105d757600080fd5b506105e0611184565b6040516105ed9190612fdb565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612f6d565b6111ae565b005b34801561062b57600080fd5b50610634611234565b6040516106419190612f15565b60405180910390f35b610664600480360381019061065f9190612f6d565b6112c6565b005b34801561067257600080fd5b5061068d600480360381019061068891906132e3565b6114dd565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612f6d565b611654565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133c4565b6116da565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612f6d565b611756565b005b34801561071657600080fd5b50610731600480360381019061072c9190612f6d565b611865565b60405161073e9190612f15565b60405180910390f35b34801561075357600080fd5b5061075c611903565b005b34801561076a57600080fd5b5061078560048036038101906107809190613447565b61199c565b6040516107929190612e6a565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061325d565b611a30565b005b3480156107d057600080fd5b506107d9611b27565b6040516107e69190612e6a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b3a565b5b9050919050565b6060600280546108e0906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906134b6565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ba4565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610edf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bf2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611bf2565b61199c565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611bfa565b505050565b600e5481565b600d5481565b6000610aff611cac565b6001546000540303905090565b610b17838383611cb1565b505050565b600b5481565b610b2a611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610b48611184565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613533565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061359f565b60405180910390fd5b60026009819055506000479050610c1a73af4e452d370bb2eadce0e5dbc183c7ab33070820600183610c15919061361d565b612165565b506001600981905550565b60105481565b80600081118015610c3e5750600e548111155b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061369a565b60405180910390fd5b600b5481600054610c8e91906136ba565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061373a565b60405180910390fd5b610cd7611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610cf5611184565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613533565b60405180910390fd5b610d558383612259565b505050565b610d75838383604051806020016040528060008152506116da565b505050565b610d82611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610da0611184565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613533565b60405180910390fd5b601160009054906101000a900460ff1615610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906137a6565b60405180910390fd5b80600c9081610e559190613972565b5050565b610e61611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610e7f611184565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90613533565b60405180910390fd5b80600e8190555050565b6000610eea82612277565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610fea611184565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613533565b60405180910390fd5b61104a6000612506565b565b600f60009054906101000a900460ff1681565b611067611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611085611184565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613533565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611100611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661111e611184565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613533565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b6611bf2565b73ffffffffffffffffffffffffffffffffffffffff166111d4611184565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613533565b60405180910390fd5b80600a8190555050565b606060038054611243906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461126f906134b6565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b806000811180156112d95750600e548111155b611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f9061369a565b60405180910390fd5b600b548160005461132991906136ba565b111561136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061373a565b60405180910390fd5b600f60009054906101000a900460ff166113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613a90565b60405180910390fd5b600082600a546113c99190613ab0565b9050601054600054101561148b576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114269190613af2565b905060008111156114895780841061146257600a54816114469190613ab0565b826114519190613af2565b915061145d33826125cc565b611488565b600a54846114709190613ab0565b8261147b9190613af2565b915061148733856125cc565b5b5b505b803410156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613b72565b60405180910390fd5b6114d83384612259565b505050565b6114e5611bf2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611549576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611556611bf2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611603611bf2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116489190612e6a565b60405180910390a35050565b61165c611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661167a611184565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613533565b60405180910390fd5b80600d8190555050565b6116e5848484611cb1565b6117048373ffffffffffffffffffffffffffffffffffffffff16612626565b8015611719575061171784848484612649565b155b15611750576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61175e611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661177c611184565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613533565b60405180910390fd5b600b548110611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613bde565b60405180910390fd5b60005481101561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290613bde565b60405180910390fd5b80600b8190555050565b606061187082611ba4565b6118a6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118b0612799565b905060018151036118d057604051806020016040528060008152506118fb565b806118da8461282b565b6040516020016118eb929190613c86565b6040516020818303038152906040525b915050919050565b61190b611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611929611184565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613533565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a38611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611a56611184565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613533565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613d27565b60405180910390fd5b611b2481612506565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611baf611cac565b11158015611bbe575060005482105b8015611beb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cbc82612277565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d48611bf2565b73ffffffffffffffffffffffffffffffffffffffff161480611d775750611d7685611d71611bf2565b61199c565b5b80611dbc5750611d85611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611da484610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e68858585600161298b565b611e7460008487611bfa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120f35760005482146120f257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215e8585856001612991565b5050505050565b804710156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90613d93565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121ce90613de4565b60006040518083038185875af1925050503d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b5050905080612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613e6b565b60405180910390fd5b505050565b612273828260405180602001604052806000815250612997565b5050565b61227f612d73565b60008290508061228d611cac565b1115801561229c575060005481105b156124cf576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124cd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b1578092505050612501565b5b6001156124cc57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c7578092505050612501565b6123b2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261b91906136ba565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266f611bf2565b8786866040518563ffffffff1660e01b81526004016126919493929190613ee0565b6020604051808303816000875af19250505080156126cd57506040513d601f19601f820116820180604052508101906126ca9190613f41565b60015b612746573d80600081146126fd576040519150601f19603f3d011682016040523d82523d6000602084013e612702565b606091505b50600081510361273e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127a8906134b6565b80601f01602080910402602001604051908101604052809291908181526020018280546127d4906134b6565b80156128215780601f106127f657610100808354040283529160200191612821565b820191906000526020600020905b81548152906001019060200180831161280457829003601f168201915b5050505050905090565b606060008203612872576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612986565b600082905060005b600082146128a457808061288d90613f6e565b915050600a8261289d919061361d565b915061287a565b60008167ffffffffffffffff8111156128c0576128bf6130e9565b5b6040519080825280601f01601f1916602001820160405280156128f25781602001600182028036833780820191505090505b5090505b6000851461297f5760018261290b9190613af2565b9150600a8561291a9190613fb6565b603061292691906136ba565b60f81b81838151811061293c5761293b613fe7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612978919061361d565b94506128f6565b8093505050505b919050565b50505050565b50505050565b6129a483838360016129a9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a4f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5c600086838761298b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c265750612c258773ffffffffffffffffffffffffffffffffffffffff16612626565b5b15612ceb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9b6000888480600101955088612649565b612cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c2c578260005414612ce657600080fd5b612d56565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612cec575b816000819055505050612d6c6000868387612991565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dff81612dca565b8114612e0a57600080fd5b50565b600081359050612e1c81612df6565b92915050565b600060208284031215612e3857612e37612dc0565b5b6000612e4684828501612e0d565b91505092915050565b60008115159050919050565b612e6481612e4f565b82525050565b6000602082019050612e7f6000830184612e5b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ebf578082015181840152602081019050612ea4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee782612e85565b612ef18185612e90565b9350612f01818560208601612ea1565b612f0a81612ecb565b840191505092915050565b60006020820190508181036000830152612f2f8184612edc565b905092915050565b6000819050919050565b612f4a81612f37565b8114612f5557600080fd5b50565b600081359050612f6781612f41565b92915050565b600060208284031215612f8357612f82612dc0565b5b6000612f9184828501612f58565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc582612f9a565b9050919050565b612fd581612fba565b82525050565b6000602082019050612ff06000830184612fcc565b92915050565b612fff81612fba565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b6000806040838503121561303957613038612dc0565b5b60006130478582860161300d565b925050602061305885828601612f58565b9150509250929050565b61306b81612f37565b82525050565b60006020820190506130866000830184613062565b92915050565b6000806000606084860312156130a5576130a4612dc0565b5b60006130b38682870161300d565b93505060206130c48682870161300d565b92505060406130d586828701612f58565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312182612ecb565b810181811067ffffffffffffffff821117156131405761313f6130e9565b5b80604052505050565b6000613153612db6565b905061315f8282613118565b919050565b600067ffffffffffffffff82111561317f5761317e6130e9565b5b61318882612ecb565b9050602081019050919050565b82818337600083830152505050565b60006131b76131b284613164565b613149565b9050828152602081018484840111156131d3576131d26130e4565b5b6131de848285613195565b509392505050565b600082601f8301126131fb576131fa6130df565b5b813561320b8482602086016131a4565b91505092915050565b60006020828403121561322a57613229612dc0565b5b600082013567ffffffffffffffff81111561324857613247612dc5565b5b613254848285016131e6565b91505092915050565b60006020828403121561327357613272612dc0565b5b60006132818482850161300d565b91505092915050565b61329381612e4f565b811461329e57600080fd5b50565b6000813590506132b08161328a565b92915050565b6000602082840312156132cc576132cb612dc0565b5b60006132da848285016132a1565b91505092915050565b600080604083850312156132fa576132f9612dc0565b5b60006133088582860161300d565b9250506020613319858286016132a1565b9150509250929050565b600067ffffffffffffffff82111561333e5761333d6130e9565b5b61334782612ecb565b9050602081019050919050565b600061336761336284613323565b613149565b905082815260208101848484011115613383576133826130e4565b5b61338e848285613195565b509392505050565b600082601f8301126133ab576133aa6130df565b5b81356133bb848260208601613354565b91505092915050565b600080600080608085870312156133de576133dd612dc0565b5b60006133ec8782880161300d565b94505060206133fd8782880161300d565b935050604061340e87828801612f58565b925050606085013567ffffffffffffffff81111561342f5761342e612dc5565b5b61343b87828801613396565b91505092959194509250565b6000806040838503121561345e5761345d612dc0565b5b600061346c8582860161300d565b925050602061347d8582860161300d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ce57607f821691505b6020821081036134e1576134e0613487565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061351d602083612e90565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613589601f83612e90565b915061359482613553565b602082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362882612f37565b915061363383612f37565b925082613643576136426135bf565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613684601483612e90565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b60006136c582612f37565b91506136d083612f37565b92508282019050808211156136e8576136e76135ee565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613724601483612e90565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613790601083612e90565b915061379b8261375a565b602082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137eb565b61383286836137eb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061386f61386a61386584612f37565b61384a565b612f37565b9050919050565b6000819050919050565b61388983613854565b61389d61389582613876565b8484546137f8565b825550505050565b600090565b6138b26138a5565b6138bd818484613880565b505050565b5b818110156138e1576138d66000826138aa565b6001810190506138c3565b5050565b601f821115613926576138f7816137c6565b613900846137db565b8101602085101561390f578190505b61392361391b856137db565b8301826138c2565b50505b505050565b600082821c905092915050565b60006139496000198460080261392b565b1980831691505092915050565b60006139628383613938565b9150826002028217905092915050565b61397b82612e85565b67ffffffffffffffff811115613994576139936130e9565b5b61399e82546134b6565b6139a98282856138e5565b600060209050601f8311600181146139dc57600084156139ca578287015190505b6139d48582613956565b865550613a3c565b601f1984166139ea866137c6565b60005b82811015613a12578489015182556001820191506020850194506020810190506139ed565b86831015613a2f5784890151613a2b601f891682613938565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613a7a601383612e90565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b6000613abb82612f37565b9150613ac683612f37565b9250828202613ad481612f37565b91508282048414831517613aeb57613aea6135ee565b5b5092915050565b6000613afd82612f37565b9150613b0883612f37565b9250828203905081811115613b2057613b1f6135ee565b5b92915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b5c601383612e90565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613bc8601683612e90565b9150613bd382613b92565b602082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b600081905092915050565b6000613c1482612e85565b613c1e8185613bfe565b9350613c2e818560208601612ea1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613c70600583613bfe565b9150613c7b82613c3a565b600582019050919050565b6000613c928285613c09565b9150613c9e8284613c09565b9150613ca982613c63565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d11602683612e90565b9150613d1c82613cb5565b604082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613d7d601d83612e90565b9150613d8882613d47565b602082019050919050565b60006020820190508181036000830152613dac81613d70565b9050919050565b600081905092915050565b50565b6000613dce600083613db3565b9150613dd982613dbe565b600082019050919050565b6000613def82613dc1565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613e55603a83612e90565b9150613e6082613df9565b604082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613eb282613e8b565b613ebc8185613e96565b9350613ecc818560208601612ea1565b613ed581612ecb565b840191505092915050565b6000608082019050613ef56000830187612fcc565b613f026020830186612fcc565b613f0f6040830185613062565b8181036060830152613f218184613ea7565b905095945050505050565b600081519050613f3b81612df6565b92915050565b600060208284031215613f5757613f56612dc0565b5b6000613f6584828501613f2c565b91505092915050565b6000613f7982612f37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613fab57613faa6135ee565b5b600182019050919050565b6000613fc182612f37565b9150613fcc83612f37565b925082613fdc57613fdb6135bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207106c28957252dbb084cd58fde854cb0aa8f1842b0edc2f62fe078dbeba5a9e964736f6c634300081100330000000000000000000000000000000000000000000000000008e1bc9bf04000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000003b68747470733a2f2f6d7574616e74617065636c75622e73332e61702d6e6f727468656173742d322e616d617a6f6e6177732e636f6d2f6a736f6e2f0000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e22565b6107ef565b60405161023d9190612e6a565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f15565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f6d565b610963565b6040516102a59190612fdb565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613022565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613071565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613071565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613071565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061308c565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613071565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c25565b6040516103e59190613071565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613022565b610c2b565b005b34801561042357600080fd5b5061043e6004803603810190610439919061308c565b610d5a565b005b34801561044c57600080fd5b5061046760048036038101906104629190613214565b610d7a565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f6d565b610e59565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612f6d565b610edf565b6040516104c69190612fdb565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061325d565b610ef5565b6040516105039190613071565b60405180910390f35b34801561051857600080fd5b50610521610fc4565b005b34801561052f57600080fd5b5061053861104c565b6040516105459190612e6a565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906132b6565b61105f565b005b34801561058357600080fd5b5061059e60048036038101906105999190612f6d565b6110f8565b005b3480156105ac57600080fd5b506105b561117e565b6040516105c29190613071565b60405180910390f35b3480156105d757600080fd5b506105e0611184565b6040516105ed9190612fdb565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612f6d565b6111ae565b005b34801561062b57600080fd5b50610634611234565b6040516106419190612f15565b60405180910390f35b610664600480360381019061065f9190612f6d565b6112c6565b005b34801561067257600080fd5b5061068d600480360381019061068891906132e3565b6114dd565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612f6d565b611654565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133c4565b6116da565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612f6d565b611756565b005b34801561071657600080fd5b50610731600480360381019061072c9190612f6d565b611865565b60405161073e9190612f15565b60405180910390f35b34801561075357600080fd5b5061075c611903565b005b34801561076a57600080fd5b5061078560048036038101906107809190613447565b61199c565b6040516107929190612e6a565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061325d565b611a30565b005b3480156107d057600080fd5b506107d9611b27565b6040516107e69190612e6a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b3a565b5b9050919050565b6060600280546108e0906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906134b6565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ba4565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610edf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611bf2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611bf2565b61199c565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611bfa565b505050565b600e5481565b600d5481565b6000610aff611cac565b6001546000540303905090565b610b17838383611cb1565b505050565b600b5481565b610b2a611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610b48611184565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613533565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061359f565b60405180910390fd5b60026009819055506000479050610c1a73af4e452d370bb2eadce0e5dbc183c7ab33070820600183610c15919061361d565b612165565b506001600981905550565b60105481565b80600081118015610c3e5750600e548111155b610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061369a565b60405180910390fd5b600b5481600054610c8e91906136ba565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc69061373a565b60405180910390fd5b610cd7611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610cf5611184565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613533565b60405180910390fd5b610d558383612259565b505050565b610d75838383604051806020016040528060008152506116da565b505050565b610d82611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610da0611184565b73ffffffffffffffffffffffffffffffffffffffff1614610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613533565b60405180910390fd5b601160009054906101000a900460ff1615610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906137a6565b60405180910390fd5b80600c9081610e559190613972565b5050565b610e61611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610e7f611184565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90613533565b60405180910390fd5b80600e8190555050565b6000610eea82612277565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611bf2565b73ffffffffffffffffffffffffffffffffffffffff16610fea611184565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613533565b60405180910390fd5b61104a6000612506565b565b600f60009054906101000a900460ff1681565b611067611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611085611184565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613533565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611100611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661111e611184565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613533565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b6611bf2565b73ffffffffffffffffffffffffffffffffffffffff166111d4611184565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613533565b60405180910390fd5b80600a8190555050565b606060038054611243906134b6565b80601f016020809104026020016040519081016040528092919081815260200182805461126f906134b6565b80156112bc5780601f10611291576101008083540402835291602001916112bc565b820191906000526020600020905b81548152906001019060200180831161129f57829003601f168201915b5050505050905090565b806000811180156112d95750600e548111155b611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f9061369a565b60405180910390fd5b600b548160005461132991906136ba565b111561136a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113619061373a565b60405180910390fd5b600f60009054906101000a900460ff166113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613a90565b60405180910390fd5b600082600a546113c99190613ab0565b9050601054600054101561148b576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114269190613af2565b905060008111156114895780841061146257600a54816114469190613ab0565b826114519190613af2565b915061145d33826125cc565b611488565b600a54846114709190613ab0565b8261147b9190613af2565b915061148733856125cc565b5b5b505b803410156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613b72565b60405180910390fd5b6114d83384612259565b505050565b6114e5611bf2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611549576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611556611bf2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611603611bf2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116489190612e6a565b60405180910390a35050565b61165c611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661167a611184565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613533565b60405180910390fd5b80600d8190555050565b6116e5848484611cb1565b6117048373ffffffffffffffffffffffffffffffffffffffff16612626565b8015611719575061171784848484612649565b155b15611750576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61175e611bf2565b73ffffffffffffffffffffffffffffffffffffffff1661177c611184565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613533565b60405180910390fd5b600b548110611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90613bde565b60405180910390fd5b60005481101561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290613bde565b60405180910390fd5b80600b8190555050565b606061187082611ba4565b6118a6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118b0612799565b905060018151036118d057604051806020016040528060008152506118fb565b806118da8461282b565b6040516020016118eb929190613c86565b6040516020818303038152906040525b915050919050565b61190b611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611929611184565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613533565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a38611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611a56611184565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613533565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613d27565b60405180910390fd5b611b2481612506565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611baf611cac565b11158015611bbe575060005482105b8015611beb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cbc82612277565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d48611bf2565b73ffffffffffffffffffffffffffffffffffffffff161480611d775750611d7685611d71611bf2565b61199c565b5b80611dbc5750611d85611bf2565b73ffffffffffffffffffffffffffffffffffffffff16611da484610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611df5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e68858585600161298b565b611e7460008487611bfa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120f35760005482146120f257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215e8585856001612991565b5050505050565b804710156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90613d93565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121ce90613de4565b60006040518083038185875af1925050503d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b5050905080612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613e6b565b60405180910390fd5b505050565b612273828260405180602001604052806000815250612997565b5050565b61227f612d73565b60008290508061228d611cac565b1115801561229c575060005481105b156124cf576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124cd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b1578092505050612501565b5b6001156124cc57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c7578092505050612501565b6123b2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261b91906136ba565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261266f611bf2565b8786866040518563ffffffff1660e01b81526004016126919493929190613ee0565b6020604051808303816000875af19250505080156126cd57506040513d601f19601f820116820180604052508101906126ca9190613f41565b60015b612746573d80600081146126fd576040519150601f19603f3d011682016040523d82523d6000602084013e612702565b606091505b50600081510361273e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546127a8906134b6565b80601f01602080910402602001604051908101604052809291908181526020018280546127d4906134b6565b80156128215780601f106127f657610100808354040283529160200191612821565b820191906000526020600020905b81548152906001019060200180831161280457829003601f168201915b5050505050905090565b606060008203612872576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612986565b600082905060005b600082146128a457808061288d90613f6e565b915050600a8261289d919061361d565b915061287a565b60008167ffffffffffffffff8111156128c0576128bf6130e9565b5b6040519080825280601f01601f1916602001820160405280156128f25781602001600182028036833780820191505090505b5090505b6000851461297f5760018261290b9190613af2565b9150600a8561291a9190613fb6565b603061292691906136ba565b60f81b81838151811061293c5761293b613fe7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612978919061361d565b94506128f6565b8093505050505b919050565b50505050565b50505050565b6129a483838360016129a9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a15576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a4f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5c600086838761298b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c265750612c258773ffffffffffffffffffffffffffffffffffffffff16612626565b5b15612ceb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c9b6000888480600101955088612649565b612cd1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c2c578260005414612ce657600080fd5b612d56565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612cec575b816000819055505050612d6c6000868387612991565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dff81612dca565b8114612e0a57600080fd5b50565b600081359050612e1c81612df6565b92915050565b600060208284031215612e3857612e37612dc0565b5b6000612e4684828501612e0d565b91505092915050565b60008115159050919050565b612e6481612e4f565b82525050565b6000602082019050612e7f6000830184612e5b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ebf578082015181840152602081019050612ea4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee782612e85565b612ef18185612e90565b9350612f01818560208601612ea1565b612f0a81612ecb565b840191505092915050565b60006020820190508181036000830152612f2f8184612edc565b905092915050565b6000819050919050565b612f4a81612f37565b8114612f5557600080fd5b50565b600081359050612f6781612f41565b92915050565b600060208284031215612f8357612f82612dc0565b5b6000612f9184828501612f58565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc582612f9a565b9050919050565b612fd581612fba565b82525050565b6000602082019050612ff06000830184612fcc565b92915050565b612fff81612fba565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b6000806040838503121561303957613038612dc0565b5b60006130478582860161300d565b925050602061305885828601612f58565b9150509250929050565b61306b81612f37565b82525050565b60006020820190506130866000830184613062565b92915050565b6000806000606084860312156130a5576130a4612dc0565b5b60006130b38682870161300d565b93505060206130c48682870161300d565b92505060406130d586828701612f58565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312182612ecb565b810181811067ffffffffffffffff821117156131405761313f6130e9565b5b80604052505050565b6000613153612db6565b905061315f8282613118565b919050565b600067ffffffffffffffff82111561317f5761317e6130e9565b5b61318882612ecb565b9050602081019050919050565b82818337600083830152505050565b60006131b76131b284613164565b613149565b9050828152602081018484840111156131d3576131d26130e4565b5b6131de848285613195565b509392505050565b600082601f8301126131fb576131fa6130df565b5b813561320b8482602086016131a4565b91505092915050565b60006020828403121561322a57613229612dc0565b5b600082013567ffffffffffffffff81111561324857613247612dc5565b5b613254848285016131e6565b91505092915050565b60006020828403121561327357613272612dc0565b5b60006132818482850161300d565b91505092915050565b61329381612e4f565b811461329e57600080fd5b50565b6000813590506132b08161328a565b92915050565b6000602082840312156132cc576132cb612dc0565b5b60006132da848285016132a1565b91505092915050565b600080604083850312156132fa576132f9612dc0565b5b60006133088582860161300d565b9250506020613319858286016132a1565b9150509250929050565b600067ffffffffffffffff82111561333e5761333d6130e9565b5b61334782612ecb565b9050602081019050919050565b600061336761336284613323565b613149565b905082815260208101848484011115613383576133826130e4565b5b61338e848285613195565b509392505050565b600082601f8301126133ab576133aa6130df565b5b81356133bb848260208601613354565b91505092915050565b600080600080608085870312156133de576133dd612dc0565b5b60006133ec8782880161300d565b94505060206133fd8782880161300d565b935050604061340e87828801612f58565b925050606085013567ffffffffffffffff81111561342f5761342e612dc5565b5b61343b87828801613396565b91505092959194509250565b6000806040838503121561345e5761345d612dc0565b5b600061346c8582860161300d565b925050602061347d8582860161300d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ce57607f821691505b6020821081036134e1576134e0613487565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061351d602083612e90565b9150613528826134e7565b602082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613589601f83612e90565b915061359482613553565b602082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362882612f37565b915061363383612f37565b925082613643576136426135bf565b5b828204905092915050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613684601483612e90565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b60006136c582612f37565b91506136d083612f37565b92508282019050808211156136e8576136e76135ee565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613724601483612e90565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613790601083612e90565b915061379b8261375a565b602082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137eb565b61383286836137eb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061386f61386a61386584612f37565b61384a565b612f37565b9050919050565b6000819050919050565b61388983613854565b61389d61389582613876565b8484546137f8565b825550505050565b600090565b6138b26138a5565b6138bd818484613880565b505050565b5b818110156138e1576138d66000826138aa565b6001810190506138c3565b5050565b601f821115613926576138f7816137c6565b613900846137db565b8101602085101561390f578190505b61392361391b856137db565b8301826138c2565b50505b505050565b600082821c905092915050565b60006139496000198460080261392b565b1980831691505092915050565b60006139628383613938565b9150826002028217905092915050565b61397b82612e85565b67ffffffffffffffff811115613994576139936130e9565b5b61399e82546134b6565b6139a98282856138e5565b600060209050601f8311600181146139dc57600084156139ca578287015190505b6139d48582613956565b865550613a3c565b601f1984166139ea866137c6565b60005b82811015613a12578489015182556001820191506020850194506020810190506139ed565b86831015613a2f5784890151613a2b601f891682613938565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613a7a601383612e90565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b6000613abb82612f37565b9150613ac683612f37565b9250828202613ad481612f37565b91508282048414831517613aeb57613aea6135ee565b5b5092915050565b6000613afd82612f37565b9150613b0883612f37565b9250828203905081811115613b2057613b1f6135ee565b5b92915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b5c601383612e90565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613bc8601683612e90565b9150613bd382613b92565b602082019050919050565b60006020820190508181036000830152613bf781613bbb565b9050919050565b600081905092915050565b6000613c1482612e85565b613c1e8185613bfe565b9350613c2e818560208601612ea1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613c70600583613bfe565b9150613c7b82613c3a565b600582019050919050565b6000613c928285613c09565b9150613c9e8284613c09565b9150613ca982613c63565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d11602683612e90565b9150613d1c82613cb5565b604082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613d7d601d83612e90565b9150613d8882613d47565b602082019050919050565b60006020820190508181036000830152613dac81613d70565b9050919050565b600081905092915050565b50565b6000613dce600083613db3565b9150613dd982613dbe565b600082019050919050565b6000613def82613dc1565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613e55603a83612e90565b9150613e6082613df9565b604082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613eb282613e8b565b613ebc8185613e96565b9350613ecc818560208601612ea1565b613ed581612ecb565b840191505092915050565b6000608082019050613ef56000830187612fcc565b613f026020830186612fcc565b613f0f6040830185613062565b8181036060830152613f218184613ea7565b905095945050505050565b600081519050613f3b81612df6565b92915050565b600060208284031215613f5757613f56612dc0565b5b6000613f6584828501613f2c565b91505092915050565b6000613f7982612f37565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613fab57613faa6135ee565b5b600182019050919050565b6000613fc182612f37565b9150613fcc83612f37565b925082613fdc57613fdb6135bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207106c28957252dbb084cd58fde854cb0aa8f1842b0edc2f62fe078dbeba5a9e964736f6c63430008110033

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

0000000000000000000000000000000000000000000000000008e1bc9bf04000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000003b68747470733a2f2f6d7574616e74617065636c75622e73332e61702d6e6f727468656173742d322e616d617a6f6e6177732e636f6d2f6a736f6e2f0000000000

-----Decoded View---------------
Arg [0] : price (uint256): 2500000000000000
Arg [1] : maxSupply (uint256): 10000
Arg [2] : baseUri (string): https://mutantapeclub.s3.ap-northeast-2.amazonaws.com/json/
Arg [3] : freeMintAllowance (uint256): 1
Arg [4] : maxMintPerTx (uint256): 20
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 10000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000008e1bc9bf04000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [7] : 000000000000000000000000000000000000000000000000000000000000003b
Arg [8] : 68747470733a2f2f6d7574616e74617065636c75622e73332e61702d6e6f7274
Arg [9] : 68656173742d322e616d617a6f6e6177732e636f6d2f6a736f6e2f0000000000


Deployed Bytecode Sourcemap

47667:4365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29835:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32948:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34459:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34022:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47896:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47848:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29084:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35324:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47786:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51855:174;;;;;;;;;;;;;:::i;:::-;;47973:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51547:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35565:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49383:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49732:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32756:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30204:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7593:103;;;;;;;;;;;;;:::i;:::-;;47940:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49862:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49979:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47759:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6942:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49016:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33117:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50610:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34735:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49560:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35821:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49120:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33292:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50164:86;;;;;;;;;;;;;:::i;:::-;;35093:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7851:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48021:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29835:305;29937:4;29989:25;29974:40;;;:11;:40;;;;:105;;;;30046:33;30031:48;;;:11;:48;;;;29974:105;:158;;;;30096:36;30120:11;30096:23;:36::i;:::-;29974:158;29954:178;;29835:305;;;:::o;32948:100::-;33002:13;33035:5;33028:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32948:100;:::o;34459:204::-;34527:7;34552:16;34560:7;34552;:16::i;:::-;34547:64;;34577:34;;;;;;;;;;;;;;34547:64;34631:15;:24;34647:7;34631:24;;;;;;;;;;;;;;;;;;;;;34624:31;;34459:204;;;:::o;34022:371::-;34095:13;34111:24;34127:7;34111:15;:24::i;:::-;34095:40;;34156:5;34150:11;;:2;:11;;;34146:48;;34170:24;;;;;;;;;;;;;;34146:48;34227:5;34211:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34237:37;34254:5;34261:12;:10;:12::i;:::-;34237:16;:37::i;:::-;34236:38;34211:63;34207:138;;;34298:35;;;;;;;;;;;;;;34207:138;34357:28;34366:2;34370:7;34379:5;34357:8;:28::i;:::-;34084:309;34022:371;;:::o;47896:37::-;;;;:::o;47848:41::-;;;;:::o;29084:303::-;29128:7;29353:15;:13;:15::i;:::-;29338:12;;29322:13;;:28;:46;29315:53;;29084:303;:::o;35324:170::-;35458:28;35468:4;35474:2;35478:7;35458:9;:28::i;:::-;35324:170;;;:::o;47786:25::-;;;;:::o;51855:174::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1916:1:::1;2514:7;;:19:::0;2506:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1916:1;2647:7;:18;;;;51916:15:::2;51934:21;51916:39;;51966:55;51804:42;52019:1;52009:7;:11;;;;:::i;:::-;51966:17;:55::i;:::-;51905:124;1872:1:::1;2826:7;:22;;;;51855:174::o:0;47973:41::-;;;;:::o;51547:176::-;51640:11;50370:1;50356:11;:15;:56;;;;;50390:22;;50375:11;:37;;50356:56;50334:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50524:10;;50509:11;50493:13;;:27;;;;:::i;:::-;:41;;50471:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7173:12:::1;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51688:27:::2;51698:3;51703:11;51688:9;:27::i;:::-;51547:176:::0;;;:::o;35565:185::-;35703:39;35720:4;35726:2;35730:7;35703:39;;;;;;;;;;;;:16;:39::i;:::-;35565:185;;;:::o;49383:169::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49472:15:::1;;;;;;;;;;;49471:16;49463:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49530:14;49519:8;:25;;;;;;:::i;:::-;;49383:169:::0;:::o;49732:122::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49834:12:::1;49809:22;:37;;;;49732:122:::0;:::o;32756:125::-;32820:7;32847:21;32860:7;32847:12;:21::i;:::-;:26;;;32840:33;;32756:125;;;:::o;30204:206::-;30268:7;30309:1;30292:19;;:5;:19;;;30288:60;;30320:28;;;;;;;;;;;;;;30288:60;30374:12;:19;30387:5;30374:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30366:36;;30359:43;;30204:206;;;:::o;7593:103::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7658:30:::1;7685:1;7658:18;:30::i;:::-;7593:103::o:0;47940:26::-;;;;;;;;;;;;;:::o;49862:109::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49951:12:::1;49934:14;;:29;;;;;;;;;;;;;;;;;;49862:109:::0;:::o;49979:177::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50126:22:::1;50097:26;:51;;;;49979:177:::0;:::o;47759:20::-;;;;:::o;6942:87::-;6988:7;7015:6;;;;;;;;;;;7008:13;;6942:87;:::o;49016:96::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49093:11:::1;49085:5;:19;;;;49016:96:::0;:::o;33117:104::-;33173:13;33206:7;33199:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33117:104;:::o;50610:929::-;50702:11;50370:1;50356:11;:15;:56;;;;;50390:22;;50375:11;:37;;50356:56;50334:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50524:10;;50509:11;50493:13;;:27;;;;:::i;:::-;:41;;50471:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;50739:14:::1;;;;;;;;;;;50731:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50790:13;50814:11;50806:5;;:19;;;;:::i;:::-;50790:35;;50858:26;;50842:13;;:42;50838:584;;;50901:25;50975:16;:28;50992:10;50975:28;;;;;;;;;;;;;;;;50929:26;;:74;;;;:::i;:::-;50901:102;;51042:1;51022:17;:21;51018:393;;;51083:17;51068:11;:32;51064:332;;51154:5;;51134:17;:25;;;;:::i;:::-;51125:34;;;;;:::i;:::-;;;51182:50;51202:10;51214:17;51182:19;:50::i;:::-;51064:332;;;51304:5;;51290:11;:19;;;;:::i;:::-;51281:28;;;;;:::i;:::-;;;51332:44;51352:10;51364:11;51332:19;:44::i;:::-;51064:332;51018:393;50886:536;50838:584;51455:5;51442:9;:18;;51434:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51497:34;51507:10;51519:11;51497:9;:34::i;:::-;50720:819;50610:929:::0;;:::o;34735:287::-;34846:12;:10;:12::i;:::-;34834:24;;:8;:24;;;34830:54;;34867:17;;;;;;;;;;;;;;34830:54;34942:8;34897:18;:32;34916:12;:10;:12::i;:::-;34897:32;;;;;;;;;;;;;;;:42;34930:8;34897:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34995:8;34966:48;;34981:12;:10;:12::i;:::-;34966:48;;;35005:8;34966:48;;;;;;:::i;:::-;;;;;;;;34735:287;;:::o;49560:164::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:17:::1;49670:26;:46;;;;49560:164:::0;:::o;35821:369::-;35988:28;35998:4;36004:2;36008:7;35988:9;:28::i;:::-;36031:15;:2;:13;;;:15::i;:::-;:76;;;;;36051:56;36082:4;36088:2;36092:7;36101:5;36051:30;:56::i;:::-;36050:57;36031:76;36027:156;;;36131:40;;;;;;;;;;;;;;36027:156;35821:369;;;;:::o;49120:255::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49219:10:::1;;49204:12;:25;49196:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49291:13;;49275:12;:29;;49267:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49355:12;49342:10;:25;;;;49120:255:::0;:::o;33292:326::-;33365:13;33396:16;33404:7;33396;:16::i;:::-;33391:59;;33421:29;;;;;;;;;;;;;;33391:59;33463:21;33487:10;:8;:10::i;:::-;33463:34;;33540:1;33521:7;33515:21;:26;:95;;;;;;;;;;;;;;;;;33568:7;33577:18;:7;:16;:18::i;:::-;33551:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33515:95;33508:102;;;33292:326;;;:::o;50164:86::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50238:4:::1;50220:15;;:22;;;;;;;;;;;;;;;;;;50164:86::o:0;35093:164::-;35190:4;35214:18;:25;35233:5;35214:25;;;;;;;;;;;;;;;:35;35240:8;35214:35;;;;;;;;;;;;;;;;;;;;;;;;;35207:42;;35093:164;;;;:::o;7851:201::-;7173:12;:10;:12::i;:::-;7162:23;;:7;:5;:7::i;:::-;:23;;;7154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7960:1:::1;7940:22;;:8;:22;;::::0;7932:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8016:28;8035:8;8016:18;:28::i;:::-;7851:201:::0;:::o;48021:27::-;;;;;;;;;;;;;:::o;19726:157::-;19811:4;19850:25;19835:40;;;:11;:40;;;;19828:47;;19726:157;;;:::o;36445:174::-;36502:4;36545:7;36526:15;:13;:15::i;:::-;:26;;:53;;;;;36566:13;;36556:7;:23;36526:53;:85;;;;;36584:11;:20;36596:7;36584:20;;;;;;;;;;;:27;;;;;;;;;;;;36583:28;36526:85;36519:92;;36445:174;;;:::o;5666:98::-;5719:7;5746:10;5739:17;;5666:98;:::o;44602:196::-;44744:2;44717:15;:24;44733:7;44717:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44782:7;44778:2;44762:28;;44771:5;44762:28;;;;;;;;;;;;44602:196;;;:::o;28858:92::-;28914:7;28858:92;:::o;39545:2130::-;39660:35;39698:21;39711:7;39698:12;:21::i;:::-;39660:59;;39758:4;39736:26;;:13;:18;;;:26;;;39732:67;;39771:28;;;;;;;;;;;;;;39732:67;39812:22;39854:4;39838:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39875:36;39892:4;39898:12;:10;:12::i;:::-;39875:16;:36::i;:::-;39838:73;:126;;;;39952:12;:10;:12::i;:::-;39928:36;;:20;39940:7;39928:11;:20::i;:::-;:36;;;39838:126;39812:153;;39983:17;39978:66;;40009:35;;;;;;;;;;;;;;39978:66;40073:1;40059:16;;:2;:16;;;40055:52;;40084:23;;;;;;;;;;;;;;40055:52;40120:43;40142:4;40148:2;40152:7;40161:1;40120:21;:43::i;:::-;40228:35;40245:1;40249:7;40258:4;40228:8;:35::i;:::-;40589:1;40559:12;:18;40572:4;40559:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40633:1;40605:12;:16;40618:2;40605:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40651:31;40685:11;:20;40697:7;40685:20;;;;;;;;;;;40651:54;;40736:2;40720:8;:13;;;:18;;;;;;;;;;;;;;;;;;40786:15;40753:8;:23;;;:49;;;;;;;;;;;;;;;;;;41054:19;41086:1;41076:7;:11;41054:33;;41102:31;41136:11;:24;41148:11;41136:24;;;;;;;;;;;41102:58;;41204:1;41179:27;;:8;:13;;;;;;;;;;;;:27;;;41175:384;;41389:13;;41374:11;:28;41370:174;;41443:4;41427:8;:13;;;:20;;;;;;;;;;;;;;;;;;41496:13;:28;;;41470:8;:23;;;:54;;;;;;;;;;;;;;;;;;41370:174;41175:384;40534:1036;;;41606:7;41602:2;41587:27;;41596:4;41587:27;;;;;;;;;;;;41625:42;41646:4;41652:2;41656:7;41665:1;41625:20;:42::i;:::-;39649:2026;;39545:2130;;;:::o;10904:317::-;11019:6;10994:21;:31;;10986:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11073:12;11091:9;:14;;11113:6;11091:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11072:52;;;11143:7;11135:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10975:246;10904:317;;:::o;36627:104::-;36696:27;36706:2;36710:8;36696:27;;;;;;;;;;;;:9;:27::i;:::-;36627:104;;:::o;31585:1109::-;31647:21;;:::i;:::-;31681:12;31696:7;31681:22;;31764:4;31745:15;:13;:15::i;:::-;:23;;:47;;;;;31779:13;;31772:4;:20;31745:47;31741:886;;;31813:31;31847:11;:17;31859:4;31847:17;;;;;;;;;;;31813:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31888:9;:16;;;31883:729;;31959:1;31933:28;;:9;:14;;;:28;;;31929:101;;31997:9;31990:16;;;;;;31929:101;32332:261;32339:4;32332:261;;;32372:6;;;;;;;;32417:11;:17;32429:4;32417:17;;;;;;;;;;;32405:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32491:1;32465:28;;:9;:14;;;:28;;;32461:109;;32533:9;32526:16;;;;;;32461:109;32332:261;;;31883:729;31794:833;31741:886;32655:31;;;;;;;;;;;;;;31585:1109;;;;:::o;8212:191::-;8286:16;8305:6;;;;;;;;;;;8286:25;;8331:8;8322:6;;:17;;;;;;;;;;;;;;;;;;8386:8;8355:40;;8376:8;8355:40;;;;;;;;;;;;8275:128;8212:191;:::o;48725:120::-;48832:5;48804:16;:24;48821:6;48804:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;48725:120;;:::o;9643:326::-;9703:4;9960:1;9938:7;:19;;;:23;9931:30;;9643:326;;;:::o;45290:667::-;45453:4;45490:2;45474:36;;;45511:12;:10;:12::i;:::-;45525:4;45531:7;45540:5;45474:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45470:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45725:1;45708:6;:13;:18;45704:235;;45754:40;;;;;;;;;;;;;;45704:235;45897:6;45891:13;45882:6;45878:2;45874:15;45867:38;45470:480;45603:45;;;45593:55;;;:6;:55;;;;45586:62;;;45290:667;;;;;;:::o;48876:109::-;48936:13;48969:8;48962:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48876:109;:::o;3228:723::-;3284:13;3514:1;3505:5;:10;3501:53;;3532:10;;;;;;;;;;;;;;;;;;;;;3501:53;3564:12;3579:5;3564:20;;3595:14;3620:78;3635:1;3627:4;:9;3620:78;;3653:8;;;;;:::i;:::-;;;;3684:2;3676:10;;;;;:::i;:::-;;;3620:78;;;3708:19;3740:6;3730:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3708:39;;3758:154;3774:1;3765:5;:10;3758:154;;3802:1;3792:11;;;;;:::i;:::-;;;3869:2;3861:5;:10;;;;:::i;:::-;3848:2;:24;;;;:::i;:::-;3835:39;;3818:6;3825;3818:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3898:2;3889:11;;;;;:::i;:::-;;;3758:154;;;3936:6;3922:21;;;;;3228:723;;;;:::o;46605:159::-;;;;;:::o;47423:158::-;;;;;:::o;37094:163::-;37217:32;37223:2;37227:8;37237:5;37244:4;37217:5;:32::i;:::-;37094:163;;;:::o;37516:1775::-;37655:20;37678:13;;37655:36;;37720:1;37706:16;;:2;:16;;;37702:48;;37731:19;;;;;;;;;;;;;;37702:48;37777:1;37765:8;:13;37761:44;;37787:18;;;;;;;;;;;;;;37761:44;37818:61;37848:1;37852:2;37856:12;37870:8;37818:21;:61::i;:::-;38191:8;38156:12;:16;38169:2;38156:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38255:8;38215:12;:16;38228:2;38215:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38314:2;38281:11;:25;38293:12;38281:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38381:15;38331:11;:25;38343:12;38331:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38414:20;38437:12;38414:35;;38464:11;38493:8;38478:12;:23;38464:37;;38522:4;:23;;;;;38530:15;:2;:13;;;:15::i;:::-;38522:23;38518:641;;;38566:314;38622:12;38618:2;38597:38;;38614:1;38597:38;;;;;;;;;;;;38663:69;38702:1;38706:2;38710:14;;;;;;38726:5;38663:30;:69::i;:::-;38658:174;;38768:40;;;;;;;;;;;;;;38658:174;38875:3;38859:12;:19;38566:314;;38961:12;38944:13;;:29;38940:43;;38975:8;;;38940:43;38518:641;;;39024:120;39080:14;;;;;;39076:2;39055:40;;39072:1;39055:40;;;;;;;;;;;;39139:3;39123:12;:19;39024:120;;38518:641;39189:12;39173:13;:28;;;;38131:1082;;39223:60;39252:1;39256:2;39260:12;39274:8;39223:20;:60::i;:::-;37644:1647;37516:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:323::-;9145:6;9194:2;9182:9;9173:7;9169:23;9165:32;9162:119;;;9200:79;;:::i;:::-;9162:119;9320:1;9345:50;9387:7;9378:6;9367:9;9363:22;9345:50;:::i;:::-;9335:60;;9291:114;9089:323;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:182::-;13072:34;13068:1;13060:6;13056:14;13049:58;12932:182;:::o;13120:366::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:419::-;13658:4;13696:2;13685:9;13681:18;13673:26;;13745:9;13739:4;13735:20;13731:1;13720:9;13716:17;13709:47;13773:131;13899:4;13773:131;:::i;:::-;13765:139;;13492:419;;;:::o;13917:181::-;14057:33;14053:1;14045:6;14041:14;14034:57;13917:181;:::o;14104:366::-;14246:3;14267:67;14331:2;14326:3;14267:67;:::i;:::-;14260:74;;14343:93;14432:3;14343:93;:::i;:::-;14461:2;14456:3;14452:12;14445:19;;14104:366;;;:::o;14476:419::-;14642:4;14680:2;14669:9;14665:18;14657:26;;14729:9;14723:4;14719:20;14715:1;14704:9;14700:17;14693:47;14757:131;14883:4;14757:131;:::i;:::-;14749:139;;14476:419;;;:::o;14901:180::-;14949:77;14946:1;14939:88;15046:4;15043:1;15036:15;15070:4;15067:1;15060:15;15087:180;15135:77;15132:1;15125:88;15232:4;15229:1;15222:15;15256:4;15253:1;15246:15;15273:185;15313:1;15330:20;15348:1;15330:20;:::i;:::-;15325:25;;15364:20;15382:1;15364:20;:::i;:::-;15359:25;;15403:1;15393:35;;15408:18;;:::i;:::-;15393:35;15450:1;15447;15443:9;15438:14;;15273:185;;;;:::o;15464:170::-;15604:22;15600:1;15592:6;15588:14;15581:46;15464:170;:::o;15640:366::-;15782:3;15803:67;15867:2;15862:3;15803:67;:::i;:::-;15796:74;;15879:93;15968:3;15879:93;:::i;:::-;15997:2;15992:3;15988:12;15981:19;;15640:366;;;:::o;16012:419::-;16178:4;16216:2;16205:9;16201:18;16193:26;;16265:9;16259:4;16255:20;16251:1;16240:9;16236:17;16229:47;16293:131;16419:4;16293:131;:::i;:::-;16285:139;;16012:419;;;:::o;16437:191::-;16477:3;16496:20;16514:1;16496:20;:::i;:::-;16491:25;;16530:20;16548:1;16530:20;:::i;:::-;16525:25;;16573:1;16570;16566:9;16559:16;;16594:3;16591:1;16588:10;16585:36;;;16601:18;;:::i;:::-;16585:36;16437:191;;;;:::o;16634:170::-;16774:22;16770:1;16762:6;16758:14;16751:46;16634:170;:::o;16810:366::-;16952:3;16973:67;17037:2;17032:3;16973:67;:::i;:::-;16966:74;;17049:93;17138:3;17049:93;:::i;:::-;17167:2;17162:3;17158:12;17151:19;;16810:366;;;:::o;17182:419::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17182:419;;;:::o;17607:166::-;17747:18;17743:1;17735:6;17731:14;17724:42;17607:166;:::o;17779:366::-;17921:3;17942:67;18006:2;18001:3;17942:67;:::i;:::-;17935:74;;18018:93;18107:3;18018:93;:::i;:::-;18136:2;18131:3;18127:12;18120:19;;17779:366;;;:::o;18151:419::-;18317:4;18355:2;18344:9;18340:18;18332:26;;18404:9;18398:4;18394:20;18390:1;18379:9;18375:17;18368:47;18432:131;18558:4;18432:131;:::i;:::-;18424:139;;18151:419;;;:::o;18576:141::-;18625:4;18648:3;18640:11;;18671:3;18668:1;18661:14;18705:4;18702:1;18692:18;18684:26;;18576:141;;;:::o;18723:93::-;18760:6;18807:2;18802;18795:5;18791:14;18787:23;18777:33;;18723:93;;;:::o;18822:107::-;18866:8;18916:5;18910:4;18906:16;18885:37;;18822:107;;;;:::o;18935:393::-;19004:6;19054:1;19042:10;19038:18;19077:97;19107:66;19096:9;19077:97;:::i;:::-;19195:39;19225:8;19214:9;19195:39;:::i;:::-;19183:51;;19267:4;19263:9;19256:5;19252:21;19243:30;;19316:4;19306:8;19302:19;19295:5;19292:30;19282:40;;19011:317;;18935:393;;;;;:::o;19334:60::-;19362:3;19383:5;19376:12;;19334:60;;;:::o;19400:142::-;19450:9;19483:53;19501:34;19510:24;19528:5;19510:24;:::i;:::-;19501:34;:::i;:::-;19483:53;:::i;:::-;19470:66;;19400:142;;;:::o;19548:75::-;19591:3;19612:5;19605:12;;19548:75;;;:::o;19629:269::-;19739:39;19770:7;19739:39;:::i;:::-;19800:91;19849:41;19873:16;19849:41;:::i;:::-;19841:6;19834:4;19828:11;19800:91;:::i;:::-;19794:4;19787:105;19705:193;19629:269;;;:::o;19904:73::-;19949:3;19904:73;:::o;19983:189::-;20060:32;;:::i;:::-;20101:65;20159:6;20151;20145:4;20101:65;:::i;:::-;20036:136;19983:189;;:::o;20178:186::-;20238:120;20255:3;20248:5;20245:14;20238:120;;;20309:39;20346:1;20339:5;20309:39;:::i;:::-;20282:1;20275:5;20271:13;20262:22;;20238:120;;;20178:186;;:::o;20370:543::-;20471:2;20466:3;20463:11;20460:446;;;20505:38;20537:5;20505:38;:::i;:::-;20589:29;20607:10;20589:29;:::i;:::-;20579:8;20575:44;20772:2;20760:10;20757:18;20754:49;;;20793:8;20778:23;;20754:49;20816:80;20872:22;20890:3;20872:22;:::i;:::-;20862:8;20858:37;20845:11;20816:80;:::i;:::-;20475:431;;20460:446;20370:543;;;:::o;20919:117::-;20973:8;21023:5;21017:4;21013:16;20992:37;;20919:117;;;;:::o;21042:169::-;21086:6;21119:51;21167:1;21163:6;21155:5;21152:1;21148:13;21119:51;:::i;:::-;21115:56;21200:4;21194;21190:15;21180:25;;21093:118;21042:169;;;;:::o;21216:295::-;21292:4;21438:29;21463:3;21457:4;21438:29;:::i;:::-;21430:37;;21500:3;21497:1;21493:11;21487:4;21484:21;21476:29;;21216:295;;;;:::o;21516:1395::-;21633:37;21666:3;21633:37;:::i;:::-;21735:18;21727:6;21724:30;21721:56;;;21757:18;;:::i;:::-;21721:56;21801:38;21833:4;21827:11;21801:38;:::i;:::-;21886:67;21946:6;21938;21932:4;21886:67;:::i;:::-;21980:1;22004:4;21991:17;;22036:2;22028:6;22025:14;22053:1;22048:618;;;;22710:1;22727:6;22724:77;;;22776:9;22771:3;22767:19;22761:26;22752:35;;22724:77;22827:67;22887:6;22880:5;22827:67;:::i;:::-;22821:4;22814:81;22683:222;22018:887;;22048:618;22100:4;22096:9;22088:6;22084:22;22134:37;22166:4;22134:37;:::i;:::-;22193:1;22207:208;22221:7;22218:1;22215:14;22207:208;;;22300:9;22295:3;22291:19;22285:26;22277:6;22270:42;22351:1;22343:6;22339:14;22329:24;;22398:2;22387:9;22383:18;22370:31;;22244:4;22241:1;22237:12;22232:17;;22207:208;;;22443:6;22434:7;22431:19;22428:179;;;22501:9;22496:3;22492:19;22486:26;22544:48;22586:4;22578:6;22574:17;22563:9;22544:48;:::i;:::-;22536:6;22529:64;22451:156;22428:179;22653:1;22649;22641:6;22637:14;22633:22;22627:4;22620:36;22055:611;;;22018:887;;21608:1303;;;21516:1395;;:::o;22917:169::-;23057:21;23053:1;23045:6;23041:14;23034:45;22917:169;:::o;23092:366::-;23234:3;23255:67;23319:2;23314:3;23255:67;:::i;:::-;23248:74;;23331:93;23420:3;23331:93;:::i;:::-;23449:2;23444:3;23440:12;23433:19;;23092:366;;;:::o;23464:419::-;23630:4;23668:2;23657:9;23653:18;23645:26;;23717:9;23711:4;23707:20;23703:1;23692:9;23688:17;23681:47;23745:131;23871:4;23745:131;:::i;:::-;23737:139;;23464:419;;;:::o;23889:410::-;23929:7;23952:20;23970:1;23952:20;:::i;:::-;23947:25;;23986:20;24004:1;23986:20;:::i;:::-;23981:25;;24041:1;24038;24034:9;24063:30;24081:11;24063:30;:::i;:::-;24052:41;;24242:1;24233:7;24229:15;24226:1;24223:22;24203:1;24196:9;24176:83;24153:139;;24272:18;;:::i;:::-;24153:139;23937:362;23889:410;;;;:::o;24305:194::-;24345:4;24365:20;24383:1;24365:20;:::i;:::-;24360:25;;24399:20;24417:1;24399:20;:::i;:::-;24394:25;;24443:1;24440;24436:9;24428:17;;24467:1;24461:4;24458:11;24455:37;;;24472:18;;:::i;:::-;24455:37;24305:194;;;;:::o;24505:169::-;24645:21;24641:1;24633:6;24629:14;24622:45;24505:169;:::o;24680:366::-;24822:3;24843:67;24907:2;24902:3;24843:67;:::i;:::-;24836:74;;24919:93;25008:3;24919:93;:::i;:::-;25037:2;25032:3;25028:12;25021:19;;24680:366;;;:::o;25052:419::-;25218:4;25256:2;25245:9;25241:18;25233:26;;25305:9;25299:4;25295:20;25291:1;25280:9;25276:17;25269:47;25333:131;25459:4;25333:131;:::i;:::-;25325:139;;25052:419;;;:::o;25477:172::-;25617:24;25613:1;25605:6;25601:14;25594:48;25477:172;:::o;25655:366::-;25797:3;25818:67;25882:2;25877:3;25818:67;:::i;:::-;25811:74;;25894:93;25983:3;25894:93;:::i;:::-;26012:2;26007:3;26003:12;25996:19;;25655:366;;;:::o;26027:419::-;26193:4;26231:2;26220:9;26216:18;26208:26;;26280:9;26274:4;26270:20;26266:1;26255:9;26251:17;26244:47;26308:131;26434:4;26308:131;:::i;:::-;26300:139;;26027:419;;;:::o;26452:148::-;26554:11;26591:3;26576:18;;26452:148;;;;:::o;26606:390::-;26712:3;26740:39;26773:5;26740:39;:::i;:::-;26795:89;26877:6;26872:3;26795:89;:::i;:::-;26788:96;;26893:65;26951:6;26946:3;26939:4;26932:5;26928:16;26893:65;:::i;:::-;26983:6;26978:3;26974:16;26967:23;;26716:280;26606:390;;;;:::o;27002:155::-;27142:7;27138:1;27130:6;27126:14;27119:31;27002:155;:::o;27163:400::-;27323:3;27344:84;27426:1;27421:3;27344:84;:::i;:::-;27337:91;;27437:93;27526:3;27437:93;:::i;:::-;27555:1;27550:3;27546:11;27539:18;;27163:400;;;:::o;27569:701::-;27850:3;27872:95;27963:3;27954:6;27872:95;:::i;:::-;27865:102;;27984:95;28075:3;28066:6;27984:95;:::i;:::-;27977:102;;28096:148;28240:3;28096:148;:::i;:::-;28089:155;;28261:3;28254:10;;27569:701;;;;;:::o;28276:225::-;28416:34;28412:1;28404:6;28400:14;28393:58;28485:8;28480:2;28472:6;28468:15;28461:33;28276:225;:::o;28507:366::-;28649:3;28670:67;28734:2;28729:3;28670:67;:::i;:::-;28663:74;;28746:93;28835:3;28746:93;:::i;:::-;28864:2;28859:3;28855:12;28848:19;;28507:366;;;:::o;28879:419::-;29045:4;29083:2;29072:9;29068:18;29060:26;;29132:9;29126:4;29122:20;29118:1;29107:9;29103:17;29096:47;29160:131;29286:4;29160:131;:::i;:::-;29152:139;;28879:419;;;:::o;29304:179::-;29444:31;29440:1;29432:6;29428:14;29421:55;29304:179;:::o;29489:366::-;29631:3;29652:67;29716:2;29711:3;29652:67;:::i;:::-;29645:74;;29728:93;29817:3;29728:93;:::i;:::-;29846:2;29841:3;29837:12;29830:19;;29489:366;;;:::o;29861:419::-;30027:4;30065:2;30054:9;30050:18;30042:26;;30114:9;30108:4;30104:20;30100:1;30089:9;30085:17;30078:47;30142:131;30268:4;30142:131;:::i;:::-;30134:139;;29861:419;;;:::o;30286:147::-;30387:11;30424:3;30409:18;;30286:147;;;;:::o;30439:114::-;;:::o;30559:398::-;30718:3;30739:83;30820:1;30815:3;30739:83;:::i;:::-;30732:90;;30831:93;30920:3;30831:93;:::i;:::-;30949:1;30944:3;30940:11;30933:18;;30559:398;;;:::o;30963:379::-;31147:3;31169:147;31312:3;31169:147;:::i;:::-;31162:154;;31333:3;31326:10;;30963:379;;;:::o;31348:245::-;31488:34;31484:1;31476:6;31472:14;31465:58;31557:28;31552:2;31544:6;31540:15;31533:53;31348:245;:::o;31599:366::-;31741:3;31762:67;31826:2;31821:3;31762:67;:::i;:::-;31755:74;;31838:93;31927:3;31838:93;:::i;:::-;31956:2;31951:3;31947:12;31940:19;;31599:366;;;:::o;31971:419::-;32137:4;32175:2;32164:9;32160:18;32152:26;;32224:9;32218:4;32214:20;32210:1;32199:9;32195:17;32188:47;32252:131;32378:4;32252:131;:::i;:::-;32244:139;;31971:419;;;:::o;32396:98::-;32447:6;32481:5;32475:12;32465:22;;32396:98;;;:::o;32500:168::-;32583:11;32617:6;32612:3;32605:19;32657:4;32652:3;32648:14;32633:29;;32500:168;;;;:::o;32674:373::-;32760:3;32788:38;32820:5;32788:38;:::i;:::-;32842:70;32905:6;32900:3;32842:70;:::i;:::-;32835:77;;32921:65;32979:6;32974:3;32967:4;32960:5;32956:16;32921:65;:::i;:::-;33011:29;33033:6;33011:29;:::i;:::-;33006:3;33002:39;32995:46;;32764:283;32674:373;;;;:::o;33053:640::-;33248:4;33286:3;33275:9;33271:19;33263:27;;33300:71;33368:1;33357:9;33353:17;33344:6;33300:71;:::i;:::-;33381:72;33449:2;33438:9;33434:18;33425:6;33381:72;:::i;:::-;33463;33531:2;33520:9;33516:18;33507:6;33463:72;:::i;:::-;33582:9;33576:4;33572:20;33567:2;33556:9;33552:18;33545:48;33610:76;33681:4;33672:6;33610:76;:::i;:::-;33602:84;;33053:640;;;;;;;:::o;33699:141::-;33755:5;33786:6;33780:13;33771:22;;33802:32;33828:5;33802:32;:::i;:::-;33699:141;;;;:::o;33846:349::-;33915:6;33964:2;33952:9;33943:7;33939:23;33935:32;33932:119;;;33970:79;;:::i;:::-;33932:119;34090:1;34115:63;34170:7;34161:6;34150:9;34146:22;34115:63;:::i;:::-;34105:73;;34061:127;33846:349;;;;:::o;34201:233::-;34240:3;34263:24;34281:5;34263:24;:::i;:::-;34254:33;;34309:66;34302:5;34299:77;34296:103;;34379:18;;:::i;:::-;34296:103;34426:1;34419:5;34415:13;34408:20;;34201:233;;;:::o;34440:176::-;34472:1;34489:20;34507:1;34489:20;:::i;:::-;34484:25;;34523:20;34541:1;34523:20;:::i;:::-;34518:25;;34562:1;34552:35;;34567:18;;:::i;:::-;34552:35;34608:1;34605;34601:9;34596:14;;34440:176;;;;:::o;34622:180::-;34670:77;34667:1;34660:88;34767:4;34764:1;34757:15;34791:4;34788:1;34781:15

Swarm Source

ipfs://7106c28957252dbb084cd58fde854cb0aa8f1842b0edc2f62fe078dbeba5a9e9
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.