ETH Price: $2,492.56 (-1.23%)

Token

Zombie Apes Club (ZAPES)
 

Overview

Max Total Supply

620 ZAPES

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
turboravelords.eth
Balance
1 ZAPES
0xa93edc4bb393afb1f3ae5194b11775c4b3074c59
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:
ZAPES

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

// SPDX-License-Identifier: MIT

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


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


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


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


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


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


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


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


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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    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;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    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);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    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"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    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);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.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);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


contract ZAPES is ERC721Enumerable, Ownable {
    using Strings for uint256;
    event MintZApe(address indexed sender, uint256 startWith, uint256 times);

    //supply counters 
    uint256 public totalZApes;
    uint256 public totalPublicZApes;
    uint256 public totalPrivZApes;
    uint256 public maxPublic = 9899;
    uint256 public maxPrivate = 100;

    uint256 public maxBatch = 10;
    uint256 public price = 90000000000000000;
    address public mintAddress;

    string private baseURI;
    string public hiddenURI;

    bool private started = false;
    bool private revealed = false;

    //constructor args 
    constructor(string memory name_, string memory symbol_, string memory hiddenURI_) ERC721(name_, symbol_) {
        hiddenURI = hiddenURI_;
    }

    //basic functions. 
    function _baseURI() internal view virtual override returns (string memory){
        return baseURI;
    }

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

    function setHiddenURI(string memory _newHiddenURI) public onlyOwner {
        hiddenURI = _newHiddenURI;
    }

    function setMintAddress(address mint_) public onlyOwner {
        mintAddress = mint_;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

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

        if(revealed == false) {
            return hiddenURI;
        }

        string memory baseURI_ = _baseURI();
        return bytes(baseURI_).length > 0
            ? string(abi.encodePacked(baseURI_, tokenId.toString(), ".json")) : '.json';
    }

    function setStart(bool _start) public onlyOwner {
        started = _start;
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 count = balanceOf(owner);
        uint256[] memory ids = new uint256[](count);
        for (uint256 i = 0; i < count; i++) {
            ids[i] = tokenOfOwnerByIndex(owner, i);
        }
        return ids;
    }

    // Only a limited quantity can be minted
    function mintDev(address to, uint256 _times) external {
        require(_msgSender() == owner() || _msgSender() == mintAddress, "only owner or the mintAddress are allowed");
        require(totalPrivZApes + _times <= maxPrivate, "max supply reached for owner");
        emit MintZApe(_msgSender(), totalZApes+1, _times);
        for(uint256 i=0; i< _times; i++){
            totalPrivZApes++;
            _mint(to, 1 + totalZApes++);
        }
    }  

    function mint(uint256 _times) payable public {
        require(started, "not started");
        require(_times >0 && _times <= maxBatch, "must mint fewer in each batch");
        require(totalPublicZApes + _times <= maxPublic, "max supply reached!");
        require(msg.value == _times * price, "value error, please check price.");
        payable(owner()).transfer(msg.value);
        emit MintZApe(_msgSender(), totalZApes+1, _times);
        for(uint256 i=0; i< _times; i++){
            totalPublicZApes++;
            _mint(_msgSender(), 1 + totalZApes++);
        }
    }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"hiddenURI_","type":"string"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintZApe","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrivate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mintDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mint_","type":"address"}],"name":"setMintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"","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":"totalPrivZApes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicZApes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalZApes","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"}]

