ETH Price: $3,299.33 (-3.30%)
Gas: 19 Gwei

Token

Zuki Ape Yacht Club (ZukiApeYachtClub)
 

Overview

Max Total Supply

6,666 ZukiApeYachtClub

Holders

1,052

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
zirbma.eth
Balance
5 ZukiApeYachtClub
0xc825baf5a4c8c02b28ed9118dc0381a5f9ed0efc
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:
ZukiApeYachtClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// IERC165.sol
// SPDX-License-Identifier: MIT

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

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

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


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

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



// IERC721Enumerable.sol


pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


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

// ERC721S.sol

pragma solidity ^0.8.10;


abstract contract ERC721S is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721S.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }     
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721S.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
	function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721S.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721S.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721S.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// SafeMath.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// Address.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// ERC721Enum.sol

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721S, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

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

// PaymentSplitter.sol


pragma solidity ^0.8.0;


/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

//  Pausable.sol


pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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

// 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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// ZukiApeYachtClub.sol

pragma solidity ^0.8.10;


contract ZukiApeYachtClub is ERC721Enum, Ownable, Pausable,  ReentrancyGuard {

	using Strings for uint256;
	string public baseURI;
    uint256 private maxSupply = 8888;
	uint256 public cost = 0.0088 ether;
    uint256 public maxFree = 1000;  
    uint256 public nftPerAddressLimit = 10;
	bool public status = false;
    mapping(address => uint256) public addressMintedBalance;

		
	constructor() ERC721S("Zuki Ape Yacht Club", "ZukiApeYachtClub"){
	    setBaseURI("");
	}

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

    	function mintfree(uint256 _mintAmount) public payable nonReentrant{
		uint256 a = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 2, "Cant mint more then maxmint" );
		require(a + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressMintedBalance[msg.sender]++;
			_safeMint(msg.sender, a + i, "");
		}
		delete a;
	}

	function mint(uint256 _mintAmount) public payable nonReentrant{
		uint256 a = totalSupply();
		require(_mintAmount > 0, "Cant mint 0" );
		require(_mintAmount <= 20, "Cant mint more then maxmint" );
		require(a + _mintAmount <= maxSupply, "Cant go over supply" );
		require(msg.value >= cost * _mintAmount);
		for (uint256 i = 0; i < _mintAmount; ++i) {
			_safeMint(msg.sender, a + i, "");
		}
		delete a;
	}

	
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	    require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}



          function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

	function setmaxFree(uint256 _newMaxFree) public onlyOwner {
	    maxFree = _newMaxFree;
	}
    	function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    maxSupply = _newMaxSupply;
	}
	function setBaseURI(string memory _newBaseURI) public onlyOwner {
	    baseURI = _newBaseURI;
	}

    	function setCost(uint256 _newCost) public onlyOwner {
	    cost = _newCost;
	}

	function setSaleStatus(bool _status) public onlyOwner {
	    status = _status;
	}
	function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
	require(success);
	}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintfree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setmaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526122b8600855661f438daa0600006009556103e8600a908155600b55600c805460ff191690553480156200003757600080fd5b50604080518082018252601381527f5a756b692041706520596163687420436c75620000000000000000000000000060208083019182528351808501909452601084526f2d3ab5b4a0b832acb0b1b43a21b63ab160811b908401528151919291620000a591600091620001d8565b508051620000bb906001906020840190620001d8565b505050620000d8620000d26200010a60201b60201c565b6200010e565b6005805460ff60a01b191690556001600655604080516020810190915260008152620001049062000160565b620002bb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d4906007906020840190620001d8565b5050565b828054620001e6906200027e565b90600052602060002090601f0160209004810192826200020a576000855562000255565b82601f106200022557805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025557825182559160200191906001019062000238565b506200026392915062000267565b5090565b5b8082111562000263576000815560010162000268565b600181811c908216806200029357607f821691505b60208210811415620002b557634e487b7160e01b600052602260045260246000fd5b50919050565b61230980620002cb6000396000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063a22cb465116100a0578063d0eb26b01161006f578063d0eb26b0146105c8578063d5034b74146105e8578063d897833e14610608578063e985e9c514610628578063f2fde38b1461067157600080fd5b8063a22cb46514610552578063b88d4fde14610572578063ba7d2c7614610592578063c87b56dd146105a857600080fd5b8063715018a6116100e7578063715018a6146104ca5780638462151c146104df5780638da5cb5b1461050c57806395d89b411461052a578063a0712d681461053f57600080fd5b80635c975abb146104565780636352211e146104755780636c0360eb1461049557806370a08231146104aa57600080fd5b8063228025e81161019b57806342842e0e1161016a57806342842e0e146103c057806344a0d68a146103e0578063485a68a3146104005780634f6ccce71461041657806355f804b31461043657600080fd5b8063228025e81461035857806323b872dd146103785780632f745c59146103985780633ccfd60b146103b857600080fd5b8063095ea7b3116101e2578063095ea7b3146102b857806313faede6146102d857806318160ddd146102fc57806318cae26914610311578063200d2ed21461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063084dcc69146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611cd9565b610691565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bc565b6040516102409190611d4e565b34801561027757600080fd5b5061028b610286366004611d61565b61074e565b6040516001600160a01b039091168152602001610240565b6102b66102b1366004611d61565b6107db565b005b3480156102c457600080fd5b506102b66102d3366004611d96565b6109f7565b3480156102e457600080fd5b506102ee60095481565b604051908152602001610240565b34801561030857600080fd5b506002546102ee565b34801561031d57600080fd5b506102ee61032c366004611dc0565b600d6020526000908152604090205481565b34801561034a57600080fd5b50600c546102349060ff1681565b34801561036457600080fd5b506102b6610373366004611d61565b610b0d565b34801561038457600080fd5b506102b6610393366004611ddb565b610b3c565b3480156103a457600080fd5b506102ee6103b3366004611d96565b610b6d565b6102b6610c1c565b3480156103cc57600080fd5b506102b66103db366004611ddb565b610c9e565b3480156103ec57600080fd5b506102b66103fb366004611d61565b610cb9565b34801561040c57600080fd5b506102ee600a5481565b34801561042257600080fd5b506102ee610431366004611d61565b610ce8565b34801561044257600080fd5b506102b6610451366004611ea3565b610d45565b34801561046257600080fd5b50600554600160a01b900460ff16610234565b34801561048157600080fd5b5061028b610490366004611d61565b610d86565b3480156104a157600080fd5b5061025e610e12565b3480156104b657600080fd5b506102ee6104c5366004611dc0565b610ea0565b3480156104d657600080fd5b506102b6610f72565b3480156104eb57600080fd5b506104ff6104fa366004611dc0565b610fa8565b6040516102409190611eec565b34801561051857600080fd5b506005546001600160a01b031661028b565b34801561053657600080fd5b5061025e611072565b6102b661054d366004611d61565b611081565b34801561055e57600080fd5b506102b661056d366004611f40565b611213565b34801561057e57600080fd5b506102b661058d366004611f73565b6112d8565b34801561059e57600080fd5b506102ee600b5481565b3480156105b457600080fd5b5061025e6105c3366004611d61565b611310565b3480156105d457600080fd5b506102b66105e3366004611d61565b6113cd565b3480156105f457600080fd5b506102b6610603366004611d61565b6113fc565b34801561061457600080fd5b506102b6610623366004611fef565b61142b565b34801561063457600080fd5b5061023461064336600461200a565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561067d57600080fd5b506102b661068c366004611dc0565b611468565b60006001600160e01b0319821663780e9d6360e01b14806106b657506106b682611500565b92915050565b6060600080546106cb90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546106f790612034565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b600061075982611550565b6107bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6002600654141561082e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b6565b6002600655600061083e60025490565b336000908152600d6020526040902054600b549192509061085f8483612085565b11156108ad5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107b6565b600083116108eb5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b60448201526064016107b6565b600283111561093c5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e74000000000060448201526064016107b6565b600a546109498484612085565b111561098d5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b60448201526064016107b6565b60005b838110156109ec57336000908152600d602052604081208054916109b38361209d565b909155506109dc9050336109c78386612085565b6040518060200160405280600081525061159a565b6109e58161209d565b9050610990565b505060016006555050565b6000610a0282610d86565b9050806001600160a01b0316836001600160a01b03161415610a705760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b6565b336001600160a01b0382161480610a8c5750610a8c8133610643565b610afe5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b6565b610b0883836115cd565b505050565b6005546001600160a01b03163314610b375760405162461bcd60e51b81526004016107b6906120b8565b600855565b610b46338261163b565b610b625760405162461bcd60e51b81526004016107b6906120ed565b610b08838383611725565b6000610b7883610ea0565b8210610b965760405162461bcd60e51b81526004016107b69061213e565b6000805b600254811015610c035760028181548110610bb757610bb761216e565b6000918252602090912001546001600160a01b0386811691161415610bf35783821415610be75791506106b69050565b610bf08261209d565b91505b610bfc8161209d565b9050610b9a565b5060405162461bcd60e51b81526004016107b69061213e565b6005546001600160a01b03163314610c465760405162461bcd60e51b81526004016107b6906120b8565b604051600090339047908381818185875af1925050503d8060008114610c88576040519150601f19603f3d011682016040523d82523d6000602084013e610c8d565b606091505b5050905080610c9b57600080fd5b50565b610b08838383604051806020016040528060008152506112d8565b6005546001600160a01b03163314610ce35760405162461bcd60e51b81526004016107b6906120b8565b600955565b6000610cf360025490565b8210610d415760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016107b6565b5090565b6005546001600160a01b03163314610d6f5760405162461bcd60e51b81526004016107b6906120b8565b8051610d82906007906020840190611c33565b5050565b60008060028381548110610d9c57610d9c61216e565b6000918252602090912001546001600160a01b03169050806106b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b6565b60078054610e1f90612034565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b90612034565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b505050505081565b60006001600160a01b038216610f0b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b6565b600254600090815b81811015610f695760028181548110610f2e57610f2e61216e565b6000918252602090912001546001600160a01b0386811691161415610f5957610f568361209d565b92505b610f628161209d565b9050610f13565b50909392505050565b6005546001600160a01b03163314610f9c5760405162461bcd60e51b81526004016107b6906120b8565b610fa6600061187b565b565b6060610fb382610ea0565b600010610fd25760405162461bcd60e51b81526004016107b69061213e565b6000610fdd83610ea0565b905060008167ffffffffffffffff811115610ffa57610ffa611e17565b604051908082528060200260200182016040528015611023578160200160208202803683370190505b50905060005b8281101561106a5761103b8582610b6d565b82828151811061104d5761104d61216e565b6020908102919091010152806110628161209d565b915050611029565b509392505050565b6060600180546106cb90612034565b600260065414156110d45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b6565b600260065560006110e460025490565b9050600082116111245760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b60448201526064016107b6565b60148211156111755760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e74000000000060448201526064016107b6565b6008546111828383612085565b11156111c65760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b60448201526064016107b6565b816009546111d49190612184565b3410156111e057600080fd5b60005b82811015611209576111f9336109c78385612085565b6112028161209d565b90506111e3565b5050600160065550565b6001600160a01b03821633141561126c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b6565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112e2338361163b565b6112fe5760405162461bcd60e51b81526004016107b6906120ed565b61130a848484846118cd565b50505050565b606061131b82611550565b6113715760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016107b6565b600061137b611900565b9050600081511161139b57604051806020016040528060008152506113c6565b806113a58461190f565b6040516020016113b69291906121a3565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146113f75760405162461bcd60e51b81526004016107b6906120b8565b600b55565b6005546001600160a01b031633146114265760405162461bcd60e51b81526004016107b6906120b8565b600a55565b6005546001600160a01b031633146114555760405162461bcd60e51b81526004016107b6906120b8565b600c805460ff1916911515919091179055565b6005546001600160a01b031633146114925760405162461bcd60e51b81526004016107b6906120b8565b6001600160a01b0381166114f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b6565b610c9b8161187b565b60006001600160e01b031982166380ac58cd60e01b148061153157506001600160e01b03198216635b5e139f60e01b145b806106b657506301ffc9a760e01b6001600160e01b03198316146106b6565b600254600090821080156106b6575060006001600160a01b03166002838154811061157d5761157d61216e565b6000918252602090912001546001600160a01b0316141592915050565b6115a48383611a0d565b6115b16000848484611b35565b610b085760405162461bcd60e51b81526004016107b6906121d2565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160282610d86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164682611550565b6116a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b6565b60006116b283610d86565b9050806001600160a01b0316846001600160a01b031614806116ed5750836001600160a01b03166116e28461074e565b6001600160a01b0316145b8061171d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661173882610d86565b6001600160a01b0316146117a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b6565b6001600160a01b0382166118025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b6565b61180d6000826115cd565b81600282815481106118215761182161216e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118d8848484611725565b6118e484848484611b35565b61130a5760405162461bcd60e51b81526004016107b6906121d2565b6060600780546106cb90612034565b6060816119335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195d57806119478161209d565b91506119569050600a8361223a565b9150611937565b60008167ffffffffffffffff81111561197857611978611e17565b6040519080825280601f01601f1916602001820160405280156119a2576020820181803683370190505b5090505b841561171d576119b760018361224e565b91506119c4600a86612265565b6119cf906030612085565b60f81b8183815181106119e4576119e461216e565b60200101906001600160f81b031916908160001a905350611a06600a8661223a565b94506119a6565b6001600160a01b038216611a635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b6565b611a6c81611550565b15611ab95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b6565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611c2857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b79903390899088908890600401612279565b6020604051808303816000875af1925050508015611bb4575060408051601f3d908101601f19168201909252611bb1918101906122b6565b60015b611c0e573d808015611be2576040519150601f19603f3d011682016040523d82523d6000602084013e611be7565b606091505b508051611c065760405162461bcd60e51b81526004016107b6906121d2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061171d565b506001949350505050565b828054611c3f90612034565b90600052602060002090601f016020900481019282611c615760008555611ca7565b82601f10611c7a57805160ff1916838001178555611ca7565b82800160010185558215611ca7579182015b82811115611ca7578251825591602001919060010190611c8c565b50610d419291505b80821115610d415760008155600101611caf565b6001600160e01b031981168114610c9b57600080fd5b600060208284031215611ceb57600080fd5b81356113c681611cc3565b60005b83811015611d11578181015183820152602001611cf9565b8381111561130a5750506000910152565b60008151808452611d3a816020860160208601611cf6565b601f01601f19169290920160200192915050565b6020815260006113c66020830184611d22565b600060208284031215611d7357600080fd5b5035919050565b80356001600160a01b0381168114611d9157600080fd5b919050565b60008060408385031215611da957600080fd5b611db283611d7a565b946020939093013593505050565b600060208284031215611dd257600080fd5b6113c682611d7a565b600080600060608486031215611df057600080fd5b611df984611d7a565b9250611e0760208501611d7a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e4857611e48611e17565b604051601f8501601f19908116603f01168101908282118183101715611e7057611e70611e17565b81604052809350858152868686011115611e8957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eb557600080fd5b813567ffffffffffffffff811115611ecc57600080fd5b8201601f81018413611edd57600080fd5b61171d84823560208401611e2d565b6020808252825182820181905260009190848201906040850190845b81811015611f2457835183529284019291840191600101611f08565b50909695505050505050565b80358015158114611d9157600080fd5b60008060408385031215611f5357600080fd5b611f5c83611d7a565b9150611f6a60208401611f30565b90509250929050565b60008060008060808587031215611f8957600080fd5b611f9285611d7a565b9350611fa060208601611d7a565b925060408501359150606085013567ffffffffffffffff811115611fc357600080fd5b8501601f81018713611fd457600080fd5b611fe387823560208401611e2d565b91505092959194509250565b60006020828403121561200157600080fd5b6113c682611f30565b6000806040838503121561201d57600080fd5b61202683611d7a565b9150611f6a60208401611d7a565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156120985761209861206f565b500190565b60006000198214156120b1576120b161206f565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561219e5761219e61206f565b500290565b600083516121b5818460208801611cf6565b8351908301906121c9818360208801611cf6565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261224957612249612224565b500490565b6000828210156122605761226061206f565b500390565b60008261227457612274612224565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ac90830184611d22565b9695505050505050565b6000602082840312156122c857600080fd5b81516113c681611cc356fea264697066735822122085f73e5d0c90dfc04b481802949b7041518efb684ac197c2e5b95296a09c930464736f6c634300080b0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635c975abb11610118578063a22cb465116100a0578063d0eb26b01161006f578063d0eb26b0146105c8578063d5034b74146105e8578063d897833e14610608578063e985e9c514610628578063f2fde38b1461067157600080fd5b8063a22cb46514610552578063b88d4fde14610572578063ba7d2c7614610592578063c87b56dd146105a857600080fd5b8063715018a6116100e7578063715018a6146104ca5780638462151c146104df5780638da5cb5b1461050c57806395d89b411461052a578063a0712d681461053f57600080fd5b80635c975abb146104565780636352211e146104755780636c0360eb1461049557806370a08231146104aa57600080fd5b8063228025e81161019b57806342842e0e1161016a57806342842e0e146103c057806344a0d68a146103e0578063485a68a3146104005780634f6ccce71461041657806355f804b31461043657600080fd5b8063228025e81461035857806323b872dd146103785780632f745c59146103985780633ccfd60b146103b857600080fd5b8063095ea7b3116101e2578063095ea7b3146102b857806313faede6146102d857806318160ddd146102fc57806318cae26914610311578063200d2ed21461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063084dcc69146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611cd9565b610691565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bc565b6040516102409190611d4e565b34801561027757600080fd5b5061028b610286366004611d61565b61074e565b6040516001600160a01b039091168152602001610240565b6102b66102b1366004611d61565b6107db565b005b3480156102c457600080fd5b506102b66102d3366004611d96565b6109f7565b3480156102e457600080fd5b506102ee60095481565b604051908152602001610240565b34801561030857600080fd5b506002546102ee565b34801561031d57600080fd5b506102ee61032c366004611dc0565b600d6020526000908152604090205481565b34801561034a57600080fd5b50600c546102349060ff1681565b34801561036457600080fd5b506102b6610373366004611d61565b610b0d565b34801561038457600080fd5b506102b6610393366004611ddb565b610b3c565b3480156103a457600080fd5b506102ee6103b3366004611d96565b610b6d565b6102b6610c1c565b3480156103cc57600080fd5b506102b66103db366004611ddb565b610c9e565b3480156103ec57600080fd5b506102b66103fb366004611d61565b610cb9565b34801561040c57600080fd5b506102ee600a5481565b34801561042257600080fd5b506102ee610431366004611d61565b610ce8565b34801561044257600080fd5b506102b6610451366004611ea3565b610d45565b34801561046257600080fd5b50600554600160a01b900460ff16610234565b34801561048157600080fd5b5061028b610490366004611d61565b610d86565b3480156104a157600080fd5b5061025e610e12565b3480156104b657600080fd5b506102ee6104c5366004611dc0565b610ea0565b3480156104d657600080fd5b506102b6610f72565b3480156104eb57600080fd5b506104ff6104fa366004611dc0565b610fa8565b6040516102409190611eec565b34801561051857600080fd5b506005546001600160a01b031661028b565b34801561053657600080fd5b5061025e611072565b6102b661054d366004611d61565b611081565b34801561055e57600080fd5b506102b661056d366004611f40565b611213565b34801561057e57600080fd5b506102b661058d366004611f73565b6112d8565b34801561059e57600080fd5b506102ee600b5481565b3480156105b457600080fd5b5061025e6105c3366004611d61565b611310565b3480156105d457600080fd5b506102b66105e3366004611d61565b6113cd565b3480156105f457600080fd5b506102b6610603366004611d61565b6113fc565b34801561061457600080fd5b506102b6610623366004611fef565b61142b565b34801561063457600080fd5b5061023461064336600461200a565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561067d57600080fd5b506102b661068c366004611dc0565b611468565b60006001600160e01b0319821663780e9d6360e01b14806106b657506106b682611500565b92915050565b6060600080546106cb90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546106f790612034565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b600061075982611550565b6107bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6002600654141561082e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b6565b6002600655600061083e60025490565b336000908152600d6020526040902054600b549192509061085f8483612085565b11156108ad5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107b6565b600083116108eb5760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b60448201526064016107b6565b600283111561093c5760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e74000000000060448201526064016107b6565b600a546109498484612085565b111561098d5760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b60448201526064016107b6565b60005b838110156109ec57336000908152600d602052604081208054916109b38361209d565b909155506109dc9050336109c78386612085565b6040518060200160405280600081525061159a565b6109e58161209d565b9050610990565b505060016006555050565b6000610a0282610d86565b9050806001600160a01b0316836001600160a01b03161415610a705760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b6565b336001600160a01b0382161480610a8c5750610a8c8133610643565b610afe5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b6565b610b0883836115cd565b505050565b6005546001600160a01b03163314610b375760405162461bcd60e51b81526004016107b6906120b8565b600855565b610b46338261163b565b610b625760405162461bcd60e51b81526004016107b6906120ed565b610b08838383611725565b6000610b7883610ea0565b8210610b965760405162461bcd60e51b81526004016107b69061213e565b6000805b600254811015610c035760028181548110610bb757610bb761216e565b6000918252602090912001546001600160a01b0386811691161415610bf35783821415610be75791506106b69050565b610bf08261209d565b91505b610bfc8161209d565b9050610b9a565b5060405162461bcd60e51b81526004016107b69061213e565b6005546001600160a01b03163314610c465760405162461bcd60e51b81526004016107b6906120b8565b604051600090339047908381818185875af1925050503d8060008114610c88576040519150601f19603f3d011682016040523d82523d6000602084013e610c8d565b606091505b5050905080610c9b57600080fd5b50565b610b08838383604051806020016040528060008152506112d8565b6005546001600160a01b03163314610ce35760405162461bcd60e51b81526004016107b6906120b8565b600955565b6000610cf360025490565b8210610d415760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016107b6565b5090565b6005546001600160a01b03163314610d6f5760405162461bcd60e51b81526004016107b6906120b8565b8051610d82906007906020840190611c33565b5050565b60008060028381548110610d9c57610d9c61216e565b6000918252602090912001546001600160a01b03169050806106b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b6565b60078054610e1f90612034565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4b90612034565b8015610e985780601f10610e6d57610100808354040283529160200191610e98565b820191906000526020600020905b815481529060010190602001808311610e7b57829003601f168201915b505050505081565b60006001600160a01b038216610f0b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b6565b600254600090815b81811015610f695760028181548110610f2e57610f2e61216e565b6000918252602090912001546001600160a01b0386811691161415610f5957610f568361209d565b92505b610f628161209d565b9050610f13565b50909392505050565b6005546001600160a01b03163314610f9c5760405162461bcd60e51b81526004016107b6906120b8565b610fa6600061187b565b565b6060610fb382610ea0565b600010610fd25760405162461bcd60e51b81526004016107b69061213e565b6000610fdd83610ea0565b905060008167ffffffffffffffff811115610ffa57610ffa611e17565b604051908082528060200260200182016040528015611023578160200160208202803683370190505b50905060005b8281101561106a5761103b8582610b6d565b82828151811061104d5761104d61216e565b6020908102919091010152806110628161209d565b915050611029565b509392505050565b6060600180546106cb90612034565b600260065414156110d45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b6565b600260065560006110e460025490565b9050600082116111245760405162461bcd60e51b815260206004820152600b60248201526a043616e74206d696e7420360ac1b60448201526064016107b6565b60148211156111755760405162461bcd60e51b815260206004820152601b60248201527f43616e74206d696e74206d6f7265207468656e206d61786d696e74000000000060448201526064016107b6565b6008546111828383612085565b11156111c65760405162461bcd60e51b815260206004820152601360248201527243616e7420676f206f76657220737570706c7960681b60448201526064016107b6565b816009546111d49190612184565b3410156111e057600080fd5b60005b82811015611209576111f9336109c78385612085565b6112028161209d565b90506111e3565b5050600160065550565b6001600160a01b03821633141561126c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b6565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112e2338361163b565b6112fe5760405162461bcd60e51b81526004016107b6906120ed565b61130a848484846118cd565b50505050565b606061131b82611550565b6113715760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016107b6565b600061137b611900565b9050600081511161139b57604051806020016040528060008152506113c6565b806113a58461190f565b6040516020016113b69291906121a3565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146113f75760405162461bcd60e51b81526004016107b6906120b8565b600b55565b6005546001600160a01b031633146114265760405162461bcd60e51b81526004016107b6906120b8565b600a55565b6005546001600160a01b031633146114555760405162461bcd60e51b81526004016107b6906120b8565b600c805460ff1916911515919091179055565b6005546001600160a01b031633146114925760405162461bcd60e51b81526004016107b6906120b8565b6001600160a01b0381166114f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b6565b610c9b8161187b565b60006001600160e01b031982166380ac58cd60e01b148061153157506001600160e01b03198216635b5e139f60e01b145b806106b657506301ffc9a760e01b6001600160e01b03198316146106b6565b600254600090821080156106b6575060006001600160a01b03166002838154811061157d5761157d61216e565b6000918252602090912001546001600160a01b0316141592915050565b6115a48383611a0d565b6115b16000848484611b35565b610b085760405162461bcd60e51b81526004016107b6906121d2565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160282610d86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164682611550565b6116a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b6565b60006116b283610d86565b9050806001600160a01b0316846001600160a01b031614806116ed5750836001600160a01b03166116e28461074e565b6001600160a01b0316145b8061171d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661173882610d86565b6001600160a01b0316146117a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b6565b6001600160a01b0382166118025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b6565b61180d6000826115cd565b81600282815481106118215761182161216e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118d8848484611725565b6118e484848484611b35565b61130a5760405162461bcd60e51b81526004016107b6906121d2565b6060600780546106cb90612034565b6060816119335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195d57806119478161209d565b91506119569050600a8361223a565b9150611937565b60008167ffffffffffffffff81111561197857611978611e17565b6040519080825280601f01601f1916602001820160405280156119a2576020820181803683370190505b5090505b841561171d576119b760018361224e565b91506119c4600a86612265565b6119cf906030612085565b60f81b8183815181106119e4576119e461216e565b60200101906001600160f81b031916908160001a905350611a06600a8661223a565b94506119a6565b6001600160a01b038216611a635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b6565b611a6c81611550565b15611ab95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b6565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611c2857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b79903390899088908890600401612279565b6020604051808303816000875af1925050508015611bb4575060408051601f3d908101601f19168201909252611bb1918101906122b6565b60015b611c0e573d808015611be2576040519150601f19603f3d011682016040523d82523d6000602084013e611be7565b606091505b508051611c065760405162461bcd60e51b81526004016107b6906121d2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061171d565b506001949350505050565b828054611c3f90612034565b90600052602060002090601f016020900481019282611c615760008555611ca7565b82601f10611c7a57805160ff1916838001178555611ca7565b82800160010185558215611ca7579182015b82811115611ca7578251825591602001919060010190611c8c565b50610d419291505b80821115610d415760008155600101611caf565b6001600160e01b031981168114610c9b57600080fd5b600060208284031215611ceb57600080fd5b81356113c681611cc3565b60005b83811015611d11578181015183820152602001611cf9565b8381111561130a5750506000910152565b60008151808452611d3a816020860160208601611cf6565b601f01601f19169290920160200192915050565b6020815260006113c66020830184611d22565b600060208284031215611d7357600080fd5b5035919050565b80356001600160a01b0381168114611d9157600080fd5b919050565b60008060408385031215611da957600080fd5b611db283611d7a565b946020939093013593505050565b600060208284031215611dd257600080fd5b6113c682611d7a565b600080600060608486031215611df057600080fd5b611df984611d7a565b9250611e0760208501611d7a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e4857611e48611e17565b604051601f8501601f19908116603f01168101908282118183101715611e7057611e70611e17565b81604052809350858152868686011115611e8957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eb557600080fd5b813567ffffffffffffffff811115611ecc57600080fd5b8201601f81018413611edd57600080fd5b61171d84823560208401611e2d565b6020808252825182820181905260009190848201906040850190845b81811015611f2457835183529284019291840191600101611f08565b50909695505050505050565b80358015158114611d9157600080fd5b60008060408385031215611f5357600080fd5b611f5c83611d7a565b9150611f6a60208401611f30565b90509250929050565b60008060008060808587031215611f8957600080fd5b611f9285611d7a565b9350611fa060208601611d7a565b925060408501359150606085013567ffffffffffffffff811115611fc357600080fd5b8501601f81018713611fd457600080fd5b611fe387823560208401611e2d565b91505092959194509250565b60006020828403121561200157600080fd5b6113c682611f30565b6000806040838503121561201d57600080fd5b61202683611d7a565b9150611f6a60208401611d7a565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156120985761209861206f565b500190565b60006000198214156120b1576120b161206f565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561219e5761219e61206f565b500290565b600083516121b5818460208801611cf6565b8351908301906121c9818360208801611cf6565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261224957612249612224565b500490565b6000828210156122605761226061206f565b500390565b60008261227457612274612224565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ac90830184611d22565b9695505050505050565b6000602082840312156122c857600080fd5b81516113c681611cc356fea264697066735822122085f73e5d0c90dfc04b481802949b7041518efb684ac197c2e5b95296a09c930464736f6c634300080b0033

