ETH Price: $3,327.96 (-0.97%)

Token

PoSApeVoxels (PoSApeVoxels)
 

Overview

Max Total Supply

83 PoSApeVoxels

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PoSApeVoxels
0xdf6c663F53C7A8cEA96169b10A1d0C2b4d57303F
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:
PoSApeVoxels

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-09-22
*/

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

        if (_msgSender() != owner && !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/HEDZ.sol



pragma solidity ^0.8.4;




contract PoSApeVoxels 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("PoSApeVoxels", "PoSApeVoxels") {
        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 **/

    function withdraw() public onlyOwner nonReentrant {
        uint256 amount = address(this).balance;
        Address.sendValue(
            payable(0x5702d14ba1b42fF87b3E75cb4F94685D0dd90010),
            amount
        );
    }
}

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"}]

60806040523480156200001157600080fd5b506040516200483438038062004834833981810160405281019062000037919062000441565b6040518060400160405280600c81526020017f506f53417065566f78656c7300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f506f53417065566f78656c7300000000000000000000000000000000000000008152508160029081620000b4919062000754565b508060039081620000c6919062000754565b50620000d76200016360201b60201c565b6000819055505050620000ff620000f36200016860201b60201c565b6200017060201b60201c565b600160098190555086600a8190555085600b8190555084600c908162000126919062000754565b5083600d8190555082600e8190555081600f60006101000a81548160ff02191690831515021790555080601081905550505050505050506200083b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200025f816200024a565b81146200026b57600080fd5b50565b6000815190506200027f8162000254565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002da826200028f565b810181811067ffffffffffffffff82111715620002fc57620002fb620002a0565b5b80604052505050565b60006200031162000236565b90506200031f8282620002cf565b919050565b600067ffffffffffffffff821115620003425762000341620002a0565b5b6200034d826200028f565b9050602081019050919050565b60005b838110156200037a5780820151818401526020810190506200035d565b60008484015250505050565b60006200039d620003978462000324565b62000305565b905082815260208101848484011115620003bc57620003bb6200028a565b5b620003c98482856200035a565b509392505050565b600082601f830112620003e957620003e862000285565b5b8151620003fb84826020860162000386565b91505092915050565b60008115159050919050565b6200041b8162000404565b81146200042757600080fd5b50565b6000815190506200043b8162000410565b92915050565b600080600080600080600060e0888a03121562000463576200046262000240565b5b6000620004738a828b016200026e565b9750506020620004868a828b016200026e565b965050604088015167ffffffffffffffff811115620004aa57620004a962000245565b5b620004b88a828b01620003d1565b9550506060620004cb8a828b016200026e565b9450506080620004de8a828b016200026e565b93505060a0620004f18a828b016200042a565b92505060c0620005048a828b016200026e565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056657607f821691505b6020821081036200057c576200057b6200051e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005a7565b620005f28683620005a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006356200062f62000629846200024a565b6200060a565b6200024a565b9050919050565b6000819050919050565b620006518362000614565b6200066962000660826200063c565b848454620005b4565b825550505050565b600090565b6200068062000671565b6200068d81848462000646565b505050565b5b81811015620006b557620006a960008262000676565b60018101905062000693565b5050565b601f8211156200070457620006ce8162000582565b620006d98462000597565b81016020851015620006e9578190505b62000701620006f88562000597565b83018262000692565b50505b505050565b600082821c905092915050565b6000620007296000198460080262000709565b1980831691505092915050565b600062000744838362000716565b9150826002028217905092915050565b6200075f8262000513565b67ffffffffffffffff8111156200077b576200077a620002a0565b5b6200078782546200054d565b62000794828285620006b9565b600060209050601f831160018114620007cc5760008415620007b7578287015190505b620007c3858262000736565b86555062000833565b601f198416620007dc8662000582565b60005b828110156200080657848901518255600182019150602085019450602081019050620007df565b8683101562000826578489015162000822601f89168262000716565b8355505b6001600288020188555050505b505050505050565b613fe9806200084b6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e16565b6107ef565b60405161023d9190612e5e565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f09565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f61565b610963565b6040516102a59190612fcf565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613016565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613065565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613065565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613065565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613080565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613065565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c19565b6040516103e59190613065565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613016565b610c1f565b005b34801561042357600080fd5b5061043e60048036038101906104399190613080565b610d4e565b005b34801561044c57600080fd5b5061046760048036038101906104629190613208565b610d6e565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f61565b610e4d565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612f61565b610ed3565b6040516104c69190612fcf565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613251565b610ee9565b6040516105039190613065565b60405180910390f35b34801561051857600080fd5b50610521610fb8565b005b34801561052f57600080fd5b50610538611040565b6040516105459190612e5e565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906132aa565b611053565b005b34801561058357600080fd5b5061059e60048036038101906105999190612f61565b6110ec565b005b3480156105ac57600080fd5b506105b5611172565b6040516105c29190613065565b60405180910390f35b3480156105d757600080fd5b506105e0611178565b6040516105ed9190612fcf565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612f61565b6111a2565b005b34801561062b57600080fd5b50610634611228565b6040516106419190612f09565b60405180910390f35b610664600480360381019061065f9190612f61565b6112ba565b005b34801561067257600080fd5b5061068d600480360381019061068891906132d7565b6114d1565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612f61565b611648565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133b8565b6116ce565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612f61565b61174a565b005b34801561071657600080fd5b50610731600480360381019061072c9190612f61565b611859565b60405161073e9190612f09565b60405180910390f35b34801561075357600080fd5b5061075c6118f7565b005b34801561076a57600080fd5b506107856004803603810190610780919061343b565b611990565b6040516107929190612e5e565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613251565b611a24565b005b3480156107d057600080fd5b506107d9611b1b565b6040516107e69190612e5e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b2e565b5b9050919050565b6060600280546108e0906134aa565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906134aa565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611b98565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ed3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611be6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611be6565b611990565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611bee565b505050565b600e5481565b600d5481565b6000610aff611ca0565b6001546000540303905090565b610b17838383611ca5565b505050565b600b5481565b610b2a611be6565b73ffffffffffffffffffffffffffffffffffffffff16610b48611178565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613527565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613593565b60405180910390fd5b60026009819055506000479050610c0e735702d14ba1b42ff87b3e75cb4f94685d0dd9001082612159565b506001600981905550565b60105481565b80600081118015610c325750600e548111155b610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906135ff565b60405180910390fd5b600b5481600054610c82919061364e565b1115610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906136ce565b60405180910390fd5b610ccb611be6565b73ffffffffffffffffffffffffffffffffffffffff16610ce9611178565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613527565b60405180910390fd5b610d49838361224d565b505050565b610d69838383604051806020016040528060008152506116ce565b505050565b610d76611be6565b73ffffffffffffffffffffffffffffffffffffffff16610d94611178565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613527565b60405180910390fd5b601160009054906101000a900460ff1615610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061373a565b60405180910390fd5b80600c9081610e499190613906565b5050565b610e55611be6565b73ffffffffffffffffffffffffffffffffffffffff16610e73611178565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613527565b60405180910390fd5b80600e8190555050565b6000610ede8261226b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f50576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc0611be6565b73ffffffffffffffffffffffffffffffffffffffff16610fde611178565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613527565b60405180910390fd5b61103e60006124fa565b565b600f60009054906101000a900460ff1681565b61105b611be6565b73ffffffffffffffffffffffffffffffffffffffff16611079611178565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613527565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6110f4611be6565b73ffffffffffffffffffffffffffffffffffffffff16611112611178565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90613527565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111aa611be6565b73ffffffffffffffffffffffffffffffffffffffff166111c8611178565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613527565b60405180910390fd5b80600a8190555050565b606060038054611237906134aa565b80601f0160208091040260200160405190810160405280929190818152602001828054611263906134aa565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b806000811180156112cd5750600e548111155b61130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906135ff565b60405180910390fd5b600b548160005461131d919061364e565b111561135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906136ce565b60405180910390fd5b600f60009054906101000a900460ff166113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613a24565b60405180910390fd5b600082600a546113bd9190613a44565b9050601054600054101561147f576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461141a9190613a86565b9050600081111561147d5780841061145657600a548161143a9190613a44565b826114459190613a86565b915061145133826125c0565b61147c565b600a54846114649190613a44565b8261146f9190613a86565b915061147b33856125c0565b5b5b505b803410156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613b06565b60405180910390fd5b6114cc338461224d565b505050565b6114d9611be6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061154a611be6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f7611be6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163c9190612e5e565b60405180910390a35050565b611650611be6565b73ffffffffffffffffffffffffffffffffffffffff1661166e611178565b73ffffffffffffffffffffffffffffffffffffffff16146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb90613527565b60405180910390fd5b80600d8190555050565b6116d9848484611ca5565b6116f88373ffffffffffffffffffffffffffffffffffffffff1661261a565b801561170d575061170b8484848461263d565b155b15611744576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611752611be6565b73ffffffffffffffffffffffffffffffffffffffff16611770611178565b73ffffffffffffffffffffffffffffffffffffffff16146117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613527565b60405180910390fd5b600b54811061180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613b72565b60405180910390fd5b60005481101561184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690613b72565b60405180910390fd5b80600b8190555050565b606061186482611b98565b61189a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118a461278d565b905060008151036118c457604051806020016040528060008152506118ef565b806118ce8461281f565b6040516020016118df929190613bce565b6040516020818303038152906040525b915050919050565b6118ff611be6565b73ffffffffffffffffffffffffffffffffffffffff1661191d611178565b73ffffffffffffffffffffffffffffffffffffffff1614611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90613527565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2c611be6565b73ffffffffffffffffffffffffffffffffffffffff16611a4a611178565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613527565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613c64565b60405180910390fd5b611b18816124fa565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ba3611ca0565b11158015611bb2575060005482105b8015611bdf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cb08261226b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d3c611be6565b73ffffffffffffffffffffffffffffffffffffffff161480611d6b5750611d6a85611d65611be6565b611990565b5b80611db05750611d79611be6565b73ffffffffffffffffffffffffffffffffffffffff16611d9884610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611de9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5c858585600161297f565b611e6860008487611bee565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120e75760005482146120e657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121528585856001612985565b5050505050565b8047101561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390613cd0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121c290613d21565b60006040518083038185875af1925050503d80600081146121ff576040519150601f19603f3d011682016040523d82523d6000602084013e612204565b606091505b5050905080612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f90613da8565b60405180910390fd5b505050565b61226782826040518060200160405280600081525061298b565b5050565b612273612d67565b600082905080612281611ca0565b11158015612290575060005481105b156124c3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124c157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a55780925050506124f5565b5b6001156124c057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124bb5780925050506124f5565b6123a6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461260f919061364e565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612663611be6565b8786866040518563ffffffff1660e01b81526004016126859493929190613e1d565b6020604051808303816000875af19250505080156126c157506040513d601f19601f820116820180604052508101906126be9190613e7e565b60015b61273a573d80600081146126f1576040519150601f19603f3d011682016040523d82523d6000602084013e6126f6565b606091505b506000815103612732576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461279c906134aa565b80601f01602080910402602001604051908101604052809291908181526020018280546127c8906134aa565b80156128155780601f106127ea57610100808354040283529160200191612815565b820191906000526020600020905b8154815290600101906020018083116127f857829003601f168201915b5050505050905090565b606060008203612866576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297a565b600082905060005b6000821461289857808061288190613eab565b915050600a826128919190613f22565b915061286e565b60008167ffffffffffffffff8111156128b4576128b36130dd565b5b6040519080825280601f01601f1916602001820160405280156128e65781602001600182028036833780820191505090505b5090505b60008514612973576001826128ff9190613a86565b9150600a8561290e9190613f53565b603061291a919061364e565b60f81b8183815181106129305761292f613f84565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561296c9190613f22565b94506128ea565b8093505050505b919050565b50505050565b50505050565b612998838383600161299d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a50600086838761297f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c1a5750612c198773ffffffffffffffffffffffffffffffffffffffff1661261a565b5b15612cdf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8f600088848060010195508861263d565b612cc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c20578260005414612cda57600080fd5b612d4a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612ce0575b816000819055505050612d606000868387612985565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612df381612dbe565b8114612dfe57600080fd5b50565b600081359050612e1081612dea565b92915050565b600060208284031215612e2c57612e2b612db4565b5b6000612e3a84828501612e01565b91505092915050565b60008115159050919050565b612e5881612e43565b82525050565b6000602082019050612e736000830184612e4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eb3578082015181840152602081019050612e98565b60008484015250505050565b6000601f19601f8301169050919050565b6000612edb82612e79565b612ee58185612e84565b9350612ef5818560208601612e95565b612efe81612ebf565b840191505092915050565b60006020820190508181036000830152612f238184612ed0565b905092915050565b6000819050919050565b612f3e81612f2b565b8114612f4957600080fd5b50565b600081359050612f5b81612f35565b92915050565b600060208284031215612f7757612f76612db4565b5b6000612f8584828501612f4c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fb982612f8e565b9050919050565b612fc981612fae565b82525050565b6000602082019050612fe46000830184612fc0565b92915050565b612ff381612fae565b8114612ffe57600080fd5b50565b60008135905061301081612fea565b92915050565b6000806040838503121561302d5761302c612db4565b5b600061303b85828601613001565b925050602061304c85828601612f4c565b9150509250929050565b61305f81612f2b565b82525050565b600060208201905061307a6000830184613056565b92915050565b60008060006060848603121561309957613098612db4565b5b60006130a786828701613001565b93505060206130b886828701613001565b92505060406130c986828701612f4c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61311582612ebf565b810181811067ffffffffffffffff82111715613134576131336130dd565b5b80604052505050565b6000613147612daa565b9050613153828261310c565b919050565b600067ffffffffffffffff821115613173576131726130dd565b5b61317c82612ebf565b9050602081019050919050565b82818337600083830152505050565b60006131ab6131a684613158565b61313d565b9050828152602081018484840111156131c7576131c66130d8565b5b6131d2848285613189565b509392505050565b600082601f8301126131ef576131ee6130d3565b5b81356131ff848260208601613198565b91505092915050565b60006020828403121561321e5761321d612db4565b5b600082013567ffffffffffffffff81111561323c5761323b612db9565b5b613248848285016131da565b91505092915050565b60006020828403121561326757613266612db4565b5b600061327584828501613001565b91505092915050565b61328781612e43565b811461329257600080fd5b50565b6000813590506132a48161327e565b92915050565b6000602082840312156132c0576132bf612db4565b5b60006132ce84828501613295565b91505092915050565b600080604083850312156132ee576132ed612db4565b5b60006132fc85828601613001565b925050602061330d85828601613295565b9150509250929050565b600067ffffffffffffffff821115613332576133316130dd565b5b61333b82612ebf565b9050602081019050919050565b600061335b61335684613317565b61313d565b905082815260208101848484011115613377576133766130d8565b5b613382848285613189565b509392505050565b600082601f83011261339f5761339e6130d3565b5b81356133af848260208601613348565b91505092915050565b600080600080608085870312156133d2576133d1612db4565b5b60006133e087828801613001565b94505060206133f187828801613001565b935050604061340287828801612f4c565b925050606085013567ffffffffffffffff81111561342357613422612db9565b5b61342f8782880161338a565b91505092959194509250565b6000806040838503121561345257613451612db4565b5b600061346085828601613001565b925050602061347185828601613001565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134c257607f821691505b6020821081036134d5576134d461347b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613511602083612e84565b915061351c826134db565b602082019050919050565b6000602082019050818103600083015261354081613504565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061357d601f83612e84565b915061358882613547565b602082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006135e9601483612e84565b91506135f4826135b3565b602082019050919050565b60006020820190508181036000830152613618816135dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061365982612f2b565b915061366483612f2b565b925082820190508082111561367c5761367b61361f565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136b8601483612e84565b91506136c382613682565b602082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613724601083612e84565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261377f565b6137c6868361377f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006138036137fe6137f984612f2b565b6137de565b612f2b565b9050919050565b6000819050919050565b61381d836137e8565b6138316138298261380a565b84845461378c565b825550505050565b600090565b613846613839565b613851818484613814565b505050565b5b818110156138755761386a60008261383e565b600181019050613857565b5050565b601f8211156138ba5761388b8161375a565b6138948461376f565b810160208510156138a3578190505b6138b76138af8561376f565b830182613856565b50505b505050565b600082821c905092915050565b60006138dd600019846008026138bf565b1980831691505092915050565b60006138f683836138cc565b9150826002028217905092915050565b61390f82612e79565b67ffffffffffffffff811115613928576139276130dd565b5b61393282546134aa565b61393d828285613879565b600060209050601f831160018114613970576000841561395e578287015190505b61396885826138ea565b8655506139d0565b601f19841661397e8661375a565b60005b828110156139a657848901518255600182019150602085019450602081019050613981565b868310156139c357848901516139bf601f8916826138cc565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613a0e601383612e84565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b6000613a4f82612f2b565b9150613a5a83612f2b565b9250828202613a6881612f2b565b91508282048414831517613a7f57613a7e61361f565b5b5092915050565b6000613a9182612f2b565b9150613a9c83612f2b565b9250828203905081811115613ab457613ab361361f565b5b92915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613af0601383612e84565b9150613afb82613aba565b602082019050919050565b60006020820190508181036000830152613b1f81613ae3565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613b5c601683612e84565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b600081905092915050565b6000613ba882612e79565b613bb28185613b92565b9350613bc2818560208601612e95565b80840191505092915050565b6000613bda8285613b9d565b9150613be68284613b9d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c4e602683612e84565b9150613c5982613bf2565b604082019050919050565b60006020820190508181036000830152613c7d81613c41565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613cba601d83612e84565b9150613cc582613c84565b602082019050919050565b60006020820190508181036000830152613ce981613cad565b9050919050565b600081905092915050565b50565b6000613d0b600083613cf0565b9150613d1682613cfb565b600082019050919050565b6000613d2c82613cfe565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613d92603a83612e84565b9150613d9d82613d36565b604082019050919050565b60006020820190508181036000830152613dc181613d85565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613def82613dc8565b613df98185613dd3565b9350613e09818560208601612e95565b613e1281612ebf565b840191505092915050565b6000608082019050613e326000830187612fc0565b613e3f6020830186612fc0565b613e4c6040830185613056565b8181036060830152613e5e8184613de4565b905095945050505050565b600081519050613e7881612dea565b92915050565b600060208284031215613e9457613e93612db4565b5b6000613ea284828501613e69565b91505092915050565b6000613eb682612f2b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ee857613ee761361f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f2d82612f2b565b9150613f3883612f2b565b925082613f4857613f47613ef3565b5b828204905092915050565b6000613f5e82612f2b565b9150613f6983612f2b565b925082613f7957613f78613ef3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122096c0ae65c12347d07609083542cc743e205a2d0070aa15d7bcf765917b864c7464736f6c63430008110033000000000000000000000000000000000000000000000000000a4d88ddd94000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5872626635643463517264774d7475424c396944645136746963554c6d4446545636383671335779624358682f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d111515d14610747578063e985e9c51461075e578063f2fde38b1461079b578063fdb4953a146107c457610204565b8063a22cb46514610666578063b0551ac41461068f578063b88d4fde146106b8578063c4e9374d146106e157610204565b80638d859f3e116100e75780638d859f3e146105a05780638da5cb5b146105cb57806391b7f5ed146105f657806395d89b411461061f578063a0712d681461064a57610204565b8063715018a61461050c57806376d02b7114610523578063841718a61461054e5780638b85e43d1461057757610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461041757806355f804b314610440578063616cdb1e146104695780636352211e1461049257806370a08231146104cf57610204565b806332cb6b0c146103815780633ccfd60b146103ac5780634065b85f146103c3578063408cbf94146103ee57610204565b806309ef6527116101d757806309ef6527146102d757806310b0c0521461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e16565b6107ef565b60405161023d9190612e5e565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612f09565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f61565b610963565b6040516102a59190612fcf565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613016565b6109df565b005b3480156102e357600080fd5b506102ec610ae9565b6040516102f99190613065565b60405180910390f35b34801561030e57600080fd5b50610317610aef565b6040516103249190613065565b60405180910390f35b34801561033957600080fd5b50610342610af5565b60405161034f9190613065565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613080565b610b0c565b005b34801561038d57600080fd5b50610396610b1c565b6040516103a39190613065565b60405180910390f35b3480156103b857600080fd5b506103c1610b22565b005b3480156103cf57600080fd5b506103d8610c19565b6040516103e59190613065565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613016565b610c1f565b005b34801561042357600080fd5b5061043e60048036038101906104399190613080565b610d4e565b005b34801561044c57600080fd5b5061046760048036038101906104629190613208565b610d6e565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f61565b610e4d565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612f61565b610ed3565b6040516104c69190612fcf565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613251565b610ee9565b6040516105039190613065565b60405180910390f35b34801561051857600080fd5b50610521610fb8565b005b34801561052f57600080fd5b50610538611040565b6040516105459190612e5e565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906132aa565b611053565b005b34801561058357600080fd5b5061059e60048036038101906105999190612f61565b6110ec565b005b3480156105ac57600080fd5b506105b5611172565b6040516105c29190613065565b60405180910390f35b3480156105d757600080fd5b506105e0611178565b6040516105ed9190612fcf565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612f61565b6111a2565b005b34801561062b57600080fd5b50610634611228565b6040516106419190612f09565b60405180910390f35b610664600480360381019061065f9190612f61565b6112ba565b005b34801561067257600080fd5b5061068d600480360381019061068891906132d7565b6114d1565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612f61565b611648565b005b3480156106c457600080fd5b506106df60048036038101906106da91906133b8565b6116ce565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612f61565b61174a565b005b34801561071657600080fd5b50610731600480360381019061072c9190612f61565b611859565b60405161073e9190612f09565b60405180910390f35b34801561075357600080fd5b5061075c6118f7565b005b34801561076a57600080fd5b506107856004803603810190610780919061343b565b611990565b6040516107929190612e5e565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613251565b611a24565b005b3480156107d057600080fd5b506107d9611b1b565b6040516107e69190612e5e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611b2e565b5b9050919050565b6060600280546108e0906134aa565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906134aa565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611b98565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610ed3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611be6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b611be6565b611990565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4838383611bee565b505050565b600e5481565b600d5481565b6000610aff611ca0565b6001546000540303905090565b610b17838383611ca5565b505050565b600b5481565b610b2a611be6565b73ffffffffffffffffffffffffffffffffffffffff16610b48611178565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613527565b60405180910390fd5b600260095403610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613593565b60405180910390fd5b60026009819055506000479050610c0e735702d14ba1b42ff87b3e75cb4f94685d0dd9001082612159565b506001600981905550565b60105481565b80600081118015610c325750600e548111155b610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906135ff565b60405180910390fd5b600b5481600054610c82919061364e565b1115610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906136ce565b60405180910390fd5b610ccb611be6565b73ffffffffffffffffffffffffffffffffffffffff16610ce9611178565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613527565b60405180910390fd5b610d49838361224d565b505050565b610d69838383604051806020016040528060008152506116ce565b505050565b610d76611be6565b73ffffffffffffffffffffffffffffffffffffffff16610d94611178565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613527565b60405180910390fd5b601160009054906101000a900460ff1615610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061373a565b60405180910390fd5b80600c9081610e499190613906565b5050565b610e55611be6565b73ffffffffffffffffffffffffffffffffffffffff16610e73611178565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613527565b60405180910390fd5b80600e8190555050565b6000610ede8261226b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f50576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc0611be6565b73ffffffffffffffffffffffffffffffffffffffff16610fde611178565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613527565b60405180910390fd5b61103e60006124fa565b565b600f60009054906101000a900460ff1681565b61105b611be6565b73ffffffffffffffffffffffffffffffffffffffff16611079611178565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613527565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6110f4611be6565b73ffffffffffffffffffffffffffffffffffffffff16611112611178565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90613527565b60405180910390fd5b8060108190555050565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111aa611be6565b73ffffffffffffffffffffffffffffffffffffffff166111c8611178565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613527565b60405180910390fd5b80600a8190555050565b606060038054611237906134aa565b80601f0160208091040260200160405190810160405280929190818152602001828054611263906134aa565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b806000811180156112cd5750600e548111155b61130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906135ff565b60405180910390fd5b600b548160005461131d919061364e565b111561135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906136ce565b60405180910390fd5b600f60009054906101000a900460ff166113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613a24565b60405180910390fd5b600082600a546113bd9190613a44565b9050601054600054101561147f576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461141a9190613a86565b9050600081111561147d5780841061145657600a548161143a9190613a44565b826114459190613a86565b915061145133826125c0565b61147c565b600a54846114649190613a44565b8261146f9190613a86565b915061147b33856125c0565b5b5b505b803410156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613b06565b60405180910390fd5b6114cc338461224d565b505050565b6114d9611be6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061154a611be6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f7611be6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163c9190612e5e565b60405180910390a35050565b611650611be6565b73ffffffffffffffffffffffffffffffffffffffff1661166e611178565b73ffffffffffffffffffffffffffffffffffffffff16146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb90613527565b60405180910390fd5b80600d8190555050565b6116d9848484611ca5565b6116f88373ffffffffffffffffffffffffffffffffffffffff1661261a565b801561170d575061170b8484848461263d565b155b15611744576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611752611be6565b73ffffffffffffffffffffffffffffffffffffffff16611770611178565b73ffffffffffffffffffffffffffffffffffffffff16146117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd90613527565b60405180910390fd5b600b54811061180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190613b72565b60405180910390fd5b60005481101561184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690613b72565b60405180910390fd5b80600b8190555050565b606061186482611b98565b61189a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118a461278d565b905060008151036118c457604051806020016040528060008152506118ef565b806118ce8461281f565b6040516020016118df929190613bce565b6040516020818303038152906040525b915050919050565b6118ff611be6565b73ffffffffffffffffffffffffffffffffffffffff1661191d611178565b73ffffffffffffffffffffffffffffffffffffffff1614611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90613527565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2c611be6565b73ffffffffffffffffffffffffffffffffffffffff16611a4a611178565b73ffffffffffffffffffffffffffffffffffffffff1614611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613527565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613c64565b60405180910390fd5b611b18816124fa565b50565b601160009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ba3611ca0565b11158015611bb2575060005482105b8015611bdf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611cb08261226b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d3c611be6565b73ffffffffffffffffffffffffffffffffffffffff161480611d6b5750611d6a85611d65611be6565b611990565b5b80611db05750611d79611be6565b73ffffffffffffffffffffffffffffffffffffffff16611d9884610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611de9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e4f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5c858585600161297f565b611e6860008487611bee565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120e75760005482146120e657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121528585856001612985565b5050505050565b8047101561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390613cd0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121c290613d21565b60006040518083038185875af1925050503d80600081146121ff576040519150601f19603f3d011682016040523d82523d6000602084013e612204565b606091505b5050905080612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f90613da8565b60405180910390fd5b505050565b61226782826040518060200160405280600081525061298b565b5050565b612273612d67565b600082905080612281611ca0565b11158015612290575060005481105b156124c3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124c157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a55780925050506124f5565b5b6001156124c057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124bb5780925050506124f5565b6123a6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461260f919061364e565b925050819055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612663611be6565b8786866040518563ffffffff1660e01b81526004016126859493929190613e1d565b6020604051808303816000875af19250505080156126c157506040513d601f19601f820116820180604052508101906126be9190613e7e565b60015b61273a573d80600081146126f1576040519150601f19603f3d011682016040523d82523d6000602084013e6126f6565b606091505b506000815103612732576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461279c906134aa565b80601f01602080910402602001604051908101604052809291908181526020018280546127c8906134aa565b80156128155780601f106127ea57610100808354040283529160200191612815565b820191906000526020600020905b8154815290600101906020018083116127f857829003601f168201915b5050505050905090565b606060008203612866576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297a565b600082905060005b6000821461289857808061288190613eab565b915050600a826128919190613f22565b915061286e565b60008167ffffffffffffffff8111156128b4576128b36130dd565b5b6040519080825280601f01601f1916602001820160405280156128e65781602001600182028036833780820191505090505b5090505b60008514612973576001826128ff9190613a86565b9150600a8561290e9190613f53565b603061291a919061364e565b60f81b8183815181106129305761292f613f84565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561296c9190613f22565b94506128ea565b8093505050505b919050565b50505050565b50505050565b612998838383600161299d565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a50600086838761297f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c1a5750612c198773ffffffffffffffffffffffffffffffffffffffff1661261a565b5b15612cdf575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8f600088848060010195508861263d565b612cc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612c20578260005414612cda57600080fd5b612d4a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612ce0575b816000819055505050612d606000868387612985565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612df381612dbe565b8114612dfe57600080fd5b50565b600081359050612e1081612dea565b92915050565b600060208284031215612e2c57612e2b612db4565b5b6000612e3a84828501612e01565b91505092915050565b60008115159050919050565b612e5881612e43565b82525050565b6000602082019050612e736000830184612e4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eb3578082015181840152602081019050612e98565b60008484015250505050565b6000601f19601f8301169050919050565b6000612edb82612e79565b612ee58185612e84565b9350612ef5818560208601612e95565b612efe81612ebf565b840191505092915050565b60006020820190508181036000830152612f238184612ed0565b905092915050565b6000819050919050565b612f3e81612f2b565b8114612f4957600080fd5b50565b600081359050612f5b81612f35565b92915050565b600060208284031215612f7757612f76612db4565b5b6000612f8584828501612f4c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fb982612f8e565b9050919050565b612fc981612fae565b82525050565b6000602082019050612fe46000830184612fc0565b92915050565b612ff381612fae565b8114612ffe57600080fd5b50565b60008135905061301081612fea565b92915050565b6000806040838503121561302d5761302c612db4565b5b600061303b85828601613001565b925050602061304c85828601612f4c565b9150509250929050565b61305f81612f2b565b82525050565b600060208201905061307a6000830184613056565b92915050565b60008060006060848603121561309957613098612db4565b5b60006130a786828701613001565b93505060206130b886828701613001565b92505060406130c986828701612f4c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61311582612ebf565b810181811067ffffffffffffffff82111715613134576131336130dd565b5b80604052505050565b6000613147612daa565b9050613153828261310c565b919050565b600067ffffffffffffffff821115613173576131726130dd565b5b61317c82612ebf565b9050602081019050919050565b82818337600083830152505050565b60006131ab6131a684613158565b61313d565b9050828152602081018484840111156131c7576131c66130d8565b5b6131d2848285613189565b509392505050565b600082601f8301126131ef576131ee6130d3565b5b81356131ff848260208601613198565b91505092915050565b60006020828403121561321e5761321d612db4565b5b600082013567ffffffffffffffff81111561323c5761323b612db9565b5b613248848285016131da565b91505092915050565b60006020828403121561326757613266612db4565b5b600061327584828501613001565b91505092915050565b61328781612e43565b811461329257600080fd5b50565b6000813590506132a48161327e565b92915050565b6000602082840312156132c0576132bf612db4565b5b60006132ce84828501613295565b91505092915050565b600080604083850312156132ee576132ed612db4565b5b60006132fc85828601613001565b925050602061330d85828601613295565b9150509250929050565b600067ffffffffffffffff821115613332576133316130dd565b5b61333b82612ebf565b9050602081019050919050565b600061335b61335684613317565b61313d565b905082815260208101848484011115613377576133766130d8565b5b613382848285613189565b509392505050565b600082601f83011261339f5761339e6130d3565b5b81356133af848260208601613348565b91505092915050565b600080600080608085870312156133d2576133d1612db4565b5b60006133e087828801613001565b94505060206133f187828801613001565b935050604061340287828801612f4c565b925050606085013567ffffffffffffffff81111561342357613422612db9565b5b61342f8782880161338a565b91505092959194509250565b6000806040838503121561345257613451612db4565b5b600061346085828601613001565b925050602061347185828601613001565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134c257607f821691505b6020821081036134d5576134d461347b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613511602083612e84565b915061351c826134db565b602082019050919050565b6000602082019050818103600083015261354081613504565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061357d601f83612e84565b915061358882613547565b602082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006135e9601483612e84565b91506135f4826135b3565b602082019050919050565b60006020820190508181036000830152613618816135dc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061365982612f2b565b915061366483612f2b565b925082820190508082111561367c5761367b61361f565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136b8601483612e84565b91506136c382613682565b602082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f4d657461646174612066726f7a656e2100000000000000000000000000000000600082015250565b6000613724601083612e84565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261377f565b6137c6868361377f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006138036137fe6137f984612f2b565b6137de565b612f2b565b9050919050565b6000819050919050565b61381d836137e8565b6138316138298261380a565b84845461378c565b825550505050565b600090565b613846613839565b613851818484613814565b505050565b5b818110156138755761386a60008261383e565b600181019050613857565b5050565b601f8211156138ba5761388b8161375a565b6138948461376f565b810160208510156138a3578190505b6138b76138af8561376f565b830182613856565b50505b505050565b600082821c905092915050565b60006138dd600019846008026138bf565b1980831691505092915050565b60006138f683836138cc565b9150826002028217905092915050565b61390f82612e79565b67ffffffffffffffff811115613928576139276130dd565b5b61393282546134aa565b61393d828285613879565b600060209050601f831160018114613970576000841561395e578287015190505b61396885826138ea565b8655506139d0565b601f19841661397e8661375a565b60005b828110156139a657848901518255600182019150602085019450602081019050613981565b868310156139c357848901516139bf601f8916826138cc565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613a0e601383612e84565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b6000613a4f82612f2b565b9150613a5a83612f2b565b9250828202613a6881612f2b565b91508282048414831517613a7f57613a7e61361f565b5b5092915050565b6000613a9182612f2b565b9150613a9c83612f2b565b9250828203905081811115613ab457613ab361361f565b5b92915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613af0601383612e84565b9150613afb82613aba565b602082019050919050565b60006020820190508181036000830152613b1f81613ae3565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613b5c601683612e84565b9150613b6782613b26565b602082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b600081905092915050565b6000613ba882612e79565b613bb28185613b92565b9350613bc2818560208601612e95565b80840191505092915050565b6000613bda8285613b9d565b9150613be68284613b9d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c4e602683612e84565b9150613c5982613bf2565b604082019050919050565b60006020820190508181036000830152613c7d81613c41565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613cba601d83612e84565b9150613cc582613c84565b602082019050919050565b60006020820190508181036000830152613ce981613cad565b9050919050565b600081905092915050565b50565b6000613d0b600083613cf0565b9150613d1682613cfb565b600082019050919050565b6000613d2c82613cfe565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613d92603a83612e84565b9150613d9d82613d36565b604082019050919050565b60006020820190508181036000830152613dc181613d85565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613def82613dc8565b613df98185613dd3565b9350613e09818560208601612e95565b613e1281612ebf565b840191505092915050565b6000608082019050613e326000830187612fc0565b613e3f6020830186612fc0565b613e4c6040830185613056565b8181036060830152613e5e8184613de4565b905095945050505050565b600081519050613e7881612dea565b92915050565b600060208284031215613e9457613e93612db4565b5b6000613ea284828501613e69565b91505092915050565b6000613eb682612f2b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ee857613ee761361f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f2d82612f2b565b9150613f3883612f2b565b925082613f4857613f47613ef3565b5b828204905092915050565b6000613f5e82612f2b565b9150613f6983612f2b565b925082613f7957613f78613ef3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122096c0ae65c12347d07609083542cc743e205a2d0070aa15d7bcf765917b864c7464736f6c63430008110033

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

000000000000000000000000000000000000000000000000000a4d88ddd94000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001b580000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5872626635643463517264774d7475424c396944645136746963554c6d4446545636383671335779624358682f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 2900000000000000
Arg [1] : maxSupply (uint256): 10000
Arg [2] : baseUri (string): ipfs://QmXrbf5d4cQrdwMtuBL9iDdQ6ticULmDFTV686q3WybCXh/
Arg [3] : freeMintAllowance (uint256): 1
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 7000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000a4d88ddd94000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000001b58
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5872626635643463517264774d7475424c396944645136
Arg [9] : 746963554c6d4446545636383671335779624358682f00000000000000000000


Deployed Bytecode Sourcemap

47590:4336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29764:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32877:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34380:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33943:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47827:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47779:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29013:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35245:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47717:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51690:233;;;;;;;;;;;;;:::i;:::-;;47904:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51484:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35486:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49320:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49669:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32685:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30133:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;47871:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49799:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49916:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47690:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48953:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33046:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50547:929;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34656:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49497:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35742:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49057:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33221:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50101:86;;;;;;;;;;;;;:::i;:::-;;35014:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47952:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29764:305;29866:4;29918:25;29903:40;;;:11;:40;;;;:105;;;;29975:33;29960:48;;;:11;:48;;;;29903:105;:158;;;;30025:36;30049:11;30025:23;:36::i;:::-;29903:158;29883:178;;29764:305;;;:::o;32877:100::-;32931:13;32964:5;32957:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32877:100;:::o;34380:204::-;34448:7;34473:16;34481:7;34473;:16::i;:::-;34468:64;;34498:34;;;;;;;;;;;;;;34468:64;34552:15;:24;34568:7;34552:24;;;;;;;;;;;;;;;;;;;;;34545:31;;34380:204;;;:::o;33943:371::-;34016:13;34032:24;34048:7;34032:15;:24::i;:::-;34016:40;;34077:5;34071:11;;:2;:11;;;34067:48;;34091:24;;;;;;;;;;;;;;34067:48;34148:5;34132:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34158:37;34175:5;34182:12;:10;:12::i;:::-;34158:16;:37::i;:::-;34157:38;34132:63;34128:138;;;34219:35;;;;;;;;;;;;;;34128:138;34278:28;34287:2;34291:7;34300:5;34278:8;:28::i;:::-;34005:309;33943:371;;:::o;47827:37::-;;;;:::o;47779:41::-;;;;:::o;29013:303::-;29057:7;29282:15;:13;:15::i;:::-;29267:12;;29251:13;;:28;:46;29244:53;;29013:303;:::o;35245:170::-;35379:28;35389:4;35395:2;35399:7;35379:9;:28::i;:::-;35245:170;;;:::o;47717:25::-;;;;:::o;51690:233::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;51751:14:::2;51768:21;51751:38;;51800:115;51840:42;51898:6;51800:17;:115::i;:::-;51740:183;1801:1:::1;2755:7;:22;;;;51690:233::o:0;47904:41::-;;;;:::o;51484:176::-;51577:11;50307:1;50293:11;:15;:56;;;;;50327:22;;50312:11;:37;;50293:56;50271:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50461:10;;50446:11;50430:13;;:27;;;;:::i;:::-;:41;;50408:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7102:12:::1;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51625:27:::2;51635:3;51640:11;51625:9;:27::i;:::-;51484:176:::0;;;:::o;35486:185::-;35624:39;35641:4;35647:2;35651:7;35624:39;;;;;;;;;;;;:16;:39::i;:::-;35486:185;;;:::o;49320:169::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49409:15:::1;;;;;;;;;;;49408:16;49400:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49467:14;49456:8;:25;;;;;;:::i;:::-;;49320:169:::0;:::o;49669:122::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49771:12:::1;49746:22;:37;;;;49669:122:::0;:::o;32685:125::-;32749:7;32776:21;32789:7;32776:12;:21::i;:::-;:26;;;32769:33;;32685:125;;;:::o;30133:206::-;30197:7;30238:1;30221:19;;:5;:19;;;30217:60;;30249:28;;;;;;;;;;;;;;30217:60;30303:12;:19;30316:5;30303:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30295:36;;30288:43;;30133:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;47871:26::-;;;;;;;;;;;;;:::o;49799:109::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49888:12:::1;49871:14;;:29;;;;;;;;;;;;;;;;;;49799:109:::0;:::o;49916:177::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50063:22:::1;50034:26;:51;;;;49916:177:::0;:::o;47690:20::-;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;48953:96::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49030:11:::1;49022:5;:19;;;;48953:96:::0;:::o;33046:104::-;33102:13;33135:7;33128:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:104;:::o;50547:929::-;50639:11;50307:1;50293:11;:15;:56;;;;;50327:22;;50312:11;:37;;50293:56;50271:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;50461:10;;50446:11;50430:13;;:27;;;;:::i;:::-;:41;;50408:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;50676:14:::1;;;;;;;;;;;50668:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50727:13;50751:11;50743:5;;:19;;;;:::i;:::-;50727:35;;50795:26;;50779:13;;:42;50775:584;;;50838:25;50912:16;:28;50929:10;50912:28;;;;;;;;;;;;;;;;50866:26;;:74;;;;:::i;:::-;50838:102;;50979:1;50959:17;:21;50955:393;;;51020:17;51005:11;:32;51001:332;;51091:5;;51071:17;:25;;;;:::i;:::-;51062:34;;;;;:::i;:::-;;;51119:50;51139:10;51151:17;51119:19;:50::i;:::-;51001:332;;;51241:5;;51227:11;:19;;;;:::i;:::-;51218:28;;;;;:::i;:::-;;;51269:44;51289:10;51301:11;51269:19;:44::i;:::-;51001:332;50955:393;50823:536;50775:584;51392:5;51379:9;:18;;51371:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51434:34;51444:10;51456:11;51434:9;:34::i;:::-;50657:819;50547:929:::0;;:::o;34656:287::-;34767:12;:10;:12::i;:::-;34755:24;;:8;:24;;;34751:54;;34788:17;;;;;;;;;;;;;;34751:54;34863:8;34818:18;:32;34837:12;:10;:12::i;:::-;34818:32;;;;;;;;;;;;;;;:42;34851:8;34818:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34916:8;34887:48;;34902:12;:10;:12::i;:::-;34887:48;;;34926:8;34887:48;;;;;;:::i;:::-;;;;;;;;34656:287;;:::o;49497:164::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49636:17:::1;49607:26;:46;;;;49497:164:::0;:::o;35742:369::-;35909:28;35919:4;35925:2;35929:7;35909:9;:28::i;:::-;35952:15;:2;:13;;;:15::i;:::-;:76;;;;;35972:56;36003:4;36009:2;36013:7;36022:5;35972:30;:56::i;:::-;35971:57;35952:76;35948:156;;;36052:40;;;;;;;;;;;;;;35948:156;35742:369;;;;:::o;49057:255::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49156:10:::1;;49141:12;:25;49133:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49228:13;;49212:12;:29;;49204:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49292:12;49279:10;:25;;;;49057:255:::0;:::o;33221:318::-;33294:13;33325:16;33333:7;33325;:16::i;:::-;33320:59;;33350:29;;;;;;;;;;;;;;33320:59;33392:21;33416:10;:8;:10::i;:::-;33392:34;;33469:1;33450:7;33444:21;:26;:87;;;;;;;;;;;;;;;;;33497:7;33506:18;:7;:16;:18::i;:::-;33480:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33444:87;33437:94;;;33221:318;;;:::o;50101:86::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50175:4:::1;50157:15;;:22;;;;;;;;;;;;;;;;;;50101:86::o:0;35014:164::-;35111:4;35135:18;:25;35154:5;35135:25;;;;;;;;;;;;;;;:35;35161:8;35135:35;;;;;;;;;;;;;;;;;;;;;;;;;35128:42;;35014:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;::::0;7861:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;47952:27::-;;;;;;;;;;;;;:::o;19655:157::-;19740:4;19779:25;19764:40;;;:11;:40;;;;19757:47;;19655:157;;;:::o;36366:187::-;36423:4;36466:7;36447:15;:13;:15::i;:::-;:26;;:53;;;;;36487:13;;36477:7;:23;36447:53;:98;;;;;36518:11;:20;36530:7;36518:20;;;;;;;;;;;:27;;;;;;;;;;;;36517:28;36447:98;36440:105;;36366:187;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;44536:196::-;44678:2;44651:15;:24;44667:7;44651:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44716:7;44712:2;44696:28;;44705:5;44696:28;;;;;;;;;;;;44536:196;;;:::o;28787:92::-;28843:7;28787:92;:::o;39479:2130::-;39594:35;39632:21;39645:7;39632:12;:21::i;:::-;39594:59;;39692:4;39670:26;;:13;:18;;;:26;;;39666:67;;39705:28;;;;;;;;;;;;;;39666:67;39746:22;39788:4;39772:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39809:36;39826:4;39832:12;:10;:12::i;:::-;39809:16;:36::i;:::-;39772:73;:126;;;;39886:12;:10;:12::i;:::-;39862:36;;:20;39874:7;39862:11;:20::i;:::-;:36;;;39772:126;39746:153;;39917:17;39912:66;;39943:35;;;;;;;;;;;;;;39912:66;40007:1;39993:16;;:2;:16;;;39989:52;;40018:23;;;;;;;;;;;;;;39989:52;40054:43;40076:4;40082:2;40086:7;40095:1;40054:21;:43::i;:::-;40162:35;40179:1;40183:7;40192:4;40162:8;:35::i;:::-;40523:1;40493:12;:18;40506:4;40493:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40567:1;40539:12;:16;40552:2;40539:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40585:31;40619:11;:20;40631:7;40619:20;;;;;;;;;;;40585:54;;40670:2;40654:8;:13;;;:18;;;;;;;;;;;;;;;;;;40720:15;40687:8;:23;;;:49;;;;;;;;;;;;;;;;;;40988:19;41020:1;41010:7;:11;40988:33;;41036:31;41070:11;:24;41082:11;41070:24;;;;;;;;;;;41036:58;;41138:1;41113:27;;:8;:13;;;;;;;;;;;;:27;;;41109:384;;41323:13;;41308:11;:28;41304:174;;41377:4;41361:8;:13;;;:20;;;;;;;;;;;;;;;;;;41430:13;:28;;;41404:8;:23;;;:54;;;;;;;;;;;;;;;;;;41304:174;41109:384;40468:1036;;;41540:7;41536:2;41521:27;;41530:4;41521:27;;;;;;;;;;;;41559:42;41580:4;41586:2;41590:7;41599:1;41559:20;:42::i;:::-;39583:2026;;39479:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11002:12;11020:9;:14;;11042:6;11020:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10904:246;10833:317;;:::o;36561:104::-;36630:27;36640:2;36644:8;36630:27;;;;;;;;;;;;:9;:27::i;:::-;36561:104;;:::o;31514:1109::-;31576:21;;:::i;:::-;31610:12;31625:7;31610:22;;31693:4;31674:15;:13;:15::i;:::-;:23;;:47;;;;;31708:13;;31701:4;:20;31674:47;31670:886;;;31742:31;31776:11;:17;31788:4;31776:17;;;;;;;;;;;31742:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31817:9;:16;;;31812:729;;31888:1;31862:28;;:9;:14;;;:28;;;31858:101;;31926:9;31919:16;;;;;;31858:101;32261:261;32268:4;32261:261;;;32301:6;;;;;;;;32346:11;:17;32358:4;32346:17;;;;;;;;;;;32334:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:1;32394:28;;:9;:14;;;:28;;;32390:109;;32462:9;32455:16;;;;;;32390:109;32261:261;;;31812:729;31723:833;31670:886;32584:31;;;;;;;;;;;;;;31514:1109;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;48662:120::-;48769:5;48741:16;:24;48758:6;48741:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;48662:120;;:::o;9572:326::-;9632:4;9889:1;9867:7;:19;;;:23;9860:30;;9572:326;;;:::o;45224:667::-;45387:4;45424:2;45408:36;;;45445:12;:10;:12::i;:::-;45459:4;45465:7;45474:5;45408:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45404:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45659:1;45642:6;:13;:18;45638:235;;45688:40;;;;;;;;;;;;;;45638:235;45831:6;45825:13;45816:6;45812:2;45808:15;45801:38;45404:480;45537:45;;;45527:55;;;:6;:55;;;;45520:62;;;45224:667;;;;;;:::o;48813:109::-;48873:13;48906:8;48899:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48813:109;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;46539:159::-;;;;;:::o;47357:158::-;;;;;:::o;37028:163::-;37151:32;37157:2;37161:8;37171:5;37178:4;37151:5;:32::i;:::-;37028:163;;;:::o;37450:1775::-;37589:20;37612:13;;37589:36;;37654:1;37640:16;;:2;:16;;;37636:48;;37665:19;;;;;;;;;;;;;;37636:48;37711:1;37699:8;:13;37695:44;;37721:18;;;;;;;;;;;;;;37695:44;37752:61;37782:1;37786:2;37790:12;37804:8;37752:21;:61::i;:::-;38125:8;38090:12;:16;38103:2;38090:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38189:8;38149:12;:16;38162:2;38149:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38248:2;38215:11;:25;38227:12;38215:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38315:15;38265:11;:25;38277:12;38265:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38348:20;38371:12;38348:35;;38398:11;38427:8;38412:12;:23;38398:37;;38456:4;:23;;;;;38464:15;:2;:13;;;:15::i;:::-;38456:23;38452:641;;;38500:314;38556:12;38552:2;38531:38;;38548:1;38531:38;;;;;;;;;;;;38597:69;38636:1;38640:2;38644:14;;;;;;38660:5;38597:30;:69::i;:::-;38592:174;;38702:40;;;;;;;;;;;;;;38592:174;38809:3;38793:12;:19;38500:314;;38895:12;38878:13;;:29;38874:43;;38909:8;;;38874:43;38452:641;;;38958:120;39014:14;;;;;;39010:2;38989:40;;39006:1;38989:40;;;;;;;;;;;;39073:3;39057:12;:19;38958:120;;38452:641;39123:12;39107:13;:28;;;;38065:1082;;39157:60;39186:1;39190:2;39194:12;39208:8;39157:20;:60::i;:::-;37578:1647;37450: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:170::-;15041:22;15037:1;15029:6;15025:14;15018:46;14901:170;:::o;15077:366::-;15219:3;15240:67;15304:2;15299:3;15240:67;:::i;:::-;15233:74;;15316:93;15405:3;15316:93;:::i;:::-;15434:2;15429:3;15425:12;15418:19;;15077:366;;;:::o;15449:419::-;15615:4;15653:2;15642:9;15638:18;15630:26;;15702:9;15696:4;15692:20;15688:1;15677:9;15673:17;15666:47;15730:131;15856:4;15730:131;:::i;:::-;15722:139;;15449:419;;;:::o;15874:180::-;15922:77;15919:1;15912:88;16019:4;16016:1;16009:15;16043:4;16040:1;16033:15;16060:191;16100:3;16119:20;16137:1;16119:20;:::i;:::-;16114:25;;16153:20;16171:1;16153:20;:::i;:::-;16148:25;;16196:1;16193;16189:9;16182:16;;16217:3;16214:1;16211:10;16208:36;;;16224:18;;:::i;:::-;16208:36;16060:191;;;;:::o;16257:170::-;16397:22;16393:1;16385:6;16381:14;16374:46;16257:170;:::o;16433:366::-;16575:3;16596:67;16660:2;16655:3;16596:67;:::i;:::-;16589:74;;16672:93;16761:3;16672:93;:::i;:::-;16790:2;16785:3;16781:12;16774:19;;16433:366;;;:::o;16805:419::-;16971:4;17009:2;16998:9;16994:18;16986:26;;17058:9;17052:4;17048:20;17044:1;17033:9;17029:17;17022:47;17086:131;17212:4;17086:131;:::i;:::-;17078:139;;16805:419;;;:::o;17230:166::-;17370:18;17366:1;17358:6;17354:14;17347:42;17230:166;:::o;17402:366::-;17544:3;17565:67;17629:2;17624:3;17565:67;:::i;:::-;17558:74;;17641:93;17730:3;17641:93;:::i;:::-;17759:2;17754:3;17750:12;17743:19;;17402:366;;;:::o;17774:419::-;17940:4;17978:2;17967:9;17963:18;17955:26;;18027:9;18021:4;18017:20;18013:1;18002:9;17998:17;17991:47;18055:131;18181:4;18055:131;:::i;:::-;18047:139;;17774:419;;;:::o;18199:141::-;18248:4;18271:3;18263:11;;18294:3;18291:1;18284:14;18328:4;18325:1;18315:18;18307:26;;18199:141;;;:::o;18346:93::-;18383:6;18430:2;18425;18418:5;18414:14;18410:23;18400:33;;18346:93;;;:::o;18445:107::-;18489:8;18539:5;18533:4;18529:16;18508:37;;18445:107;;;;:::o;18558:393::-;18627:6;18677:1;18665:10;18661:18;18700:97;18730:66;18719:9;18700:97;:::i;:::-;18818:39;18848:8;18837:9;18818:39;:::i;:::-;18806:51;;18890:4;18886:9;18879:5;18875:21;18866:30;;18939:4;18929:8;18925:19;18918:5;18915:30;18905:40;;18634:317;;18558:393;;;;;:::o;18957:60::-;18985:3;19006:5;18999:12;;18957:60;;;:::o;19023:142::-;19073:9;19106:53;19124:34;19133:24;19151:5;19133:24;:::i;:::-;19124:34;:::i;:::-;19106:53;:::i;:::-;19093:66;;19023:142;;;:::o;19171:75::-;19214:3;19235:5;19228:12;;19171:75;;;:::o;19252:269::-;19362:39;19393:7;19362:39;:::i;:::-;19423:91;19472:41;19496:16;19472:41;:::i;:::-;19464:6;19457:4;19451:11;19423:91;:::i;:::-;19417:4;19410:105;19328:193;19252:269;;;:::o;19527:73::-;19572:3;19527:73;:::o;19606:189::-;19683:32;;:::i;:::-;19724:65;19782:6;19774;19768:4;19724:65;:::i;:::-;19659:136;19606:189;;:::o;19801:186::-;19861:120;19878:3;19871:5;19868:14;19861:120;;;19932:39;19969:1;19962:5;19932:39;:::i;:::-;19905:1;19898:5;19894:13;19885:22;;19861:120;;;19801:186;;:::o;19993:543::-;20094:2;20089:3;20086:11;20083:446;;;20128:38;20160:5;20128:38;:::i;:::-;20212:29;20230:10;20212:29;:::i;:::-;20202:8;20198:44;20395:2;20383:10;20380:18;20377:49;;;20416:8;20401:23;;20377:49;20439:80;20495:22;20513:3;20495:22;:::i;:::-;20485:8;20481:37;20468:11;20439:80;:::i;:::-;20098:431;;20083:446;19993:543;;;:::o;20542:117::-;20596:8;20646:5;20640:4;20636:16;20615:37;;20542:117;;;;:::o;20665:169::-;20709:6;20742:51;20790:1;20786:6;20778:5;20775:1;20771:13;20742:51;:::i;:::-;20738:56;20823:4;20817;20813:15;20803:25;;20716:118;20665:169;;;;:::o;20839:295::-;20915:4;21061:29;21086:3;21080:4;21061:29;:::i;:::-;21053:37;;21123:3;21120:1;21116:11;21110:4;21107:21;21099:29;;20839:295;;;;:::o;21139:1395::-;21256:37;21289:3;21256:37;:::i;:::-;21358:18;21350:6;21347:30;21344:56;;;21380:18;;:::i;:::-;21344:56;21424:38;21456:4;21450:11;21424:38;:::i;:::-;21509:67;21569:6;21561;21555:4;21509:67;:::i;:::-;21603:1;21627:4;21614:17;;21659:2;21651:6;21648:14;21676:1;21671:618;;;;22333:1;22350:6;22347:77;;;22399:9;22394:3;22390:19;22384:26;22375:35;;22347:77;22450:67;22510:6;22503:5;22450:67;:::i;:::-;22444:4;22437:81;22306:222;21641:887;;21671:618;21723:4;21719:9;21711:6;21707:22;21757:37;21789:4;21757:37;:::i;:::-;21816:1;21830:208;21844:7;21841:1;21838:14;21830:208;;;21923:9;21918:3;21914:19;21908:26;21900:6;21893:42;21974:1;21966:6;21962:14;21952:24;;22021:2;22010:9;22006:18;21993:31;;21867:4;21864:1;21860:12;21855:17;;21830:208;;;22066:6;22057:7;22054:19;22051:179;;;22124:9;22119:3;22115:19;22109:26;22167:48;22209:4;22201:6;22197:17;22186:9;22167:48;:::i;:::-;22159:6;22152:64;22074:156;22051:179;22276:1;22272;22264:6;22260:14;22256:22;22250:4;22243:36;21678:611;;;21641:887;;21231:1303;;;21139:1395;;:::o;22540:169::-;22680:21;22676:1;22668:6;22664:14;22657:45;22540:169;:::o;22715:366::-;22857:3;22878:67;22942:2;22937:3;22878:67;:::i;:::-;22871:74;;22954:93;23043:3;22954:93;:::i;:::-;23072:2;23067:3;23063:12;23056:19;;22715:366;;;:::o;23087:419::-;23253:4;23291:2;23280:9;23276:18;23268:26;;23340:9;23334:4;23330:20;23326:1;23315:9;23311:17;23304:47;23368:131;23494:4;23368:131;:::i;:::-;23360:139;;23087:419;;;:::o;23512:410::-;23552:7;23575:20;23593:1;23575:20;:::i;:::-;23570:25;;23609:20;23627:1;23609:20;:::i;:::-;23604:25;;23664:1;23661;23657:9;23686:30;23704:11;23686:30;:::i;:::-;23675:41;;23865:1;23856:7;23852:15;23849:1;23846:22;23826:1;23819:9;23799:83;23776:139;;23895:18;;:::i;:::-;23776:139;23560:362;23512:410;;;;:::o;23928:194::-;23968:4;23988:20;24006:1;23988:20;:::i;:::-;23983:25;;24022:20;24040:1;24022:20;:::i;:::-;24017:25;;24066:1;24063;24059:9;24051:17;;24090:1;24084:4;24081:11;24078:37;;;24095:18;;:::i;:::-;24078:37;23928:194;;;;:::o;24128:169::-;24268:21;24264:1;24256:6;24252:14;24245:45;24128:169;:::o;24303:366::-;24445:3;24466:67;24530:2;24525:3;24466:67;:::i;:::-;24459:74;;24542:93;24631:3;24542:93;:::i;:::-;24660:2;24655:3;24651:12;24644:19;;24303:366;;;:::o;24675:419::-;24841:4;24879:2;24868:9;24864:18;24856:26;;24928:9;24922:4;24918:20;24914:1;24903:9;24899:17;24892:47;24956:131;25082:4;24956:131;:::i;:::-;24948:139;;24675:419;;;:::o;25100:172::-;25240:24;25236:1;25228:6;25224:14;25217:48;25100:172;:::o;25278:366::-;25420:3;25441:67;25505:2;25500:3;25441:67;:::i;:::-;25434:74;;25517:93;25606:3;25517:93;:::i;:::-;25635:2;25630:3;25626:12;25619:19;;25278:366;;;:::o;25650:419::-;25816:4;25854:2;25843:9;25839:18;25831:26;;25903:9;25897:4;25893:20;25889:1;25878:9;25874:17;25867:47;25931:131;26057:4;25931:131;:::i;:::-;25923:139;;25650:419;;;:::o;26075:148::-;26177:11;26214:3;26199:18;;26075:148;;;;:::o;26229:390::-;26335:3;26363:39;26396:5;26363:39;:::i;:::-;26418:89;26500:6;26495:3;26418:89;:::i;:::-;26411:96;;26516:65;26574:6;26569:3;26562:4;26555:5;26551:16;26516:65;:::i;:::-;26606:6;26601:3;26597:16;26590:23;;26339:280;26229:390;;;;:::o;26625:435::-;26805:3;26827:95;26918:3;26909:6;26827:95;:::i;:::-;26820:102;;26939:95;27030:3;27021:6;26939:95;:::i;:::-;26932:102;;27051:3;27044:10;;26625:435;;;;;:::o;27066:225::-;27206:34;27202:1;27194:6;27190:14;27183:58;27275:8;27270:2;27262:6;27258:15;27251:33;27066:225;:::o;27297:366::-;27439:3;27460:67;27524:2;27519:3;27460:67;:::i;:::-;27453:74;;27536:93;27625:3;27536:93;:::i;:::-;27654:2;27649:3;27645:12;27638:19;;27297:366;;;:::o;27669:419::-;27835:4;27873:2;27862:9;27858:18;27850:26;;27922:9;27916:4;27912:20;27908:1;27897:9;27893:17;27886:47;27950:131;28076:4;27950:131;:::i;:::-;27942:139;;27669:419;;;:::o;28094:179::-;28234:31;28230:1;28222:6;28218:14;28211:55;28094:179;:::o;28279:366::-;28421:3;28442:67;28506:2;28501:3;28442:67;:::i;:::-;28435:74;;28518:93;28607:3;28518:93;:::i;:::-;28636:2;28631:3;28627:12;28620:19;;28279:366;;;:::o;28651:419::-;28817:4;28855:2;28844:9;28840:18;28832:26;;28904:9;28898:4;28894:20;28890:1;28879:9;28875:17;28868:47;28932:131;29058:4;28932:131;:::i;:::-;28924:139;;28651:419;;;:::o;29076:147::-;29177:11;29214:3;29199:18;;29076:147;;;;:::o;29229:114::-;;:::o;29349:398::-;29508:3;29529:83;29610:1;29605:3;29529:83;:::i;:::-;29522:90;;29621:93;29710:3;29621:93;:::i;:::-;29739:1;29734:3;29730:11;29723:18;;29349:398;;;:::o;29753:379::-;29937:3;29959:147;30102:3;29959:147;:::i;:::-;29952:154;;30123:3;30116:10;;29753:379;;;:::o;30138:245::-;30278:34;30274:1;30266:6;30262:14;30255:58;30347:28;30342:2;30334:6;30330:15;30323:53;30138:245;:::o;30389:366::-;30531:3;30552:67;30616:2;30611:3;30552:67;:::i;:::-;30545:74;;30628:93;30717:3;30628:93;:::i;:::-;30746:2;30741:3;30737:12;30730:19;;30389:366;;;:::o;30761:419::-;30927:4;30965:2;30954:9;30950:18;30942:26;;31014:9;31008:4;31004:20;31000:1;30989:9;30985:17;30978:47;31042:131;31168:4;31042:131;:::i;:::-;31034:139;;30761:419;;;:::o;31186:98::-;31237:6;31271:5;31265:12;31255:22;;31186:98;;;:::o;31290:168::-;31373:11;31407:6;31402:3;31395:19;31447:4;31442:3;31438:14;31423:29;;31290:168;;;;:::o;31464:373::-;31550:3;31578:38;31610:5;31578:38;:::i;:::-;31632:70;31695:6;31690:3;31632:70;:::i;:::-;31625:77;;31711:65;31769:6;31764:3;31757:4;31750:5;31746:16;31711:65;:::i;:::-;31801:29;31823:6;31801:29;:::i;:::-;31796:3;31792:39;31785:46;;31554:283;31464:373;;;;:::o;31843:640::-;32038:4;32076:3;32065:9;32061:19;32053:27;;32090:71;32158:1;32147:9;32143:17;32134:6;32090:71;:::i;:::-;32171:72;32239:2;32228:9;32224:18;32215:6;32171:72;:::i;:::-;32253;32321:2;32310:9;32306:18;32297:6;32253:72;:::i;:::-;32372:9;32366:4;32362:20;32357:2;32346:9;32342:18;32335:48;32400:76;32471:4;32462:6;32400:76;:::i;:::-;32392:84;;31843:640;;;;;;;:::o;32489:141::-;32545:5;32576:6;32570:13;32561:22;;32592:32;32618:5;32592:32;:::i;:::-;32489:141;;;;:::o;32636:349::-;32705:6;32754:2;32742:9;32733:7;32729:23;32725:32;32722:119;;;32760:79;;:::i;:::-;32722:119;32880:1;32905:63;32960:7;32951:6;32940:9;32936:22;32905:63;:::i;:::-;32895:73;;32851:127;32636:349;;;;:::o;32991:233::-;33030:3;33053:24;33071:5;33053:24;:::i;:::-;33044:33;;33099:66;33092:5;33089:77;33086:103;;33169:18;;:::i;:::-;33086:103;33216:1;33209:5;33205:13;33198:20;;32991:233;;;:::o;33230:180::-;33278:77;33275:1;33268:88;33375:4;33372:1;33365:15;33399:4;33396:1;33389:15;33416:185;33456:1;33473:20;33491:1;33473:20;:::i;:::-;33468:25;;33507:20;33525:1;33507:20;:::i;:::-;33502:25;;33546:1;33536:35;;33551:18;;:::i;:::-;33536:35;33593:1;33590;33586:9;33581:14;;33416:185;;;;:::o;33607:176::-;33639:1;33656:20;33674:1;33656:20;:::i;:::-;33651:25;;33690:20;33708:1;33690:20;:::i;:::-;33685:25;;33729:1;33719:35;;33734:18;;:::i;:::-;33719:35;33775:1;33772;33768:9;33763:14;;33607:176;;;;:::o;33789:180::-;33837:77;33834:1;33827:88;33934:4;33931:1;33924:15;33958:4;33955:1;33948:15

Swarm Source

ipfs://96c0ae65c12347d07609083542cc743e205a2d0070aa15d7bcf765917b864c74
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.