60806040526126ab600e556064600f55600a60105567013fbe85edc900006011556015805461ffff191690553480156200003857600080fd5b5060405162002af438038062002af48339810160408190526200005b916200026d565b825183908390620000749060009060208501906200011c565b5080516200008a9060019060208401906200011c565b505050620000a7620000a1620000c660201b60201c565b620000ca565b8051620000bc9060149060208401906200011c565b505050506200034d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012a90620002fa565b90600052602060002090601f0160209004810192826200014e576000855562000199565b82601f106200016957805160ff191683800117855562000199565b8280016001018555821562000199579182015b82811115620001995782518255916020019190600101906200017c565b50620001a7929150620001ab565b5090565b5b80821115620001a75760008155600101620001ac565b600082601f830112620001d3578081fd5b81516001600160401b0380821115620001f057620001f062000337565b6040516020601f8401601f191682018101838111838210171562000218576200021862000337565b60405283825285840181018710156200022f578485fd5b8492505b8383101562000252578583018101518284018201529182019162000233565b838311156200026357848185840101525b5095945050505050565b60008060006060848603121562000282578283fd5b83516001600160401b038082111562000299578485fd5b620002a787838801620001c2565b94506020860151915080821115620002bd578384fd5b620002cb87838801620001c2565b93506040860151915080821115620002e1578283fd5b50620002f086828701620001c2565b9150509250925092565b6002810460018216806200030f57607f821691505b602082108114156200033157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612797806200035d6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610599578063e985e9c5146105b9578063f2fde38b146105d9578063f49f87e3146105f9578063fab371541461060e5761020f565b8063a22cb46514610524578063a475b5dd14610544578063b88d4fde14610559578063bbaac02f146105795761020f565b80638cc54e7f116100e75780638cc54e7f146104bd5780638da5cb5b146104d257806395d89b41146104e7578063a035b1fe146104fc578063a0712d68146105115761020f565b8063715018a614610451578063773326fe146104665780637dc429751461047b5780638462151c146104905761020f565b806342842e0e1161019b5780636352211e1161016a5780636352211e146103c757806363f2b09a146103e757806367765b87146103fc57806368e243271461041157806370a08231146104315761020f565b806342842e0e146103525780634f6ccce71461037257806352c2b6e31461039257806355f804b3146103a75761020f565b806318160ddd116101e257806318160ddd146102bb57806323b872dd146102dd5780632f745c59146102fd578063324c6adc1461031d578063425d49801461033d5761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f366004611e0a565b61062e565b6040516102419190611fa0565b60405180910390f35b34801561025657600080fd5b5061025f61065b565b6040516102419190611fab565b34801561027857600080fd5b5061028c610287366004611e88565b6106ed565b6040516102419190611f0b565b3480156102a557600080fd5b506102b96102b4366004611dc7565b610739565b005b3480156102c757600080fd5b506102d06107d1565b60405161024191906125fa565b3480156102e957600080fd5b506102b96102f8366004611cea565b6107d7565b34801561030957600080fd5b506102d0610318366004611dc7565b61080f565b34801561032957600080fd5b506102b9610338366004611dc7565b610861565b34801561034957600080fd5b5061028c6109a8565b34801561035e57600080fd5b506102b961036d366004611cea565b6109b7565b34801561037e57600080fd5b506102d061038d366004611e88565b6109d2565b34801561039e57600080fd5b506102d0610a2d565b3480156103b357600080fd5b506102b96103c2366004611e42565b610a33565b3480156103d357600080fd5b5061028c6103e2366004611e88565b610a89565b3480156103f357600080fd5b506102d0610abe565b34801561040857600080fd5b506102d0610ac4565b34801561041d57600080fd5b506102b961042c366004611df0565b610aca565b34801561043d57600080fd5b506102d061044c366004611c9e565b610b1c565b34801561045d57600080fd5b506102b9610b60565b34801561047257600080fd5b506102d0610bab565b34801561048757600080fd5b506102d0610bb1565b34801561049c57600080fd5b506104b06104ab366004611c9e565b610bb7565b6040516102419190611f5c565b3480156104c957600080fd5b5061025f610c75565b3480156104de57600080fd5b5061028c610d03565b3480156104f357600080fd5b5061025f610d12565b34801561050857600080fd5b506102d0610d21565b6102b961051f366004611e88565b610d27565b34801561053057600080fd5b506102b961053f366004611d9e565b610eb7565b34801561055057600080fd5b506102b9610f85565b34801561056557600080fd5b506102b9610574366004611d25565b610fd5565b34801561058557600080fd5b506102b9610594366004611e42565b611014565b3480156105a557600080fd5b5061025f6105b4366004611e88565b611066565b3480156105c557600080fd5b506102346105d4366004611cb8565b611198565b3480156105e557600080fd5b506102b96105f4366004611c9e565b6111c6565b34801561060557600080fd5b506102d0611237565b34801561061a57600080fd5b506102b9610629366004611c9e565b61123d565b60006001600160e01b0319821663780e9d6360e01b148061065357506106538261129e565b90505b919050565b60606000805461066a9061269f565b80601f01602080910402602001604051908101604052809291908181526020018280546106969061269f565b80156106e35780601f106106b8576101008083540402835291602001916106e3565b820191906000526020600020905b8154815290600101906020018083116106c657829003601f168201915b5050505050905090565b60006106f8826112de565b61071d5760405162461bcd60e51b8152600401610714906122c4565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074482610a89565b9050806001600160a01b0316836001600160a01b031614156107785760405162461bcd60e51b8152600401610714906123c5565b806001600160a01b031661078a6112fb565b6001600160a01b031614806107a657506107a6816105d46112fb565b6107c25760405162461bcd60e51b81526004016107149061219f565b6107cc83836112ff565b505050565b60085490565b6107e86107e26112fb565b8261136d565b6108045760405162461bcd60e51b81526004016107149061243b565b6107cc8383836113f2565b600061081a83610b1c565b82106108385760405162461bcd60e51b815260040161071490611fbe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610869610d03565b6001600160a01b031661087a6112fb565b6001600160a01b031614806108a957506012546001600160a01b031661089e6112fb565b6001600160a01b0316145b6108c55760405162461bcd60e51b8152600401610714906124d8565b600f5481600d546108d69190612611565b11156108f45760405162461bcd60e51b815260040161071490612521565b6108fc6112fb565b6001600160a01b03167f6d66536f40d19c843f08e701318a001a82a651392b2984a68159c492be7abc43600b5460016109359190612611565b83604051610944929190612603565b60405180910390a260005b818110156107cc57600d8054906000610967836126da565b9091555050600b8054610996918591906000610982836126da565b90915550610991906001612611565b61151f565b806109a0816126da565b91505061094f565b6012546001600160a01b031681565b6107cc83838360405180602001604052806000815250610fd5565b60006109dc6107d1565b82106109fa5760405162461bcd60e51b81526004016107149061248c565b60088281548110610a1b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600d5481565b610a3b6112fb565b6001600160a01b0316610a4c610d03565b6001600160a01b031614610a725760405162461bcd60e51b815260040161071490612310565b8051610a85906013906020840190611b6e565b5050565b6000818152600260205260408120546001600160a01b0316806106535760405162461bcd60e51b815260040161071490612246565b600b5481565b60105481565b610ad26112fb565b6001600160a01b0316610ae3610d03565b6001600160a01b031614610b095760405162461bcd60e51b815260040161071490612310565b6015805460ff1916911515919091179055565b60006001600160a01b038216610b445760405162461bcd60e51b8152600401610714906121fc565b506001600160a01b031660009081526003602052604090205490565b610b686112fb565b6001600160a01b0316610b79610d03565b6001600160a01b031614610b9f5760405162461bcd60e51b815260040161071490612310565b610ba960006115fe565b565b600f5481565b600e5481565b60606000610bc483610b1c565b905060008167ffffffffffffffff811115610bef57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c18578160200160208202803683370190505b50905060005b82811015610c6d57610c30858261080f565b828281518110610c5057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c65816126da565b915050610c1e565b509392505050565b60148054610c829061269f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cae9061269f565b8015610cfb5780601f10610cd057610100808354040283529160200191610cfb565b820191906000526020600020905b815481529060010190602001808311610cde57829003601f168201915b505050505081565b600a546001600160a01b031690565b60606001805461066a9061269f565b60115481565b60155460ff16610d495760405162461bcd60e51b815260040161071490612558565b600081118015610d5b57506010548111155b610d775760405162461bcd60e51b81526004016107149061238e565b600e5481600c54610d889190612611565b1115610da65760405162461bcd60e51b8152600401610714906125cd565b601154610db3908261263d565b3414610dd15760405162461bcd60e51b815260040161071490612406565b610dd9610d03565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610e11573d6000803e3d6000fd5b50610e1a6112fb565b6001600160a01b03167f6d66536f40d19c843f08e701318a001a82a651392b2984a68159c492be7abc43600b546001610e539190612611565b83604051610e62929190612603565b60405180910390a260005b81811015610a8557600c8054906000610e85836126da565b9190505550610ea5610e956112fb565b600b8054906000610982836126da565b80610eaf816126da565b915050610e6d565b610ebf6112fb565b6001600160a01b0316826001600160a01b03161415610ef05760405162461bcd60e51b81526004016107149061211c565b8060056000610efd6112fb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f416112fb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f799190611fa0565b60405180910390a35050565b610f8d6112fb565b6001600160a01b0316610f9e610d03565b6001600160a01b031614610fc45760405162461bcd60e51b815260040161071490612310565b6015805461ff001916610100179055565b610fe6610fe06112fb565b8361136d565b6110025760405162461bcd60e51b81526004016107149061243b565b61100e84848484611650565b50505050565b61101c6112fb565b6001600160a01b031661102d610d03565b6001600160a01b0316146110535760405162461bcd60e51b815260040161071490612310565b8051610a85906014906020840190611b6e565b6060611071826112de565b61108d5760405162461bcd60e51b81526004016107149061257d565b601554610100900460ff1661112e57601480546110a99061269f565b80601f01602080910402602001604051908101604052809291908181526020018280546110d59061269f565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b50505050509050610656565b6000611138611683565b905060008151116111665760405180604001604052806005815260200164173539b7b760d91b815250611191565b8061117084611692565b604051602001611181929190611ecc565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111ce6112fb565b6001600160a01b03166111df610d03565b6001600160a01b0316146112055760405162461bcd60e51b815260040161071490612310565b6001600160a01b03811661122b5760405162461bcd60e51b81526004016107149061205b565b611234816115fe565b50565b600c5481565b6112456112fb565b6001600160a01b0316611256610d03565b6001600160a01b03161461127c5760405162461bcd60e51b815260040161071490612310565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806112cf57506001600160e01b03198216635b5e139f60e01b145b806106535750610653826117ad565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061133482610a89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611378826112de565b6113945760405162461bcd60e51b815260040161071490612153565b600061139f83610a89565b9050806001600160a01b0316846001600160a01b031614806113da5750836001600160a01b03166113cf846106ed565b6001600160a01b0316145b806113ea57506113ea8185611198565b949350505050565b826001600160a01b031661140582610a89565b6001600160a01b03161461142b5760405162461bcd60e51b815260040161071490612345565b6001600160a01b0382166114515760405162461bcd60e51b8152600401610714906120d8565b61145c8383836117c6565b6114676000826112ff565b6001600160a01b038316600090815260036020526040812080546001929061149090849061265c565b90915550506001600160a01b03821660009081526003602052604081208054600192906114be908490612611565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166115455760405162461bcd60e51b81526004016107149061228f565b61154e816112de565b1561156b5760405162461bcd60e51b8152600401610714906120a1565b611577600083836117c6565b6001600160a01b03821660009081526003602052604081208054600192906115a0908490612611565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61165b8484846113f2565b6116678484848461184f565b61100e5760405162461bcd60e51b815260040161071490612009565b60606013805461066a9061269f565b6060816116b757506040805180820190915260018152600360fc1b6020820152610656565b8160005b81156116e157806116cb816126da565b91506116da9050600a83612629565b91506116bb565b60008167ffffffffffffffff81111561170a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611734576020820181803683370190505b5090505b84156113ea5761174960018361265c565b9150611756600a866126f5565b611761906030612611565b60f81b81838151811061178457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117a6600a86612629565b9450611738565b6001600160e01b031981166301ffc9a760e01b14919050565b6117d18383836107cc565b6001600160a01b0383166117ed576117e88161196a565b611810565b816001600160a01b0316836001600160a01b0316146118105761181083826119ae565b6001600160a01b03821661182c5761182781611a4b565b6107cc565b826001600160a01b0316826001600160a01b0316146107cc576107cc8282611b24565b6000611863846001600160a01b0316611b68565b1561195f57836001600160a01b031663150b7a0261187f6112fb565b8786866040518563ffffffff1660e01b81526004016118a19493929190611f1f565b602060405180830381600087803b1580156118bb57600080fd5b505af19250505080156118eb575060408051601f3d908101601f191682019092526118e891810190611e26565b60015b611945573d808015611919576040519150601f19603f3d011682016040523d82523d6000602084013e61191e565b606091505b50805161193d5760405162461bcd60e51b815260040161071490612009565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ea565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016119bb84610b1c565b6119c5919061265c565b600083815260076020526040902054909150808214611a18576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5d9060019061265c565b60008381526009602052604081205460088054939450909284908110611a9357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ac257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b2f83610b1c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611b7a9061269f565b90600052602060002090601f016020900481019282611b9c5760008555611be2565b82601f10611bb557805160ff1916838001178555611be2565b82800160010185558215611be2579182015b82811115611be2578251825591602001919060010190611bc7565b50611bee929150611bf2565b5090565b5b80821115611bee5760008155600101611bf3565b600067ffffffffffffffff80841115611c2257611c22612735565b604051601f8501601f191681016020018281118282101715611c4657611c46612735565b604052848152915081838501861015611c5e57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461065657600080fd5b8035801515811461065657600080fd5b600060208284031215611caf578081fd5b61119182611c77565b60008060408385031215611cca578081fd5b611cd383611c77565b9150611ce160208401611c77565b90509250929050565b600080600060608486031215611cfe578081fd5b611d0784611c77565b9250611d1560208501611c77565b9150604084013590509250925092565b60008060008060808587031215611d3a578081fd5b611d4385611c77565b9350611d5160208601611c77565b925060408501359150606085013567ffffffffffffffff811115611d73578182fd5b8501601f81018713611d83578182fd5b611d9287823560208401611c07565b91505092959194509250565b60008060408385031215611db0578182fd5b611db983611c77565b9150611ce160208401611c8e565b60008060408385031215611dd9578182fd5b611de283611c77565b946020939093013593505050565b600060208284031215611e01578081fd5b61119182611c8e565b600060208284031215611e1b578081fd5b81356111918161274b565b600060208284031215611e37578081fd5b81516111918161274b565b600060208284031215611e53578081fd5b813567ffffffffffffffff811115611e69578182fd5b8201601f81018413611e79578182fd5b6113ea84823560208401611c07565b600060208284031215611e99578081fd5b5035919050565b60008151808452611eb8816020860160208601612673565b601f01601f19169290920160200192915050565b60008351611ede818460208801612673565b835190830190611ef2818360208801612673565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5290830184611ea0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f9457835183529284019291840191600101611f78565b50909695505050505050565b901515815260200190565b6000602082526111916020830184611ea0565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601d908201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526029908201527f6f6e6c79206f776e6572206f7220746865206d696e74416464726573732061726040820152681948185b1b1bddd95960ba1b606082015260800190565b6020808252601c908201527f6d617820737570706c79207265616368656420666f72206f776e657200000000604082015260600190565b6020808252600b908201526a1b9bdd081cdd185c9d195960aa1b604082015260600190565b60208082526030908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526f3732bc34b9ba32b73a103a37b5b2b71760811b606082015260800190565b6020808252601390820152726d617820737570706c7920726561636865642160681b604082015260600190565b90815260200190565b918252602082015260400190565b6000821982111561262457612624612709565b500190565b6000826126385761263861271f565b500490565b600081600019048311821515161561265757612657612709565b500290565b60008282101561266e5761266e612709565b500390565b60005b8381101561268e578181015183820152602001612676565b8381111561100e5750506000910152565b6002810460018216806126b357607f821691505b602082108114156126d457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126ee576126ee612709565b5060010190565b6000826127045761270461271f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123457600080fdfea26469706673582212208bf671b71f6335c7b39b1a08e278b75303068707660835021bffec7bd94b3e1264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000105a6f6d626965204170657320436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055a415045530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5063476b3942346e437777766954644a646857783261454b71376e4c4d3258447968467332677678454b67670000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610599578063e985e9c5146105b9578063f2fde38b146105d9578063f49f87e3146105f9578063fab371541461060e5761020f565b8063a22cb46514610524578063a475b5dd14610544578063b88d4fde14610559578063bbaac02f146105795761020f565b80638cc54e7f116100e75780638cc54e7f146104bd5780638da5cb5b146104d257806395d89b41146104e7578063a035b1fe146104fc578063a0712d68146105115761020f565b8063715018a614610451578063773326fe146104665780637dc429751461047b5780638462151c146104905761020f565b806342842e0e1161019b5780636352211e1161016a5780636352211e146103c757806363f2b09a146103e757806367765b87146103fc57806368e243271461041157806370a08231146104315761020f565b806342842e0e146103525780634f6ccce71461037257806352c2b6e31461039257806355f804b3146103a75761020f565b806318160ddd116101e257806318160ddd146102bb57806323b872dd146102dd5780632f745c59146102fd578063324c6adc1461031d578063425d49801461033d5761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f366004611e0a565b61062e565b6040516102419190611fa0565b60405180910390f35b34801561025657600080fd5b5061025f61065b565b6040516102419190611fab565b34801561027857600080fd5b5061028c610287366004611e88565b6106ed565b6040516102419190611f0b565b3480156102a557600080fd5b506102b96102b4366004611dc7565b610739565b005b3480156102c757600080fd5b506102d06107d1565b60405161024191906125fa565b3480156102e957600080fd5b506102b96102f8366004611cea565b6107d7565b34801561030957600080fd5b506102d0610318366004611dc7565b61080f565b34801561032957600080fd5b506102b9610338366004611dc7565b610861565b34801561034957600080fd5b5061028c6109a8565b34801561035e57600080fd5b506102b961036d366004611cea565b6109b7565b34801561037e57600080fd5b506102d061038d366004611e88565b6109d2565b34801561039e57600080fd5b506102d0610a2d565b3480156103b357600080fd5b506102b96103c2366004611e42565b610a33565b3480156103d357600080fd5b5061028c6103e2366004611e88565b610a89565b3480156103f357600080fd5b506102d0610abe565b34801561040857600080fd5b506102d0610ac4565b34801561041d57600080fd5b506102b961042c366004611df0565b610aca565b34801561043d57600080fd5b506102d061044c366004611c9e565b610b1c565b34801561045d57600080fd5b506102b9610b60565b34801561047257600080fd5b506102d0610bab565b34801561048757600080fd5b506102d0610bb1565b34801561049c57600080fd5b506104b06104ab366004611c9e565b610bb7565b6040516102419190611f5c565b3480156104c957600080fd5b5061025f610c75565b3480156104de57600080fd5b5061028c610d03565b3480156104f357600080fd5b5061025f610d12565b34801561050857600080fd5b506102d0610d21565b6102b961051f366004611e88565b610d27565b34801561053057600080fd5b506102b961053f366004611d9e565b610eb7565b34801561055057600080fd5b506102b9610f85565b34801561056557600080fd5b506102b9610574366004611d25565b610fd5565b34801561058557600080fd5b506102b9610594366004611e42565b611014565b3480156105a557600080fd5b5061025f6105b4366004611e88565b611066565b3480156105c557600080fd5b506102346105d4366004611cb8565b611198565b3480156105e557600080fd5b506102b96105f4366004611c9e565b6111c6565b34801561060557600080fd5b506102d0611237565b34801561061a57600080fd5b506102b9610629366004611c9e565b61123d565b60006001600160e01b0319821663780e9d6360e01b148061065357506106538261129e565b90505b919050565b60606000805461066a9061269f565b80601f01602080910402602001604051908101604052809291908181526020018280546106969061269f565b80156106e35780601f106106b8576101008083540402835291602001916106e3565b820191906000526020600020905b8154815290600101906020018083116106c657829003601f168201915b5050505050905090565b60006106f8826112de565b61071d5760405162461bcd60e51b8152600401610714906122c4565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074482610a89565b9050806001600160a01b0316836001600160a01b031614156107785760405162461bcd60e51b8152600401610714906123c5565b806001600160a01b031661078a6112fb565b6001600160a01b031614806107a657506107a6816105d46112fb565b6107c25760405162461bcd60e51b81526004016107149061219f565b6107cc83836112ff565b505050565b60085490565b6107e86107e26112fb565b8261136d565b6108045760405162461bcd60e51b81526004016107149061243b565b6107cc8383836113f2565b600061081a83610b1c565b82106108385760405162461bcd60e51b815260040161071490611fbe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610869610d03565b6001600160a01b031661087a6112fb565b6001600160a01b031614806108a957506012546001600160a01b031661089e6112fb565b6001600160a01b0316145b6108c55760405162461bcd60e51b8152600401610714906124d8565b600f5481600d546108d69190612611565b11156108f45760405162461bcd60e51b815260040161071490612521565b6108fc6112fb565b6001600160a01b03167f6d66536f40d19c843f08e701318a001a82a651392b2984a68159c492be7abc43600b5460016109359190612611565b83604051610944929190612603565b60405180910390a260005b818110156107cc57600d8054906000610967836126da565b9091555050600b8054610996918591906000610982836126da565b90915550610991906001612611565b61151f565b806109a0816126da565b91505061094f565b6012546001600160a01b031681565b6107cc83838360405180602001604052806000815250610fd5565b60006109dc6107d1565b82106109fa5760405162461bcd60e51b81526004016107149061248c565b60088281548110610a1b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600d5481565b610a3b6112fb565b6001600160a01b0316610a4c610d03565b6001600160a01b031614610a725760405162461bcd60e51b815260040161071490612310565b8051610a85906013906020840190611b6e565b5050565b6000818152600260205260408120546001600160a01b0316806106535760405162461bcd60e51b815260040161071490612246565b600b5481565b60105481565b610ad26112fb565b6001600160a01b0316610ae3610d03565b6001600160a01b031614610b095760405162461bcd60e51b815260040161071490612310565b6015805460ff1916911515919091179055565b60006001600160a01b038216610b445760405162461bcd60e51b8152600401610714906121fc565b506001600160a01b031660009081526003602052604090205490565b610b686112fb565b6001600160a01b0316610b79610d03565b6001600160a01b031614610b9f5760405162461bcd60e51b815260040161071490612310565b610ba960006115fe565b565b600f5481565b600e5481565b60606000610bc483610b1c565b905060008167ffffffffffffffff811115610bef57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c18578160200160208202803683370190505b50905060005b82811015610c6d57610c30858261080f565b828281518110610c5057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c65816126da565b915050610c1e565b509392505050565b60148054610c829061269f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cae9061269f565b8015610cfb5780601f10610cd057610100808354040283529160200191610cfb565b820191906000526020600020905b815481529060010190602001808311610cde57829003601f168201915b505050505081565b600a546001600160a01b031690565b60606001805461066a9061269f565b60115481565b60155460ff16610d495760405162461bcd60e51b815260040161071490612558565b600081118015610d5b57506010548111155b610d775760405162461bcd60e51b81526004016107149061238e565b600e5481600c54610d889190612611565b1115610da65760405162461bcd60e51b8152600401610714906125cd565b601154610db3908261263d565b3414610dd15760405162461bcd60e51b815260040161071490612406565b610dd9610d03565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610e11573d6000803e3d6000fd5b50610e1a6112fb565b6001600160a01b03167f6d66536f40d19c843f08e701318a001a82a651392b2984a68159c492be7abc43600b546001610e539190612611565b83604051610e62929190612603565b60405180910390a260005b81811015610a8557600c8054906000610e85836126da565b9190505550610ea5610e956112fb565b600b8054906000610982836126da565b80610eaf816126da565b915050610e6d565b610ebf6112fb565b6001600160a01b0316826001600160a01b03161415610ef05760405162461bcd60e51b81526004016107149061211c565b8060056000610efd6112fb565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f416112fb565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f799190611fa0565b60405180910390a35050565b610f8d6112fb565b6001600160a01b0316610f9e610d03565b6001600160a01b031614610fc45760405162461bcd60e51b815260040161071490612310565b6015805461ff001916610100179055565b610fe6610fe06112fb565b8361136d565b6110025760405162461bcd60e51b81526004016107149061243b565b61100e84848484611650565b50505050565b61101c6112fb565b6001600160a01b031661102d610d03565b6001600160a01b0316146110535760405162461bcd60e51b815260040161071490612310565b8051610a85906014906020840190611b6e565b6060611071826112de565b61108d5760405162461bcd60e51b81526004016107149061257d565b601554610100900460ff1661112e57601480546110a99061269f565b80601f01602080910402602001604051908101604052809291908181526020018280546110d59061269f565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b50505050509050610656565b6000611138611683565b905060008151116111665760405180604001604052806005815260200164173539b7b760d91b815250611191565b8061117084611692565b604051602001611181929190611ecc565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111ce6112fb565b6001600160a01b03166111df610d03565b6001600160a01b0316146112055760405162461bcd60e51b815260040161071490612310565b6001600160a01b03811661122b5760405162461bcd60e51b81526004016107149061205b565b611234816115fe565b50565b600c5481565b6112456112fb565b6001600160a01b0316611256610d03565b6001600160a01b03161461127c5760405162461bcd60e51b815260040161071490612310565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806112cf57506001600160e01b03198216635b5e139f60e01b145b806106535750610653826117ad565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061133482610a89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611378826112de565b6113945760405162461bcd60e51b815260040161071490612153565b600061139f83610a89565b9050806001600160a01b0316846001600160a01b031614806113da5750836001600160a01b03166113cf846106ed565b6001600160a01b0316145b806113ea57506113ea8185611198565b949350505050565b826001600160a01b031661140582610a89565b6001600160a01b03161461142b5760405162461bcd60e51b815260040161071490612345565b6001600160a01b0382166114515760405162461bcd60e51b8152600401610714906120d8565b61145c8383836117c6565b6114676000826112ff565b6001600160a01b038316600090815260036020526040812080546001929061149090849061265c565b90915550506001600160a01b03821660009081526003602052604081208054600192906114be908490612611565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166115455760405162461bcd60e51b81526004016107149061228f565b61154e816112de565b1561156b5760405162461bcd60e51b8152600401610714906120a1565b611577600083836117c6565b6001600160a01b03821660009081526003602052604081208054600192906115a0908490612611565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61165b8484846113f2565b6116678484848461184f565b61100e5760405162461bcd60e51b815260040161071490612009565b60606013805461066a9061269f565b6060816116b757506040805180820190915260018152600360fc1b6020820152610656565b8160005b81156116e157806116cb816126da565b91506116da9050600a83612629565b91506116bb565b60008167ffffffffffffffff81111561170a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611734576020820181803683370190505b5090505b84156113ea5761174960018361265c565b9150611756600a866126f5565b611761906030612611565b60f81b81838151811061178457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117a6600a86612629565b9450611738565b6001600160e01b031981166301ffc9a760e01b14919050565b6117d18383836107cc565b6001600160a01b0383166117ed576117e88161196a565b611810565b816001600160a01b0316836001600160a01b0316146118105761181083826119ae565b6001600160a01b03821661182c5761182781611a4b565b6107cc565b826001600160a01b0316826001600160a01b0316146107cc576107cc8282611b24565b6000611863846001600160a01b0316611b68565b1561195f57836001600160a01b031663150b7a0261187f6112fb565b8786866040518563ffffffff1660e01b81526004016118a19493929190611f1f565b602060405180830381600087803b1580156118bb57600080fd5b505af19250505080156118eb575060408051601f3d908101601f191682019092526118e891810190611e26565b60015b611945573d808015611919576040519150601f19603f3d011682016040523d82523d6000602084013e61191e565b606091505b50805161193d5760405162461bcd60e51b815260040161071490612009565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ea565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016119bb84610b1c565b6119c5919061265c565b600083815260076020526040902054909150808214611a18576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5d9060019061265c565b60008381526009602052604081205460088054939450909284908110611a9357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ac257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b2f83610b1c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611b7a9061269f565b90600052602060002090601f016020900481019282611b9c5760008555611be2565b82601f10611bb557805160ff1916838001178555611be2565b82800160010185558215611be2579182015b82811115611be2578251825591602001919060010190611bc7565b50611bee929150611bf2565b5090565b5b80821115611bee5760008155600101611bf3565b600067ffffffffffffffff80841115611c2257611c22612735565b604051601f8501601f191681016020018281118282101715611c4657611c46612735565b604052848152915081838501861015611c5e57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461065657600080fd5b8035801515811461065657600080fd5b600060208284031215611caf578081fd5b61119182611c77565b60008060408385031215611cca578081fd5b611cd383611c77565b9150611ce160208401611c77565b90509250929050565b600080600060608486031215611cfe578081fd5b611d0784611c77565b9250611d1560208501611c77565b9150604084013590509250925092565b60008060008060808587031215611d3a578081fd5b611d4385611c77565b9350611d5160208601611c77565b925060408501359150606085013567ffffffffffffffff811115611d73578182fd5b8501601f81018713611d83578182fd5b611d9287823560208401611c07565b91505092959194509250565b60008060408385031215611db0578182fd5b611db983611c77565b9150611ce160208401611c8e565b60008060408385031215611dd9578182fd5b611de283611c77565b946020939093013593505050565b600060208284031215611e01578081fd5b61119182611c8e565b600060208284031215611e1b578081fd5b81356111918161274b565b600060208284031215611e37578081fd5b81516111918161274b565b600060208284031215611e53578081fd5b813567ffffffffffffffff811115611e69578182fd5b8201601f81018413611e79578182fd5b6113ea84823560208401611c07565b600060208284031215611e99578081fd5b5035919050565b60008151808452611eb8816020860160208601612673565b601f01601f19169290920160200192915050565b60008351611ede818460208801612673565b835190830190611ef2818360208801612673565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5290830184611ea0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f9457835183529284019291840191600101611f78565b50909695505050505050565b901515815260200190565b6000602082526111916020830184611ea0565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601d908201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526029908201527f6f6e6c79206f776e6572206f7220746865206d696e74416464726573732061726040820152681948185b1b1bddd95960ba1b606082015260800190565b6020808252601c908201527f6d617820737570706c79207265616368656420666f72206f776e657200000000604082015260600190565b6020808252600b908201526a1b9bdd081cdd185c9d195960aa1b604082015260600190565b60208082526030908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526f3732bc34b9ba32b73a103a37b5b2b71760811b606082015260800190565b6020808252601390820152726d617820737570706c7920726561636865642160681b604082015260600190565b90815260200190565b918252602082015260400190565b6000821982111561262457612624612709565b500190565b6000826126385761263861271f565b500490565b600081600019048311821515161561265757612657612709565b500290565b60008282101561266e5761266e612709565b500390565b60005b8381101561268e578181015183820152602001612676565b8381111561100e5750506000910152565b6002810460018216806126b357607f821691505b602082108114156126d457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126ee576126ee612709565b5060010190565b6000826127045761270461271f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123457600080fdfea26469706673582212208bf671b71f6335c7b39b1a08e278b75303068707660835021bffec7bd94b3e1264736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000105a6f6d626965204170657320436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055a415045530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5063476b3942346e437777766954644a646857783261454b71376e4c4d3258447968467332677678454b67670000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Zombie Apes Club
Arg [1] : symbol_ (string): ZAPES
Arg [2] : hiddenURI_ (string): ipfs://QmPcGk9B4nCwwviTdJdhWx2aEKq7nLM2XDyhFs2gvxEKgg

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 5a6f6d626965204170657320436c756200000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5a41504553000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5063476b3942346e437777766954644a64685778326145
Arg [9] : 4b71376e4c4d3258447968467332677678454b67670000000000000000000000