Deployed Bytecode Sourcemap

47982:2717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32203:225;;;;;;;;;;-1:-1:-1;32203:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32203:225:0;;;;;;;;11321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11955:221::-;;;;;;;;;;-1:-1:-1;11955:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;11955:221:0;1528:203:1;48575:598:0;;;;;;:::i;:::-;;:::i;:::-;;11537:412;;;;;;;;;;-1:-1:-1;11537:412:0;;;;;:::i;:::-;;:::i;48158:34::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48158:34:0;2173:177:1;33364:110:0;;;;;;;;;;-1:-1:-1;33452:7:0;:14;33364:110;;48312:55;;;;;;;;;;-1:-1:-1;48312:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48279:26;;;;;;;;;;-1:-1:-1;48279:26:0;;;;;;;;50158:100;;;;;;;;;;-1:-1:-1;50158:100:0;;;;;:::i;:::-;;:::i;12653:339::-;;;;;;;;;;-1:-1:-1;12653:339:0;;;;;:::i;:::-;;:::i;32434:500::-;;;;;;;;;;-1:-1:-1;32434:500:0;;;;;:::i;:::-;;:::i;50539:151::-;;;:::i;12998:185::-;;;;;;;;;;-1:-1:-1;12998:185:0;;;;;:::i;:::-;;:::i;50368:80::-;;;;;;;;;;-1:-1:-1;50368:80:0;;;;;:::i;:::-;;:::i;48199:29::-;;;;;;;;;;;;;;;;33480:194;;;;;;;;;;-1:-1:-1;33480:194:0;;;;;:::i;:::-;;:::i;50261:98::-;;;;;;;;;;-1:-1:-1;50261:98:0;;;;;:::i;:::-;;:::i;42468:86::-;;;;;;;;;;-1:-1:-1;42539:7:0;;-1:-1:-1;;;42539:7:0;;;;42468:86;;11076:239;;;;;;;;;;-1:-1:-1;11076:239:0;;;;;:::i;:::-;;:::i;48094:21::-;;;;;;;;;;;;;:::i;10656:414::-;;;;;;;;;;-1:-1:-1;10656:414:0;;;;;:::i;:::-;;:::i;47296:94::-;;;;;;;;;;;;;:::i;32940:418::-;;;;;;;;;;-1:-1:-1;32940:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46645:87::-;;;;;;;;;;-1:-1:-1;46718:6:0;;-1:-1:-1;;;;;46718:6:0;46645:87;;11427:104;;;;;;;;;;;;;:::i;49178:419::-;;;;;;:::i;:::-;;:::i;12182:295::-;;;;;;;;;;-1:-1:-1;12182:295:0;;;;;:::i;:::-;;:::i;13189:328::-;;;;;;;;;;-1:-1:-1;13189:328:0;;;;;:::i;:::-;;:::i;48237:38::-;;;;;;;;;;;;;;;;49605:327;;;;;;;;;;-1:-1:-1;49605:327:0;;;;;:::i;:::-;;:::i;49950:104::-;;;;;;;;;;-1:-1:-1;49950:104:0;;;;;:::i;:::-;;:::i;50059:92::-;;;;;;;;;;-1:-1:-1;50059:92:0;;;;;:::i;:::-;;:::i;50453:83::-;;;;;;;;;;-1:-1:-1;50453:83:0;;;;;:::i;:::-;;:::i;12483:164::-;;;;;;;;;;-1:-1:-1;12483:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;12604:25:0;;;12580:4;12604:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12483:164;47545:192;;;;;;;;;;-1:-1:-1;47545:192:0;;;;;:::i;:::-;;:::i;32203:225::-;32306:4;-1:-1:-1;;;;;;32330:50:0;;-1:-1:-1;;;32330:50:0;;:90;;;32384:36;32408:11;32384:23;:36::i;:::-;32323:97;32203:225;-1:-1:-1;;32203:225:0:o;11321:100::-;11375:13;11408:5;11401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11321:100;:::o;11955:221::-;12031:7;12059:16;12067:7;12059;:16::i;:::-;12051:73;;;;-1:-1:-1;;;12051:73:0;;6874:2:1;12051:73:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:42;7055:19;;12051:73:0;;;;;;;;;-1:-1:-1;12144:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12144:24:0;;11955:221::o;48575:598::-;35387:1;35983:7;;:19;;35975:63;;;;-1:-1:-1;;;35975:63:0;;7287:2:1;35975:63:0;;;7269:21:1;7326:2;7306:18;;;7299:30;7365:33;7345:18;;;7338:61;7416:18;;35975:63:0;7085:355:1;35975:63:0;35387:1;36116:7;:18;48646:9:::1;48658:13;33452:7:::0;:14;;33364:110;48658:13:::1;48730:10;48682:24;48709:32:::0;;;:20:::1;:32;::::0;;;;;48794:18:::1;::::0;48646:25;;-1:-1:-1;48709:32:0;48760:30:::1;48779:11:::0;48709:32;48760:30:::1;:::i;:::-;:52;;48752:93;;;::::0;-1:-1:-1;;;48752:93:0;;7912:2:1;48752:93:0::1;::::0;::::1;7894:21:1::0;7951:2;7931:18;;;7924:30;7990;7970:18;;;7963:58;8038:18;;48752:93:0::1;7710:352:1::0;48752:93:0::1;48872:1;48858:11;:15;48850:40;;;::::0;-1:-1:-1;;;48850:40:0;;8269:2:1;48850:40:0::1;::::0;::::1;8251:21:1::0;8308:2;8288:18;;;8281:30;-1:-1:-1;;;8327:18:1;;;8320:41;8378:18;;48850:40:0::1;8067:335:1::0;48850:40:0::1;48918:1;48903:11;:16;;48895:57;;;::::0;-1:-1:-1;;;48895:57:0;;8609:2:1;48895:57:0::1;::::0;::::1;8591:21:1::0;8648:2;8628:18;;;8621:30;8687:29;8667:18;;;8660:57;8734:18;;48895:57:0::1;8407:351:1::0;48895:57:0::1;48984:7;::::0;48965:15:::1;48969:11:::0;48965:1;:15:::1;:::i;:::-;:26;;48957:59;;;::::0;-1:-1:-1;;;48957:59:0;;8965:2:1;48957:59:0::1;::::0;::::1;8947:21:1::0;9004:2;8984:18;;;8977:30;-1:-1:-1;;;9023:18:1;;;9016:49;9082:18;;48957:59:0::1;8763:343:1::0;48957:59:0::1;49026:9;49021:135;49045:11;49041:1;:15;49021:135;;;49099:10;49078:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;49118:32:0::1;::::0;-1:-1:-1;49128:10:0::1;49140:5;49144:1:::0;49140;:5:::1;:::i;:::-;49118:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;49058:3;::::0;::::1;:::i;:::-;;;49021:135;;;-1:-1:-1::0;;35343:1:0;36295:7;:22;-1:-1:-1;;48575:598:0:o;11537:412::-;11618:13;11634:24;11650:7;11634:15;:24::i;:::-;11618:40;;11683:5;-1:-1:-1;;;;;11677:11:0;:2;-1:-1:-1;;;;;11677:11:0;;;11669:57;;;;-1:-1:-1;;;11669:57:0;;9453:2:1;11669:57:0;;;9435:21:1;9492:2;9472:18;;;9465:30;9531:34;9511:18;;;9504:62;-1:-1:-1;;;9582:18:1;;;9575:31;9623:19;;11669:57:0;9251:397:1;11669:57:0;9696:10;-1:-1:-1;;;;;11761:21:0;;;;:62;;-1:-1:-1;11786:37:0;11803:5;9696:10;12483:164;:::i;11786:37::-;11739:168;;;;-1:-1:-1;;;11739:168:0;;9855:2:1;11739:168:0;;;9837:21:1;9894:2;9874:18;;;9867:30;9933:34;9913:18;;;9906:62;10004:26;9984:18;;;9977:54;10048:19;;11739:168:0;9653:420:1;11739:168:0;11920:21;11929:2;11933:7;11920:8;:21::i;:::-;11607:342;11537:412;;:::o;50158:100::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50228:9:::1;:25:::0;50158:100::o;12653:339::-;12848:41;9696:10;12881:7;12848:18;:41::i;:::-;12840:103;;;;-1:-1:-1;;;12840:103:0;;;;;;;:::i;:::-;12956:28;12966:4;12972:2;12976:7;12956:9;:28::i;32434:500::-;32523:15;32567:24;32585:5;32567:17;:24::i;:::-;32559:5;:32;32551:67;;;;-1:-1:-1;;;32551:67:0;;;;;;;:::i;:::-;32629:10;32655:6;32650:226;32667:7;:14;32663:18;;32650:226;;;32716:7;32724:1;32716:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32707:19:0;;;32716:10;;32707:19;32703:162;;;32760:5;32751;:14;32747:102;;;32796:1;-1:-1:-1;32789:8:0;;-1:-1:-1;32789:8:0;32747:102;32842:7;;;:::i;:::-;;;32747:102;32683:3;;;:::i;:::-;;;32650:226;;;-1:-1:-1;32886:40:0;;-1:-1:-1;;;32886:40:0;;;;;;;:::i;50539:151::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50607:58:::1;::::0;50589:12:::1;::::0;50615:10:::1;::::0;50639:21:::1;::::0;50589:12;50607:58;50589:12;50607:58;50639:21;50615:10;50607:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50588:77;;;50677:7;50669:16;;;::::0;::::1;;50584:106;50539:151::o:0;12998:185::-;13136:39;13153:4;13159:2;13163:7;13136:39;;;;;;;;;;;;:16;:39::i;50368:80::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50428:4:::1;:15:::0;50368:80::o;33480:194::-;33555:7;33591:24;33452:7;:14;;33364:110;33591:24;33583:5;:32;33575:68;;;;-1:-1:-1;;;33575:68:0;;11752:2:1;33575:68:0;;;11734:21:1;11791:2;11771:18;;;11764:30;11830:25;11810:18;;;11803:53;11873:18;;33575:68:0;11550:347:1;33575:68:0;-1:-1:-1;33661:5:0;33480:194::o;50261:98::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50333:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50261:98:::0;:::o;11076:239::-;11148:7;11168:13;11184:7;11192;11184:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11184:16:0;;-1:-1:-1;11219:19:0;11211:73;;;;-1:-1:-1;;;11211:73:0;;12104:2:1;11211:73:0;;;12086:21:1;12143:2;12123:18;;;12116:30;12182:34;12162:18;;;12155:62;-1:-1:-1;;;12233:18:1;;;12226:39;12282:19;;11211:73:0;11902:405:1;48094:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10656:414::-;10728:7;-1:-1:-1;;;;;10756:19:0;;10748:74;;;;-1:-1:-1;;;10748:74:0;;12514:2:1;10748:74:0;;;12496:21:1;12553:2;12533:18;;;12526:30;12592:34;12572:18;;;12565:62;-1:-1:-1;;;12643:18:1;;;12636:40;12693:19;;10748:74:0;12312:406:1;10748:74:0;10872:7;:14;10833:10;;;10897:119;10918:6;10914:1;:10;10897:119;;;10957:7;10965:1;10957:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;10948:19:0;;;10957:10;;10948:19;10944:61;;;10984:7;;;:::i;:::-;;;10944:61;10926:3;;;:::i;:::-;;;10897:119;;;-1:-1:-1;11057:5:0;;10656:414;-1:-1:-1;;;10656:414:0:o;47296:94::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;47361:21:::1;47379:1;47361:9;:21::i;:::-;47296:94::o:0;32940:418::-;32999:16;33040:24;33058:5;33040:17;:24::i;:::-;33036:1;:28;33028:63;;;;-1:-1:-1;;;33028:63:0;;;;;;;:::i;:::-;33102:18;33123:16;33133:5;33123:9;:16::i;:::-;33102:37;;33150:25;33192:10;33178:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33178:25:0;;33150:53;;33219:9;33214:111;33238:10;33234:1;:14;33214:111;;;33284:29;33304:5;33311:1;33284:19;:29::i;:::-;33270:8;33279:1;33270:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33250:3;;;;:::i;:::-;;;;33214:111;;;-1:-1:-1;33342:8:0;32940:418;-1:-1:-1;;;32940:418:0:o;11427:104::-;11483:13;11516:7;11509:14;;;;;:::i;49178:419::-;35387:1;35983:7;;:19;;35975:63;;;;-1:-1:-1;;;35975:63:0;;7287:2:1;35975:63:0;;;7269:21:1;7326:2;7306:18;;;7299:30;7365:33;7345:18;;;7338:61;7416:18;;35975:63:0;7085:355:1;35975:63:0;35387:1;36116:7;:18;49245:9:::1;49257:13;33452:7:::0;:14;;33364:110;49257:13:::1;49245:25;;49297:1;49283:11;:15;49275:40;;;::::0;-1:-1:-1;;;49275:40:0;;8269:2:1;49275:40:0::1;::::0;::::1;8251:21:1::0;8308:2;8288:18;;;8281:30;-1:-1:-1;;;8327:18:1;;;8320:41;8378:18;;49275:40:0::1;8067:335:1::0;49275:40:0::1;49343:2;49328:11;:17;;49320:58;;;::::0;-1:-1:-1;;;49320:58:0;;8609:2:1;49320:58:0::1;::::0;::::1;8591:21:1::0;8648:2;8628:18;;;8621:30;8687:29;8667:18;;;8660:57;8734:18;;49320:58:0::1;8407:351:1::0;49320:58:0::1;49410:9;::::0;49391:15:::1;49395:11:::0;49391:1;:15:::1;:::i;:::-;:28;;49383:61;;;::::0;-1:-1:-1;;;49383:61:0;;8965:2:1;49383:61:0::1;::::0;::::1;8947:21:1::0;9004:2;8984:18;;;8977:30;-1:-1:-1;;;9023:18:1;;;9016:49;9082:18;;49383:61:0::1;8763:343:1::0;49383:61:0::1;49477:11;49470:4;;:18;;;;:::i;:::-;49457:9;:31;;49449:40;;;::::0;::::1;;49499:9;49494:86;49518:11;49514:1;:15;49494:86;;;49542:32;49552:10;49564:5;49568:1:::0;49564;:5:::1;:::i;49542:32::-;49531:3;::::0;::::1;:::i;:::-;;;49494:86;;;-1:-1:-1::0;;35343:1:0;36295:7;:22;-1:-1:-1;49178:419:0:o;12182:295::-;-1:-1:-1;;;;;12285:24:0;;9696:10;12285:24;;12277:62;;;;-1:-1:-1;;;12277:62:0;;13098:2:1;12277:62:0;;;13080:21:1;13137:2;13117:18;;;13110:30;13176:27;13156:18;;;13149:55;13221:18;;12277:62:0;12896:349:1;12277:62:0;9696:10;12352:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;12352:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;12352:53:0;;;;;;;;;;12421:48;;540:41:1;;;12352:42:0;;9696:10;12421:48;;513:18:1;12421:48:0;;;;;;;12182:295;;:::o;13189:328::-;13364:41;9696:10;13397:7;13364:18;:41::i;:::-;13356:103;;;;-1:-1:-1;;;13356:103:0;;;;;;;:::i;:::-;13470:39;13484:4;13490:2;13494:7;13503:5;13470:13;:39::i;:::-;13189:328;;;;:::o;49605:327::-;49678:13;49709:16;49717:7;49709;:16::i;:::-;49701:62;;;;-1:-1:-1;;;49701:62:0;;13452:2:1;49701:62:0;;;13434:21:1;13491:2;13471:18;;;13464:30;13530:34;13510:18;;;13503:62;-1:-1:-1;;;13581:18:1;;;13574:31;13622:19;;49701:62:0;13250:397:1;49701:62:0;49771:28;49802:10;:8;:10::i;:::-;49771:41;;49858:1;49833:14;49827:28;:32;:100;;;;;;;;;;;;;;;;;49886:14;49902:18;:7;:16;:18::i;:::-;49869:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49827:100;49820:107;49605:327;-1:-1:-1;;;49605:327:0:o;49950:104::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50021:18:::1;:27:::0;49950:104::o;50059:92::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50125:7:::1;:21:::0;50059:92::o;50453:83::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;50515:6:::1;:16:::0;;-1:-1:-1;;50515:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50453:83::o;47545:192::-;46718:6;;-1:-1:-1;;;;;46718:6:0;9696:10;46865:23;46857:68;;;;-1:-1:-1;;;46857:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47634:22:0;::::1;47626:73;;;::::0;-1:-1:-1;;;47626:73:0;;14329:2:1;47626:73:0::1;::::0;::::1;14311:21:1::0;14368:2;14348:18;;;14341:30;14407:34;14387:18;;;14380:62;-1:-1:-1;;;14458:18:1;;;14451:36;14504:19;;47626:73:0::1;14127:402:1::0;47626:73:0::1;47710:19;47720:8;47710:9;:19::i;10345:305::-:0;10447:4;-1:-1:-1;;;;;;10484:40:0;;-1:-1:-1;;;10484:40:0;;:105;;-1:-1:-1;;;;;;;10541:48:0;;-1:-1:-1;;;10541:48:0;10484:105;:158;;;-1:-1:-1;;;;;;;;;;1683:40:0;;;10606:36;1574:157;13846:155;13945:7;:14;13911:4;;13935:24;;:58;;;;;13991:1;-1:-1:-1;;;;;13963:30:0;:7;13971;13963:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;13963:16:0;:30;;13928:65;13846:155;-1:-1:-1;;13846:155:0:o;14469:321::-;14599:18;14605:2;14609:7;14599:5;:18::i;:::-;14650:54;14681:1;14685:2;14689:7;14698:5;14650:22;:54::i;:::-;14628:154;;;;-1:-1:-1;;;14628:154:0;;;;;;;:::i;15998:175::-;16073:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16073:29:0;-1:-1:-1;;;;;16073:29:0;;;;;;;;:24;;16127;16073;16127:15;:24::i;:::-;-1:-1:-1;;;;;16118:47:0;;;;;;;;;;;15998:175;;:::o;14004:349::-;14097:4;14122:16;14130:7;14122;:16::i;:::-;14114:73;;;;-1:-1:-1;;;14114:73:0;;15155:2:1;14114:73:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;-1:-1:-1;;;15284:18:1;;;15277:42;15336:19;;14114:73:0;14953:408:1;14114:73:0;14198:13;14214:24;14230:7;14214:15;:24::i;:::-;14198:40;;14268:5;-1:-1:-1;;;;;14257:16:0;:7;-1:-1:-1;;;;;14257:16:0;;:51;;;;14301:7;-1:-1:-1;;;;;14277:31:0;:20;14289:7;14277:11;:20::i;:::-;-1:-1:-1;;;;;14277:31:0;;14257:51;:87;;;-1:-1:-1;;;;;;12604:25:0;;;12580:4;12604:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;14312:32;14249:96;14004:349;-1:-1:-1;;;;14004:349:0:o;15478:517::-;15638:4;-1:-1:-1;;;;;15610:32:0;:24;15626:7;15610:15;:24::i;:::-;-1:-1:-1;;;;;15610:32:0;;15602:86;;;;-1:-1:-1;;;15602:86:0;;15568:2:1;15602:86:0;;;15550:21:1;15607:2;15587:18;;;15580:30;15646:34;15626:18;;;15619:62;-1:-1:-1;;;15697:18:1;;;15690:39;15746:19;;15602:86:0;15366:405:1;15602:86:0;-1:-1:-1;;;;;15707:16:0;;15699:65;;;;-1:-1:-1;;;15699:65:0;;15978:2:1;15699:65:0;;;15960:21:1;16017:2;15997:18;;;15990:30;16056:34;16036:18;;;16029:62;-1:-1:-1;;;16107:18:1;;;16100:34;16151:19;;15699:65:0;15776:400:1;15699:65:0;15881:29;15898:1;15902:7;15881:8;:29::i;:::-;15940:2;15921:7;15929;15921:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;15921:21:0;-1:-1:-1;;;;;15921:21:0;;;;;;15960:27;;15979:7;;15960:27;;;;;;;;;;15921:16;15960:27;15478:517;;;:::o;47745:173::-;47820:6;;;-1:-1:-1;;;;;47837:17:0;;;-1:-1:-1;;;;;;47837:17:0;;;;;;;47870:40;;47820:6;;;47837:17;47820:6;;47870:40;;47801:16;;47870:40;47790:128;47745:173;:::o;13528:315::-;13685:28;13695:4;13701:2;13705:7;13685:9;:28::i;:::-;13732:48;13755:4;13761:2;13765:7;13774:5;13732:22;:48::i;:::-;13724:111;;;;-1:-1:-1;;;13724:111:0;;;;;;;:::i;48473:93::-;48524:13;48554:7;48547:14;;;;;:::i;43927:723::-;43983:13;44204:10;44200:53;;-1:-1:-1;;44231:10:0;;;;;;;;;;;;-1:-1:-1;;;44231:10:0;;;;;43927:723::o;44200:53::-;44278:5;44263:12;44319:78;44326:9;;44319:78;;44352:8;;;;:::i;:::-;;-1:-1:-1;44375:10:0;;-1:-1:-1;44383:2:0;44375:10;;:::i;:::-;;;44319:78;;;44407:19;44439:6;44429:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44429:17:0;;44407:39;;44457:154;44464:10;;44457:154;;44491:11;44501:1;44491:11;;:::i;:::-;;-1:-1:-1;44560:10:0;44568:2;44560:5;:10;:::i;:::-;44547:24;;:2;:24;:::i;:::-;44534:39;;44517:6;44524;44517:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44517:56:0;;;;;;;;-1:-1:-1;44588:11:0;44597:2;44588:11;;:::i;:::-;;;44457:154;;14793:346;-1:-1:-1;;;;;14873:16:0;;14865:61;;;;-1:-1:-1;;;14865:61:0;;16887:2:1;14865:61:0;;;16869:21:1;;;16906:18;;;16899:30;16965:34;16945:18;;;16938:62;17017:18;;14865:61:0;16685:356:1;14865:61:0;14946:16;14954:7;14946;:16::i;:::-;14945:17;14937:58;;;;-1:-1:-1;;;14937:58:0;;17248:2:1;14937:58:0;;;17230:21:1;17287:2;17267:18;;;17260:30;17326;17306:18;;;17299:58;17374:18;;14937:58:0;17046:352:1;14937:58:0;15064:7;:16;;;;;;;-1:-1:-1;15064:16:0;;;;;;;-1:-1:-1;;;;;;15064:16:0;-1:-1:-1;;;;;15064:16:0;;;;;;;;15098:33;;15123:7;;-1:-1:-1;15098:33:0;;-1:-1:-1;;15098:33:0;14793:346;;:::o;16176:799::-;16331:4;-1:-1:-1;;;;;16352:13:0;;25076:20;25124:8;16348:620;;16388:72;;-1:-1:-1;;;16388:72:0;;-1:-1:-1;;;;;16388:36:0;;;;;:72;;9696:10;;16439:4;;16445:7;;16454:5;;16388:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16388:72:0;;;;;;;;-1:-1:-1;;16388:72:0;;;;;;;;;;;;:::i;:::-;;;16384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16630:13:0;;16626:272;;16673:60;;-1:-1:-1;;;16673:60:0;;;;;;;:::i;16626:272::-;16848:6;16842:13;16833:6;16829:2;16825:15;16818:38;16384:529;-1:-1:-1;;;;;;16511:51:0;-1:-1:-1;;;16511:51:0;;-1:-1:-1;16504:58:0;;16348:620;-1:-1:-1;16952:4:0;16176:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:160::-;4806:20;;4862:13;;4855:21;4845:32;;4835:60;;4891:1;4888;4881:12;4906:254;4971:6;4979;5032:2;5020:9;5011:7;5007:23;5003:32;5000:52;;;5048:1;5045;5038:12;5000:52;5071:29;5090:9;5071:29;:::i;:::-;5061:39;;5119:35;5150:2;5139:9;5135:18;5119:35;:::i;:::-;5109:45;;4906:254;;;;;:::o;5165:667::-;5260:6;5268;5276;5284;5337:3;5325:9;5316:7;5312:23;5308:33;5305:53;;;5354:1;5351;5344:12;5305:53;5377:29;5396:9;5377:29;:::i;:::-;5367:39;;5425:38;5459:2;5448:9;5444:18;5425:38;:::i;:::-;5415:48;;5510:2;5499:9;5495:18;5482:32;5472:42;;5565:2;5554:9;5550:18;5537:32;5592:18;5584:6;5581:30;5578:50;;;5624:1;5621;5614:12;5578:50;5647:22;;5700:4;5692:13;;5688:27;-1:-1:-1;5678:55:1;;5729:1;5726;5719:12;5678:55;5752:74;5818:7;5813:2;5800:16;5795:2;5791;5787:11;5752:74;:::i;:::-;5742:84;;;5165:667;;;;;;;:::o;5837:180::-;5893:6;5946:2;5934:9;5925:7;5921:23;5917:32;5914:52;;;5962:1;5959;5952:12;5914:52;5985:26;6001:9;5985:26;:::i;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7445:127::-;7506:10;7501:3;7497:20;7494:1;7487:31;7537:4;7534:1;7527:15;7561:4;7558:1;7551:15;7577:128;7617:3;7648:1;7644:6;7641:1;7638:13;7635:39;;;7654:18;;:::i;:::-;-1:-1:-1;7690:9:1;;7577:128::o;9111:135::-;9150:3;-1:-1:-1;;9171:17:1;;9168:43;;;9191:18;;:::i;:::-;-1:-1:-1;9238:1:1;9227:13;;9111:135::o;10078:356::-;10280:2;10262:21;;;10299:18;;;10292:30;10358:34;10353:2;10338:18;;10331:62;10425:2;10410:18;;10078:356::o;10439:413::-;10641:2;10623:21;;;10680:2;10660:18;;;10653:30;10719:34;10714:2;10699:18;;10692:62;-1:-1:-1;;;10785:2:1;10770:18;;10763:47;10842:3;10827:19;;10439:413::o;10857:346::-;11059:2;11041:21;;;11098:2;11078:18;;;11071:30;-1:-1:-1;;;11132:2:1;11117:18;;11110:52;11194:2;11179:18;;10857:346::o;11208:127::-;11269:10;11264:3;11260:20;11257:1;11250:31;11300:4;11297:1;11290:15;11324:4;11321:1;11314:15;12723:168;12763:7;12829:1;12825;12821:6;12817:14;12814:1;12811:21;12806:1;12799:9;12792:17;12788:45;12785:71;;;12836:18;;:::i;:::-;-1:-1:-1;12876:9:1;;12723:168::o;13652:470::-;13831:3;13869:6;13863:13;13885:53;13931:6;13926:3;13919:4;13911:6;13907:17;13885:53;:::i;:::-;14001:13;;13960:16;;;;14023:57;14001:13;13960:16;14057:4;14045:17;;14023:57;:::i;:::-;14096:20;;13652:470;-1:-1:-1;;;;13652:470:1:o;14534:414::-;14736:2;14718:21;;;14775:2;14755:18;;;14748:30;14814:34;14809:2;14794:18;;14787:62;-1:-1:-1;;;14880:2:1;14865:18;;14858:48;14938:3;14923:19;;14534:414::o;16181:127::-;16242:10;16237:3;16233:20;16230:1;16223:31;16273:4;16270:1;16263:15;16297:4;16294:1;16287:15;16313:120;16353:1;16379;16369:35;;16384:18;;:::i;:::-;-1:-1:-1;16418:9:1;;16313:120::o;16438:125::-;16478:4;16506:1;16503;16500:8;16497:34;;;16511:18;;:::i;:::-;-1:-1:-1;16548:9:1;;16438:125::o;16568:112::-;16600:1;16626;16616:35;;16631:18;;:::i;:::-;-1:-1:-1;16665:9:1;;16568:112::o;17403:489::-;-1:-1:-1;;;;;17672:15:1;;;17654:34;;17724:15;;17719:2;17704:18;;17697:43;17771:2;17756:18;;17749:34;;;17819:3;17814:2;17799:18;;17792:31;;;17597:4;;17840:46;;17866:19;;17858:6;17840:46;:::i;:::-;17832:54;17403:489;-1:-1:-1;;;;;;17403:489:1:o;17897:249::-;17966:6;18019:2;18007:9;17998:7;17994:23;17990:32;17987:52;;;18035:1;18032;18025:12;17987:52;18067:9;18061:16;18086:30;18110:5;18086:30;:::i

Swarm Source

ipfs://85f73e5d0c90dfc04b481802949b7041518efb684ac197c2e5b95296a09c9304
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.