Deployed Bytecode Sourcemap

42016:3362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35866:224;;;;;;;;;;-1:-1:-1;35866:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22994:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24553:221::-;;;;;;;;;;-1:-1:-1;24553:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24076:411::-;;;;;;;;;;-1:-1:-1;24076:411:0;;;;;:::i;:::-;;:::i;:::-;;36506:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25443:339::-;;;;;;;;;;-1:-1:-1;25443:339:0;;;;;:::i;:::-;;:::i;36174:256::-;;;;;;;;;;-1:-1:-1;36174:256:0;;;;;:::i;:::-;;:::i;44317:457::-;;;;;;;;;;-1:-1:-1;44317:457:0;;;;;:::i;:::-;;:::i;42470:26::-;;;;;;;;;;;;;:::i;25853:185::-;;;;;;;;;;-1:-1:-1;25853:185:0;;;;;:::i;:::-;;:::i;36696:233::-;;;;;;;;;;-1:-1:-1;36696:233:0;;;;;:::i;:::-;;:::i;42274:29::-;;;;;;;;;;;;;:::i;42958:96::-;;;;;;;;;;-1:-1:-1;42958:96:0;;;;;:::i;:::-;;:::i;22688:239::-;;;;;;;;;;-1:-1:-1;22688:239:0;;;;;:::i;:::-;;:::i;42204:25::-;;;;;;;;;;;;;:::i;42388:28::-;;;;;;;;;;;;;:::i;43826:83::-;;;;;;;;;;-1:-1:-1;43826:83:0;;;;;:::i;:::-;;:::i;22418:208::-;;;;;;;;;;-1:-1:-1;22418:208:0;;;;;:::i;:::-;;:::i;2379:94::-;;;;;;;;;;;;;:::i;42348:31::-;;;;;;;;;;;;;:::i;42310:::-;;;;;;;;;;;;;:::i;43917:346::-;;;;;;;;;;-1:-1:-1;43917:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42534:23::-;;;;;;;;;;;;;:::i;1728:87::-;;;;;;;;;;;;;:::i;23163:104::-;;;;;;;;;;;;;:::i;42423:40::-;;;;;;;;;;;;;:::i;44784:589::-;;;;;;:::i;:::-;;:::i;24846:295::-;;;;;;;;;;-1:-1:-1;24846:295:0;;;;;:::i;:::-;;:::i;43284:69::-;;;;;;;;;;;;;:::i;26109:328::-;;;;;;;;;;-1:-1:-1;26109:328:0;;;;;:::i;:::-;;:::i;43062:112::-;;;;;;;;;;-1:-1:-1;43062:112:0;;;;;:::i;:::-;;:::i;43376:442::-;;;;;;;;;;-1:-1:-1;43376:442:0;;;;;:::i;:::-;;:::i;25212:164::-;;;;;;;;;;-1:-1:-1;25212:164:0;;;;;:::i;:::-;;:::i;2628:192::-;;;;;;;;;;-1:-1:-1;2628:192:0;;;;;:::i;:::-;;:::i;42236:31::-;;;;;;;;;;;;;:::i;43182:94::-;;;;;;;;;;-1:-1:-1;43182:94:0;;;;;:::i;:::-;;:::i;35866:224::-;35968:4;-1:-1:-1;;;;;;35992:50:0;;-1:-1:-1;;;35992:50:0;;:90;;;36046:36;36070:11;36046:23;:36::i;:::-;35985:97;;35866:224;;;;:::o;22994:100::-;23048:13;23081:5;23074:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22994:100;:::o;24553:221::-;24629:7;24657:16;24665:7;24657;:16::i;:::-;24649:73;;;;-1:-1:-1;;;24649:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;24742:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24742:24:0;;24553:221::o;24076:411::-;24157:13;24173:23;24188:7;24173:14;:23::i;:::-;24157:39;;24221:5;-1:-1:-1;;;;;24215:11:0;:2;-1:-1:-1;;;;;24215:11:0;;;24207:57;;;;-1:-1:-1;;;24207:57:0;;;;;;;:::i;:::-;24315:5;-1:-1:-1;;;;;24299:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;24299:21:0;;:62;;;;24324:37;24341:5;24348:12;:10;:12::i;24324:37::-;24277:168;;;;-1:-1:-1;;;24277:168:0;;;;;;;:::i;:::-;24458:21;24467:2;24471:7;24458:8;:21::i;:::-;24076:411;;;:::o;36506:113::-;36594:10;:17;36506:113;:::o;25443:339::-;25638:41;25657:12;:10;:12::i;:::-;25671:7;25638:18;:41::i;:::-;25630:103;;;;-1:-1:-1;;;25630:103:0;;;;;;;:::i;:::-;25746:28;25756:4;25762:2;25766:7;25746:9;:28::i;36174:256::-;36271:7;36307:23;36324:5;36307:16;:23::i;:::-;36299:5;:31;36291:87;;;;-1:-1:-1;;;36291:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;36396:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36174:256::o;44317:457::-;44406:7;:5;:7::i;:::-;-1:-1:-1;;;;;44390:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;44390:23:0;;:54;;;-1:-1:-1;44433:11:0;;-1:-1:-1;;;;;44433:11:0;44417:12;:10;:12::i;:::-;-1:-1:-1;;;;;44417:27:0;;44390:54;44382:108;;;;-1:-1:-1;;;44382:108:0;;;;;;;:::i;:::-;44536:10;;44526:6;44509:14;;:23;;;;:::i;:::-;:37;;44501:78;;;;-1:-1:-1;;;44501:78:0;;;;;;;:::i;:::-;44604:12;:10;:12::i;:::-;-1:-1:-1;;;;;44595:44:0;;44618:10;;44629:1;44618:12;;;;:::i;:::-;44632:6;44595:44;;;;;;;:::i;:::-;;;;;;;;44654:9;44650:117;44670:6;44667:1;:9;44650:117;;;44697:14;:16;;;:14;:16;;;:::i;:::-;;;;-1:-1:-1;;44742:10:0;:12;;44728:27;;44734:2;;44742:12;:10;:12;;;:::i;:::-;;;;-1:-1:-1;44738:16:0;;:1;:16;:::i;:::-;44728:5;:27::i;:::-;44678:3;;;;:::i;:::-;;;;44650:117;;42470:26;;;-1:-1:-1;;;;;42470:26:0;;:::o;25853:185::-;25991:39;26008:4;26014:2;26018:7;25991:39;;;;;;;;;;;;:16;:39::i;36696:233::-;36771:7;36807:30;:28;:30::i;:::-;36799:5;:38;36791:95;;;;-1:-1:-1;;;36791:95:0;;;;;;;:::i;:::-;36904:10;36915:5;36904:17;;;;;;-1:-1:-1;;;36904:17:0;;;;;;;;;;;;;;;;;36897:24;;36696:233;;;:::o;42274:29::-;;;;:::o;42958:96::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;43029:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42958:96:::0;:::o;22688:239::-;22760:7;22796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22796:16:0;22831:19;22823:73;;;;-1:-1:-1;;;22823:73:0;;;;;;;:::i;42204:25::-;;;;:::o;42388:28::-;;;;:::o;43826:83::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;43885:7:::1;:16:::0;;-1:-1:-1;;43885:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43826:83::o;22418:208::-;22490:7;-1:-1:-1;;;;;22518:19:0;;22510:74;;;;-1:-1:-1;;;22510:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22602:16:0;;;;;:9;:16;;;;;;;22418:208::o;2379:94::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;2444:21:::1;2462:1;2444:9;:21::i;:::-;2379:94::o:0;42348:31::-;;;;:::o;42310:::-;;;;:::o;43917:346::-;44003:16;44037:13;44053:16;44063:5;44053:9;:16::i;:::-;44037:32;;44080:20;44117:5;44103:20;;;;;;-1:-1:-1;;;44103:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44103:20:0;;44080:43;;44139:9;44134:101;44158:5;44154:1;:9;44134:101;;;44194:29;44214:5;44221:1;44194:19;:29::i;:::-;44185:3;44189:1;44185:6;;;;;;-1:-1:-1;;;44185:6:0;;;;;;;;;;;;;;;;;;:38;44165:3;;;;:::i;:::-;;;;44134:101;;;-1:-1:-1;44252:3:0;43917:346;-1:-1:-1;;;43917:346:0:o;42534:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1728:87::-;1801:6;;-1:-1:-1;;;;;1801:6:0;1728:87;:::o;23163:104::-;23219:13;23252:7;23245:14;;;;;:::i;42423:40::-;;;;:::o;44784:589::-;44848:7;;;;44840:31;;;;-1:-1:-1;;;44840:31:0;;;;;;;:::i;:::-;44898:1;44890:6;:9;:31;;;;;44913:8;;44903:6;:18;;44890:31;44882:73;;;;-1:-1:-1;;;44882:73:0;;;;;;;:::i;:::-;45003:9;;44993:6;44974:16;;:25;;;;:::i;:::-;:38;;44966:70;;;;-1:-1:-1;;;44966:70:0;;;;;;;:::i;:::-;45077:5;;45068:14;;:6;:14;:::i;:::-;45055:9;:27;45047:72;;;;-1:-1:-1;;;45047:72:0;;;;;;;:::i;:::-;45138:7;:5;:7::i;:::-;-1:-1:-1;;;;;45130:25:0;:36;45156:9;45130:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45191:12;:10;:12::i;:::-;-1:-1:-1;;;;;45182:44:0;;45205:10;;45216:1;45205:12;;;;:::i;:::-;45219:6;45182:44;;;;;;;:::i;:::-;;;;;;;;45241:9;45237:129;45257:6;45254:1;:9;45237:129;;;45284:16;:18;;;:16;:18;;;:::i;:::-;;;;;;45317:37;45323:12;:10;:12::i;:::-;45341:10;:12;;;:10;:12;;;:::i;45317:37::-;45265:3;;;;:::i;:::-;;;;45237:129;;24846:295;24961:12;:10;:12::i;:::-;-1:-1:-1;;;;;24949:24:0;:8;-1:-1:-1;;;;;24949:24:0;;;24941:62;;;;-1:-1:-1;;;24941:62:0;;;;;;;:::i;:::-;25061:8;25016:18;:32;25035:12;:10;:12::i;:::-;-1:-1:-1;;;;;25016:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;25016:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;25016:53:0;;;;;;;;;;;25100:12;:10;:12::i;:::-;-1:-1:-1;;;;;25085:48:0;;25124:8;25085:48;;;;;;:::i;:::-;;;;;;;;24846:295;;:::o;43284:69::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;43330:8:::1;:15:::0;;-1:-1:-1;;43330:15:0::1;;;::::0;;43284:69::o;26109:328::-;26284:41;26303:12;:10;:12::i;:::-;26317:7;26284:18;:41::i;:::-;26276:103;;;;-1:-1:-1;;;26276:103:0;;;;;;;:::i;:::-;26390:39;26404:4;26410:2;26414:7;26423:5;26390:13;:39::i;:::-;26109:328;;;;:::o;43062:112::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;43141:25;;::::1;::::0;:9:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;43376:442::-:0;43449:13;43483:16;43491:7;43483;:16::i;:::-;43475:77;;;;-1:-1:-1;;;43475:77:0;;;;;;;:::i;:::-;43568:8;;;;;;;43565:65;;43609:9;43602:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43565:65;43642:22;43667:10;:8;:10::i;:::-;43642:35;;43720:1;43701:8;43695:22;:26;:115;;;;;;;;;;;;;;;-1:-1:-1;;;43695:115:0;;;;;;43761:8;43771:18;:7;:16;:18::i;:::-;43744:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43695:115;43688:122;43376:442;-1:-1:-1;;;43376:442:0:o;25212:164::-;-1:-1:-1;;;;;25333:25:0;;;25309:4;25333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25212:164::o;2628:192::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2717:22:0;::::1;2709:73;;;;-1:-1:-1::0;;;2709:73:0::1;;;;;;;:::i;:::-;2793:19;2803:8;2793:9;:19::i;:::-;2628:192:::0;:::o;42236:31::-;;;;:::o;43182:94::-;1959:12;:10;:12::i;:::-;-1:-1:-1;;;;;1948:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1948:23:0;;1940:68;;;;-1:-1:-1;;;1940:68:0;;;;;;;:::i;:::-;43249:11:::1;:19:::0;;-1:-1:-1;;;;;;43249:19:0::1;-1:-1:-1::0;;;;;43249:19:0;;;::::1;::::0;;;::::1;::::0;;43182:94::o;22049:305::-;22151:4;-1:-1:-1;;;;;;22188:40:0;;-1:-1:-1;;;22188:40:0;;:105;;-1:-1:-1;;;;;;;22245:48:0;;-1:-1:-1;;;22245:48:0;22188:105;:158;;;;22310:36;22334:11;22310:23;:36::i;27947:127::-;28012:4;28036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28036:16:0;:30;;;27947:127::o;602:98::-;682:10;602:98;:::o;31929:174::-;32004:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32004:29:0;-1:-1:-1;;;;;32004:29:0;;;;;;;;:24;;32058:23;32004:24;32058:14;:23::i;:::-;-1:-1:-1;;;;;32049:46:0;;;;;;;;;;;31929:174;;:::o;28241:348::-;28334:4;28359:16;28367:7;28359;:16::i;:::-;28351:73;;;;-1:-1:-1;;;28351:73:0;;;;;;;:::i;:::-;28435:13;28451:23;28466:7;28451:14;:23::i;:::-;28435:39;;28504:5;-1:-1:-1;;;;;28493:16:0;:7;-1:-1:-1;;;;;28493:16:0;;:51;;;;28537:7;-1:-1:-1;;;;;28513:31:0;:20;28525:7;28513:11;:20::i;:::-;-1:-1:-1;;;;;28513:31:0;;28493:51;:87;;;;28548:32;28565:5;28572:7;28548:16;:32::i;:::-;28485:96;28241:348;-1:-1:-1;;;;28241:348:0:o;31233:578::-;31392:4;-1:-1:-1;;;;;31365:31:0;:23;31380:7;31365:14;:23::i;:::-;-1:-1:-1;;;;;31365:31:0;;31357:85;;;;-1:-1:-1;;;31357:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31461:16:0;;31453:65;;;;-1:-1:-1;;;31453:65:0;;;;;;;:::i;:::-;31531:39;31552:4;31558:2;31562:7;31531:20;:39::i;:::-;31635:29;31652:1;31656:7;31635:8;:29::i;:::-;-1:-1:-1;;;;;31677:15:0;;;;;;:9;:15;;;;;:20;;31696:1;;31677:15;:20;;31696:1;;31677:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31708:13:0;;;;;;:9;:13;;;;;:18;;31725:1;;31708:13;:18;;31725:1;;31708:18;:::i;:::-;;;;-1:-1:-1;;31737:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31737:21:0;-1:-1:-1;;;;;31737:21:0;;;;;;;;;31776:27;;31737:16;;31776:27;;;;;;;31233:578;;;:::o;29925:382::-;-1:-1:-1;;;;;30005:16:0;;29997:61;;;;-1:-1:-1;;;29997:61:0;;;;;;;:::i;:::-;30078:16;30086:7;30078;:16::i;:::-;30077:17;30069:58;;;;-1:-1:-1;;;30069:58:0;;;;;;;:::i;:::-;30140:45;30169:1;30173:2;30177:7;30140:20;:45::i;:::-;-1:-1:-1;;;;;30198:13:0;;;;;;:9;:13;;;;;:18;;30215:1;;30198:13;:18;;30215:1;;30198:18;:::i;:::-;;;;-1:-1:-1;;30227:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30227:21:0;-1:-1:-1;;;;;30227:21:0;;;;;;;;30266:33;;30227:16;;;30266:33;;30227:16;;30266:33;29925:382;;:::o;2828:173::-;2903:6;;;-1:-1:-1;;;;;2920:17:0;;;-1:-1:-1;;;;;;2920:17:0;;;;;;;2953:40;;2903:6;;;2920:17;2903:6;;2953:40;;2884:16;;2953:40;2828:173;;:::o;27319:315::-;27476:28;27486:4;27492:2;27496:7;27476:9;:28::i;:::-;27523:48;27546:4;27552:2;27556:7;27565:5;27523:22;:48::i;:::-;27515:111;;;;-1:-1:-1;;;27515:111:0;;;;;;;:::i;42843:107::-;42903:13;42935:7;42928:14;;;;;:::i;18197:723::-;18253:13;18474:10;18470:53;;-1:-1:-1;18501:10:0;;;;;;;;;;;;-1:-1:-1;;;18501:10:0;;;;;;18470:53;18548:5;18533:12;18589:78;18596:9;;18589:78;;18622:8;;;;:::i;:::-;;-1:-1:-1;18645:10:0;;-1:-1:-1;18653:2:0;18645:10;;:::i;:::-;;;18589:78;;;18677:19;18709:6;18699:17;;;;;;-1:-1:-1;;;18699:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18699:17:0;;18677:39;;18727:154;18734:10;;18727:154;;18761:11;18771:1;18761:11;;:::i;:::-;;-1:-1:-1;18830:10:0;18838:2;18830:5;:10;:::i;:::-;18817:24;;:2;:24;:::i;:::-;18804:39;;18787:6;18794;18787:14;;;;;;-1:-1:-1;;;18787:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18787:56:0;;;;;;;;-1:-1:-1;18858:11:0;18867:2;18858:11;;:::i;:::-;;;18727:154;;20656:157;-1:-1:-1;;;;;;20765:40:0;;-1:-1:-1;;;20765:40:0;20656:157;;;:::o;37542:589::-;37686:45;37713:4;37719:2;37723:7;37686:26;:45::i;:::-;-1:-1:-1;;;;;37748:18:0;;37744:187;;37783:40;37815:7;37783:31;:40::i;:::-;37744:187;;;37853:2;-1:-1:-1;;;;;37845:10:0;:4;-1:-1:-1;;;;;37845:10:0;;37841:90;;37872:47;37905:4;37911:7;37872:32;:47::i;:::-;-1:-1:-1;;;;;37945:16:0;;37941:183;;37978:45;38015:7;37978:36;:45::i;:::-;37941:183;;;38051:4;-1:-1:-1;;;;;38045:10:0;:2;-1:-1:-1;;;;;38045:10:0;;38041:83;;38072:40;38100:2;38104:7;38072:27;:40::i;32668:799::-;32823:4;32844:15;:2;-1:-1:-1;;;;;32844:13:0;;:15::i;:::-;32840:620;;;32896:2;-1:-1:-1;;;;;32880:36:0;;32917:12;:10;:12::i;:::-;32931:4;32937:7;32946:5;32880:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32880:72:0;;;;;;;;-1:-1:-1;;32880:72:0;;;;;;;;;;;;:::i;:::-;;;32876:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33122:13:0;;33118:272;;33165:60;;-1:-1:-1;;;33165:60:0;;;;;;;:::i;33118:272::-;33340:6;33334:13;33325:6;33321:2;33317:15;33310:38;32876:529;-1:-1:-1;;;;;;33003:51:0;-1:-1:-1;;;33003:51:0;;-1:-1:-1;32996:58:0;;32840:620;-1:-1:-1;33444:4:0;32668:799;;;;;;:::o;38854:164::-;38958:10;:17;;38931:24;;;;:15;:24;;;;;:44;;;38986:24;;;;;;;;;;;;38854:164::o;39645:988::-;39911:22;39961:1;39936:22;39953:4;39936:16;:22::i;:::-;:26;;;;:::i;:::-;39973:18;39994:26;;;:17;:26;;;;;;39911:51;;-1:-1:-1;40127:28:0;;;40123:328;;-1:-1:-1;;;;;40194:18:0;;40172:19;40194:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40245:30;;;;;;:44;;;40362:30;;:17;:30;;;;;:43;;;40123:328;-1:-1:-1;40547:26:0;;;;:17;:26;;;;;;;;40540:33;;;-1:-1:-1;;;;;40591:18:0;;;;;:12;:18;;;;;:34;;;;;;;40584:41;39645:988::o;40928:1079::-;41206:10;:17;41181:22;;41206:21;;41226:1;;41206:21;:::i;:::-;41238:18;41259:24;;;:15;:24;;;;;;41632:10;:26;;41181:46;;-1:-1:-1;41259:24:0;;41181:46;;41632:26;;;;-1:-1:-1;;;41632:26:0;;;;;;;;;;;;;;;;;41610:48;;41696:11;41671:10;41682;41671:22;;;;;;-1:-1:-1;;;41671:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41776:28;;;:15;:28;;;;;;;:41;;;41948:24;;;;;41941:31;41983:10;:16;;;;;-1:-1:-1;;;41983:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40928:1079;;;;:::o;38432:221::-;38517:14;38534:20;38551:2;38534:16;:20::i;:::-;-1:-1:-1;;;;;38565:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38610:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38432:221:0:o;10638:387::-;10961:20;11009:8;;;10638:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:637::-;;5042:6;5036:13;5058:53;5104:6;5099:3;5092:4;5084:6;5080:17;5058:53;:::i;:::-;5174:13;;5133:16;;;;5196:57;5174:13;5133:16;5230:4;5218:17;;5196:57;:::i;:::-;-1:-1:-1;;;5275:20:1;;5304:22;;;5353:1;5342:13;;5012:349;-1:-1:-1;;;;5012:349:1:o;5366:203::-;-1:-1:-1;;;;;5530:32:1;;;;5512:51;;5500:2;5485:18;;5467:102::o;5574:490::-;-1:-1:-1;;;;;5843:15:1;;;5825:34;;5895:15;;5890:2;5875:18;;5868:43;5942:2;5927:18;;5920:34;;;5990:3;5985:2;5970:18;;5963:31;;;5574:490;;6011:47;;6038:19;;6030:6;6011:47;:::i;:::-;6003:55;5777:287;-1:-1:-1;;;;;;5777:287:1:o;6069:635::-;6240:2;6292:21;;;6362:13;;6265:18;;;6384:22;;;6069:635;;6240:2;6463:15;;;;6437:2;6422:18;;;6069:635;6509:169;6523:6;6520:1;6517:13;6509:169;;;6584:13;;6572:26;;6653:15;;;;6618:12;;;;6545:1;6538:9;6509:169;;;-1:-1:-1;6695:3:1;;6220:484;-1:-1:-1;;;;;;6220:484:1:o;6709:187::-;6874:14;;6867:22;6849:41;;6837:2;6822:18;;6804:92::o;6901:221::-;;7050:2;7039:9;7032:21;7070:46;7112:2;7101:9;7097:18;7089:6;7070:46;:::i;7127:407::-;7329:2;7311:21;;;7368:2;7348:18;;;7341:30;7407:34;7402:2;7387:18;;7380:62;-1:-1:-1;;;7473:2:1;7458:18;;7451:41;7524:3;7509:19;;7301:233::o;7539:414::-;7741:2;7723:21;;;7780:2;7760:18;;;7753:30;7819:34;7814:2;7799:18;;7792:62;-1:-1:-1;;;7885:2:1;7870:18;;7863:48;7943:3;7928:19;;7713:240::o;7958:402::-;8160:2;8142:21;;;8199:2;8179:18;;;8172:30;8238:34;8233:2;8218:18;;8211:62;-1:-1:-1;;;8304:2:1;8289:18;;8282:36;8350:3;8335:19;;8132:228::o;8365:352::-;8567:2;8549:21;;;8606:2;8586:18;;;8579:30;8645;8640:2;8625:18;;8618:58;8708:2;8693:18;;8539:178::o;8722:400::-;8924:2;8906:21;;;8963:2;8943:18;;;8936:30;9002:34;8997:2;8982:18;;8975:62;-1:-1:-1;;;9068:2:1;9053:18;;9046:34;9112:3;9097:19;;8896:226::o;9127:349::-;9329:2;9311:21;;;9368:2;9348:18;;;9341:30;9407:27;9402:2;9387:18;;9380:55;9467:2;9452:18;;9301:175::o;9481:408::-;9683:2;9665:21;;;9722:2;9702:18;;;9695:30;9761:34;9756:2;9741:18;;9734:62;-1:-1:-1;;;9827:2:1;9812:18;;9805:42;9879:3;9864:19;;9655:234::o;9894:420::-;10096:2;10078:21;;;10135:2;10115:18;;;10108:30;10174:34;10169:2;10154:18;;10147:62;10245:26;10240:2;10225:18;;10218:54;10304:3;10289:19;;10068:246::o;10319:406::-;10521:2;10503:21;;;10560:2;10540:18;;;10533:30;10599:34;10594:2;10579:18;;10572:62;-1:-1:-1;;;10665:2:1;10650:18;;10643:40;10715:3;10700:19;;10493:232::o;10730:405::-;10932:2;10914:21;;;10971:2;10951:18;;;10944:30;11010:34;11005:2;10990:18;;10983:62;-1:-1:-1;;;11076:2:1;11061:18;;11054:39;11125:3;11110:19;;10904:231::o;11140:356::-;11342:2;11324:21;;;11361:18;;;11354:30;11420:34;11415:2;11400:18;;11393:62;11487:2;11472:18;;11314:182::o;11501:408::-;11703:2;11685:21;;;11742:2;11722:18;;;11715:30;11781:34;11776:2;11761:18;;11754:62;-1:-1:-1;;;11847:2:1;11832:18;;11825:42;11899:3;11884:19;;11675:234::o;11914:356::-;12116:2;12098:21;;;12135:18;;;12128:30;12194:34;12189:2;12174:18;;12167:62;12261:2;12246:18;;12088:182::o;12275:405::-;12477:2;12459:21;;;12516:2;12496:18;;;12489:30;12555:34;12550:2;12535:18;;12528:62;-1:-1:-1;;;12621:2:1;12606:18;;12599:39;12670:3;12655:19;;12449:231::o;12685:353::-;12887:2;12869:21;;;12926:2;12906:18;;;12899:30;12965:31;12960:2;12945:18;;12938:59;13029:2;13014:18;;12859:179::o;13043:397::-;13245:2;13227:21;;;13284:2;13264:18;;;13257:30;13323:34;13318:2;13303:18;;13296:62;-1:-1:-1;;;13389:2:1;13374:18;;13367:31;13430:3;13415:19;;13217:223::o;13445:356::-;13647:2;13629:21;;;13666:18;;;13659:30;13725:34;13720:2;13705:18;;13698:62;13792:2;13777:18;;13619:182::o;13806:413::-;14008:2;13990:21;;;14047:2;14027:18;;;14020:30;14086:34;14081:2;14066:18;;14059:62;-1:-1:-1;;;14152:2:1;14137:18;;14130:47;14209:3;14194:19;;13980:239::o;14224:408::-;14426:2;14408:21;;;14465:2;14445:18;;;14438:30;14504:34;14499:2;14484:18;;14477:62;-1:-1:-1;;;14570:2:1;14555:18;;14548:42;14622:3;14607:19;;14398:234::o;14637:405::-;14839:2;14821:21;;;14878:2;14858:18;;;14851:30;14917:34;14912:2;14897:18;;14890:62;-1:-1:-1;;;14983:2:1;14968:18;;14961:39;15032:3;15017:19;;14811:231::o;15047:352::-;15249:2;15231:21;;;15288:2;15268:18;;;15261:30;15327;15322:2;15307:18;;15300:58;15390:2;15375:18;;15221:178::o;15404:335::-;15606:2;15588:21;;;15645:2;15625:18;;;15618:30;-1:-1:-1;;;15679:2:1;15664:18;;15657:41;15730:2;15715:18;;15578:161::o;15744:412::-;15946:2;15928:21;;;15985:2;15965:18;;;15958:30;16024:34;16019:2;16004:18;;15997:62;-1:-1:-1;;;16090:2:1;16075:18;;16068:46;16146:3;16131:19;;15918:238::o;16161:343::-;16363:2;16345:21;;;16402:2;16382:18;;;16375:30;-1:-1:-1;;;16436:2:1;16421:18;;16414:49;16495:2;16480:18;;16335:169::o;16509:177::-;16655:25;;;16643:2;16628:18;;16610:76::o;16691:248::-;16865:25;;;16921:2;16906:18;;16899:34;16853:2;16838:18;;16820:119::o;16944:128::-;;17015:1;17011:6;17008:1;17005:13;17002:2;;;17021:18;;:::i;:::-;-1:-1:-1;17057:9:1;;16992:80::o;17077:120::-;;17143:1;17133:2;;17148:18;;:::i;:::-;-1:-1:-1;17182:9:1;;17123:74::o;17202:168::-;;17308:1;17304;17300:6;17296:14;17293:1;17290:21;17285:1;17278:9;17271:17;17267:45;17264:2;;;17315:18;;:::i;:::-;-1:-1:-1;17355:9:1;;17254:116::o;17375:125::-;;17443:1;17440;17437:8;17434:2;;;17448:18;;:::i;:::-;-1:-1:-1;17485:9:1;;17424:76::o;17505:258::-;17577:1;17587:113;17601:6;17598:1;17595:13;17587:113;;;17677:11;;;17671:18;17658:11;;;17651:39;17623:2;17616:10;17587:113;;;17718:6;17715:1;17712:13;17709:2;;;-1:-1:-1;;17753:1:1;17735:16;;17728:27;17558:205::o;17768:380::-;17853:1;17843:12;;17900:1;17890:12;;;17911:2;;17965:4;17957:6;17953:17;17943:27;;17911:2;18018;18010:6;18007:14;17987:18;17984:38;17981:2;;;18064:10;18059:3;18055:20;18052:1;18045:31;18099:4;18096:1;18089:15;18127:4;18124:1;18117:15;17981:2;;17823:325;;;:::o;18153:135::-;;-1:-1:-1;;18213:17:1;;18210:2;;;18233:18;;:::i;:::-;-1:-1:-1;18280:1:1;18269:13;;18200:88::o;18293:112::-;;18351:1;18341:2;;18356:18;;:::i;:::-;-1:-1:-1;18390:9:1;;18331:74::o;18410:127::-;18471:10;18466:3;18462:20;18459:1;18452:31;18502:4;18499:1;18492:15;18526:4;18523:1;18516:15;18542:127;18603:10;18598:3;18594:20;18591:1;18584:31;18634:4;18631:1;18624:15;18658:4;18655:1;18648:15;18674:127;18735:10;18730:3;18726:20;18723:1;18716:31;18766:4;18763:1;18756:15;18790:4;18787:1;18780:15;18806:133;-1:-1:-1;;;;;;18882:32:1;;18872:43;;18862:2;;18929:1;18926;18919:12

Swarm Source

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