ETH Price: $3,266.79 (+0.20%)
Gas: 2 Gwei

Token

Moon Rabbits Breeding Pass (MRBP)
 

Overview

Max Total Supply

2,067 MRBP

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tedwhoooo.eth
Balance
20 MRBP
0x7eebc52df419083a749b36ca57d07f02662cb9f7
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:
BreedingPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;





/**
 * @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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/xenesis.sol


pragma solidity >=0.7.0 <0.9.0;


contract BreedingPass is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  using SafeMath for uint256;

  mapping (address => bool) public whitelistForBreedingPass;
  mapping (address => bool) public mintedForBreedingPass;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  
  uint256 public costForBreedingPass = 0 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public mintCountForBreedingPass = 0;
  uint256 public maxMintCountForBreedingPass = 10000;

  bool public paused = true;
  bool public pausedForBreedingPass = true;

  address public managerAccount;

  constructor() ERC721("Moon Rabbits Breeding Pass", "MRBP") {
    setUriPrefix("ipfs://QmaHhR4yMKcz935UXNyD545vRL5XzuSobuer7m2pidzgkM/");
    managerAccount = 0x7f32647F85801a95886Aa722DA408CF28f01671E;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "You sure that is the right size for you?");
    require(supply.current() + _mintAmount <= maxSupply, "Out of your condoms");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mintForBreedingPass(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "Sex y playlist has been paused!");
    require(!pausedForBreedingPass, "Let your Rabbit take a quick break!");
    require(msg.value >= costForBreedingPass * _mintAmount, "You need more $ Bills!");

    //_mintLoop(msg.sender, _mintAmount);
    for (uint256 i = 0; i < _mintAmount; i++) {
        require(mintCountForBreedingPass < maxMintCountForBreedingPass);
        supply.increment();
        _safeMint(msg.sender, mintCountForBreedingPass);
        mintCountForBreedingPass = mintCountForBreedingPass + 1;
    }
    mintedForBreedingPass[msg.sender] = true;
  }

//   function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
//     _mintLoop(_receiver, _mintAmount);
//   }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setPausedForBreedingPass(bool _state) public onlyOwner {
    pausedForBreedingPass = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

  function setWhitelistForBreedingPassForLoop(address[] calldata _whitelistMembers) public {
      require(msg.sender == managerAccount, "Only manager can set whitelist");
      for (uint256 i = 0; i < _whitelistMembers.length; i++) {
        whitelistForBreedingPass[_whitelistMembers[i]] = true;
      }
  }

  function setWhitelistForBreedingPass(address _whitelistMember, bool _enable) public {
      require(msg.sender == managerAccount, "Only manager can set whitelist");
      whitelistForBreedingPass[_whitelistMember] = _enable;
  }

  function getMintCountForBreedingPass() public view returns (uint256) {
    return mintCountForBreedingPass;
  }

  function getWhitelistedForBreedingPass(address _checkAddress) public view returns (bool) {
    return whitelistForBreedingPass[_checkAddress];
  }

  function getMintedForBreedingPass(address _checkAddress) public view returns (bool) {
    return mintedForBreedingPass[_checkAddress];
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"costForBreedingPass","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":"getMintCountForBreedingPass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_checkAddress","type":"address"}],"name":"getMintedForBreedingPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_checkAddress","type":"address"}],"name":"getWhitelistedForBreedingPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"managerAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCountForBreedingPass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCountForBreedingPass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForBreedingPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedForBreedingPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedForBreedingPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPausedForBreedingPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistMember","type":"address"},{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setWhitelistForBreedingPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistMembers","type":"address[]"}],"name":"setWhitelistForBreedingPassForLoop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistForBreedingPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a916200023b565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b916200023b565b506000600c819055612710600d8190556014600e55600f919091556010556011805461ffff19166101011790553480156200008457600080fd5b50604080518082018252601a81527f4d6f6f6e2052616262697473204272656564696e67205061737300000000000060208083019182528351808501909452600484526304d5242560e41b908401528151919291620000e6916000916200023b565b508051620000fc9060019060208401906200023b565b50505062000119620001136200016d60201b60201c565b62000171565b6200013d6040518060600160405280603681526020016200279560369139620001c3565b6011805462010000600160b01b031916757f32647f85801a95886aa722da408cf28f01671e00001790556200031e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200023790600a9060208401906200023b565b5050565b8280546200024990620002e1565b90600052602060002090601f0160209004810192826200026d5760008555620002b8565b82601f106200028857805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b85782518255916020019190600101906200029b565b50620002c6929150620002ca565b5090565b5b80821115620002c65760008155600101620002cb565b600181811c90821680620002f657607f821691505b602082108114156200031857634e487b7160e01b600052602260045260246000fd5b50919050565b612467806200032e6000396000f3fe60806040526004361061024f5760003560e01c806370a0823111610139578063a5d5a994116100b6578063be2b59761161007a578063be2b5976146106ed578063c87b56dd1461070d578063d5abeb011461072d578063e985e9c514610743578063f2fde38b1461078c578063f4b6dd79146107ac57600080fd5b8063a5d5a99414610642578063a6269d5014610657578063b003955814610687578063b071401b146106ad578063b88d4fde146106cd57600080fd5b806394354fd0116100fd57806394354fd0146105cb57806395d89b41146105e15780639ebd0bc5146105f6578063a22cb4651461060c578063a2d121da1461062c57600080fd5b806370a0823114610542578063715018a6146105625780637ec4a659146105775780638c06b9f8146105975780638da5cb5b146105ad57600080fd5b806323b872dd116101d25780635503a0e8116101965780635503a0e8146104755780635c975abb1461048a57806362b99ad4146104a45780636352211e146104b957806366d831fa146104d95780636c0000be1461051257600080fd5b806323b872dd146103d35780633ccfd60b146103f357806342842e0e14610408578063438b630014610428578063446041dd1461045557600080fd5b8063095ea7b311610219578063095ea7b31461031757806313a8dba81461033757806316ba10e01461037057806316c38b3c1461039057806318160ddd146103b057600080fd5b80623da1a71461025457806274774d1461026957806301ffc9a71461029d57806306fdde03146102bd578063081812fc146102df575b600080fd5b610267610262366004612056565b6107cc565b005b34801561027557600080fd5b5060115461028890610100900460ff1681565b60405190151581526020015b60405180910390f35b3480156102a957600080fd5b506102886102b8366004611fd3565b610a20565b3480156102c957600080fd5b506102d2610a72565b60405161029491906121e0565b3480156102eb57600080fd5b506102ff6102fa366004612056565b610b04565b6040516001600160a01b039091168152602001610294565b34801561032357600080fd5b50610267610332366004611f19565b610b99565b34801561034357600080fd5b50610288610352366004611de9565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561037c57600080fd5b5061026761038b36600461200d565b610caf565b34801561039c57600080fd5b506102676103ab366004611fb8565b610cf0565b3480156103bc57600080fd5b506103c5610d2d565b604051908152602001610294565b3480156103df57600080fd5b506102676103ee366004611e37565b610d3d565b3480156103ff57600080fd5b50610267610d6e565b34801561041457600080fd5b50610267610423366004611e37565b610e0c565b34801561043457600080fd5b50610448610443366004611de9565b610e27565b604051610294919061219c565b34801561046157600080fd5b50610267610470366004611eef565b610f08565b34801561048157600080fd5b506102d2610f93565b34801561049657600080fd5b506011546102889060ff1681565b3480156104b057600080fd5b506102d2611021565b3480156104c557600080fd5b506102ff6104d4366004612056565b61102e565b3480156104e557600080fd5b506102886104f4366004611de9565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561051e57600080fd5b5061028861052d366004611de9565b60086020526000908152604090205460ff1681565b34801561054e57600080fd5b506103c561055d366004611de9565b6110a5565b34801561056e57600080fd5b5061026761112c565b34801561058357600080fd5b5061026761059236600461200d565b611162565b3480156105a357600080fd5b506103c560105481565b3480156105b957600080fd5b506006546001600160a01b03166102ff565b3480156105d757600080fd5b506103c5600e5481565b3480156105ed57600080fd5b506102d261119f565b34801561060257600080fd5b506103c5600c5481565b34801561061857600080fd5b50610267610627366004611eef565b6111ae565b34801561063857600080fd5b506103c5600f5481565b34801561064e57600080fd5b50600f546103c5565b34801561066357600080fd5b50610288610672366004611de9565b60076020526000908152604090205460ff1681565b34801561069357600080fd5b506011546102ff906201000090046001600160a01b031681565b3480156106b957600080fd5b506102676106c8366004612056565b6111b9565b3480156106d957600080fd5b506102676106e8366004611e73565b6111e8565b3480156106f957600080fd5b50610267610708366004611fb8565b611220565b34801561071957600080fd5b506102d2610728366004612056565b611264565b34801561073957600080fd5b506103c5600d5481565b34801561074f57600080fd5b5061028861075e366004611e04565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079857600080fd5b506102676107a7366004611de9565b611342565b3480156107b857600080fd5b506102676107c7366004611f43565b6113da565b806000811180156107df5750600e548111155b6108415760405162461bcd60e51b815260206004820152602860248201527f596f7520737572652074686174206973207468652072696768742073697a6520604482015267666f7220796f753f60c01b60648201526084015b60405180910390fd5b600d548161084e60095490565b61085891906122cb565b111561089c5760405162461bcd60e51b81526020600482015260136024820152724f7574206f6620796f757220636f6e646f6d7360681b6044820152606401610838565b60115460ff16156108ef5760405162461bcd60e51b815260206004820152601f60248201527f536578207920706c61796c69737420686173206265656e2070617573656421006044820152606401610838565b601154610100900460ff16156109535760405162461bcd60e51b815260206004820152602360248201527f4c657420796f7572205261626269742074616b65206120717569636b20627265604482015262616b2160e81b6064820152608401610838565b81600c5461096191906122f7565b3410156109a95760405162461bcd60e51b8152602060048201526016602482015275596f75206e656564206d6f726520242042696c6c732160501b6044820152606401610838565b60005b82811015610a0157601054600f54106109c457600080fd5b6109d2600980546001019055565b6109de33600f546114ac565b600f546109ec9060016122cb565b600f55806109f981612394565b9150506109ac565b5050336000908152600860205260409020805460ff1916600117905550565b60006001600160e01b031982166380ac58cd60e01b1480610a5157506001600160e01b03198216635b5e139f60e01b145b80610a6c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610a8190612359565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad90612359565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b7d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610838565b506000908152600460205260409020546001600160a01b031690565b6000610ba48261102e565b9050806001600160a01b0316836001600160a01b03161415610c125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610838565b336001600160a01b0382161480610c2e5750610c2e813361075e565b610ca05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610838565b610caa83836114c6565b505050565b6006546001600160a01b03163314610cd95760405162461bcd60e51b815260040161083890612245565b8051610cec90600b906020840190611cae565b5050565b6006546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161083890612245565b6011805460ff1916911515919091179055565b6000610d3860095490565b905090565b610d473382611534565b610d635760405162461bcd60e51b81526004016108389061227a565b610caa83838361162b565b6006546001600160a01b03163314610d985760405162461bcd60e51b815260040161083890612245565b6000610dac6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610df6576040519150601f19603f3d011682016040523d82523d6000602084013e610dfb565b606091505b5050905080610e0957600080fd5b50565b610caa838383604051806020016040528060008152506111e8565b60606000610e34836110a5565b905060008167ffffffffffffffff811115610e5157610e51612405565b604051908082528060200260200182016040528015610e7a578160200160208202803683370190505b509050600160005b8381108015610e935750600d548211155b15610efe576000610ea38361102e565b9050866001600160a01b0316816001600160a01b03161415610eeb5782848381518110610ed257610ed26123ef565b602090810291909101015281610ee781612394565b9250505b82610ef581612394565b93505050610e82565b5090949350505050565b6011546201000090046001600160a01b03163314610f685760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c79206d616e616765722063616e207365742077686974656c69737400006044820152606401610838565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600b8054610fa090612359565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcc90612359565b80156110195780601f10610fee57610100808354040283529160200191611019565b820191906000526020600020905b815481529060010190602001808311610ffc57829003601f168201915b505050505081565b600a8054610fa090612359565b6000818152600260205260408120546001600160a01b031680610a6c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610838565b60006001600160a01b0382166111105760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610838565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111565760405162461bcd60e51b815260040161083890612245565b61116060006117cb565b565b6006546001600160a01b0316331461118c5760405162461bcd60e51b815260040161083890612245565b8051610cec90600a906020840190611cae565b606060018054610a8190612359565b610cec33838361181d565b6006546001600160a01b031633146111e35760405162461bcd60e51b815260040161083890612245565b600e55565b6111f23383611534565b61120e5760405162461bcd60e51b81526004016108389061227a565b61121a848484846118ec565b50505050565b6006546001600160a01b0316331461124a5760405162461bcd60e51b815260040161083890612245565b601180549115156101000261ff0019909216919091179055565b6000818152600260205260409020546060906001600160a01b03166112e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610838565b60006112ed61191f565b9050600081511161130d576040518060200160405280600081525061133b565b806113178461192e565b600b60405160200161132b9392919061209b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461136c5760405162461bcd60e51b815260040161083890612245565b6001600160a01b0381166113d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610838565b610e09816117cb565b6011546201000090046001600160a01b0316331461143a5760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c79206d616e616765722063616e207365742077686974656c69737400006044820152606401610838565b60005b81811015610caa5760016007600085858581811061145d5761145d6123ef565b90506020020160208101906114729190611de9565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806114a481612394565b91505061143d565b610cec828260405180602001604052806000815250611a2c565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114fb8261102e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610838565b60006115b88361102e565b9050806001600160a01b0316846001600160a01b031614806115f35750836001600160a01b03166115e884610b04565b6001600160a01b0316145b8061162357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163e8261102e565b6001600160a01b0316146116a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610838565b6001600160a01b0382166117085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610838565b6117136000826114c6565b6001600160a01b038316600090815260036020526040812080546001929061173c908490612316565b90915550506001600160a01b038216600090815260036020526040812080546001929061176a9084906122cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561187f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610838565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118f784848461162b565b61190384848484611a5f565b61121a5760405162461bcd60e51b8152600401610838906121f3565b6060600a8054610a8190612359565b6060816119525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197c578061196681612394565b91506119759050600a836122e3565b9150611956565b60008167ffffffffffffffff81111561199757611997612405565b6040519080825280601f01601f1916602001820160405280156119c1576020820181803683370190505b5090505b8415611623576119d6600183612316565b91506119e3600a866123af565b6119ee9060306122cb565b60f81b818381518110611a0357611a036123ef565b60200101906001600160f81b031916908160001a905350611a25600a866122e3565b94506119c5565b611a368383611b6c565b611a436000848484611a5f565b610caa5760405162461bcd60e51b8152600401610838906121f3565b60006001600160a01b0384163b15611b6157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa390339089908890889060040161215f565b602060405180830381600087803b158015611abd57600080fd5b505af1925050508015611aed575060408051601f3d908101601f19168201909252611aea91810190611ff0565b60015b611b47573d808015611b1b576040519150601f19603f3d011682016040523d82523d6000602084013e611b20565b606091505b508051611b3f5760405162461bcd60e51b8152600401610838906121f3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611623565b506001949350505050565b6001600160a01b038216611bc25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610838565b6000818152600260205260409020546001600160a01b031615611c275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610838565b6001600160a01b0382166000908152600360205260408120805460019290611c509084906122cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cba90612359565b90600052602060002090601f016020900481019282611cdc5760008555611d22565b82601f10611cf557805160ff1916838001178555611d22565b82800160010185558215611d22579182015b82811115611d22578251825591602001919060010190611d07565b50611d2e929150611d32565b5090565b5b80821115611d2e5760008155600101611d33565b600067ffffffffffffffff80841115611d6257611d62612405565b604051601f8501601f19908116603f01168101908282118183101715611d8a57611d8a612405565b81604052809350858152868686011115611da357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dd457600080fd5b919050565b80358015158114611dd457600080fd5b600060208284031215611dfb57600080fd5b61133b82611dbd565b60008060408385031215611e1757600080fd5b611e2083611dbd565b9150611e2e60208401611dbd565b90509250929050565b600080600060608486031215611e4c57600080fd5b611e5584611dbd565b9250611e6360208501611dbd565b9150604084013590509250925092565b60008060008060808587031215611e8957600080fd5b611e9285611dbd565b9350611ea060208601611dbd565b925060408501359150606085013567ffffffffffffffff811115611ec357600080fd5b8501601f81018713611ed457600080fd5b611ee387823560208401611d47565b91505092959194509250565b60008060408385031215611f0257600080fd5b611f0b83611dbd565b9150611e2e60208401611dd9565b60008060408385031215611f2c57600080fd5b611f3583611dbd565b946020939093013593505050565b60008060208385031215611f5657600080fd5b823567ffffffffffffffff80821115611f6e57600080fd5b818501915085601f830112611f8257600080fd5b813581811115611f9157600080fd5b8660208260051b8501011115611fa657600080fd5b60209290920196919550909350505050565b600060208284031215611fca57600080fd5b61133b82611dd9565b600060208284031215611fe557600080fd5b813561133b8161241b565b60006020828403121561200257600080fd5b815161133b8161241b565b60006020828403121561201f57600080fd5b813567ffffffffffffffff81111561203657600080fd5b8201601f8101841361204757600080fd5b61162384823560208401611d47565b60006020828403121561206857600080fd5b5035919050565b6000815180845261208781602086016020860161232d565b601f01601f19169290920160200192915050565b6000845160206120ae8285838a0161232d565b8551918401916120c18184848a0161232d565b8554920191600090600181811c90808316806120de57607f831692505b8583108114156120fc57634e487b7160e01b85526022600452602485fd5b80801561211057600181146121215761214e565b60ff1985168852838801955061214e565b60008b81526020902060005b858110156121465781548a82015290840190880161212d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121929083018461206f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121d4578351835292840192918401916001016121b8565b50909695505050505050565b60208152600061133b602083018461206f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122de576122de6123c3565b500190565b6000826122f2576122f26123d9565b500490565b6000816000190483118215151615612311576123116123c3565b500290565b600082821015612328576123286123c3565b500390565b60005b83811015612348578181015183820152602001612330565b8381111561121a5750506000910152565b600181811c9082168061236d57607f821691505b6020821081141561238e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123a8576123a86123c3565b5060010190565b6000826123be576123be6123d9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0957600080fdfea2646970667358221220c435f13a32f6b7d4479495a16bdf51cbf7a0c75b63d7b7875dc17139f27c864064736f6c63430008070033697066733a2f2f516d6148685234794d4b637a39333555584e794435343576524c35587a75536f62756572376d327069647a676b4d2f

Deployed Bytecode

0x60806040526004361061024f5760003560e01c806370a0823111610139578063a5d5a994116100b6578063be2b59761161007a578063be2b5976146106ed578063c87b56dd1461070d578063d5abeb011461072d578063e985e9c514610743578063f2fde38b1461078c578063f4b6dd79146107ac57600080fd5b8063a5d5a99414610642578063a6269d5014610657578063b003955814610687578063b071401b146106ad578063b88d4fde146106cd57600080fd5b806394354fd0116100fd57806394354fd0146105cb57806395d89b41146105e15780639ebd0bc5146105f6578063a22cb4651461060c578063a2d121da1461062c57600080fd5b806370a0823114610542578063715018a6146105625780637ec4a659146105775780638c06b9f8146105975780638da5cb5b146105ad57600080fd5b806323b872dd116101d25780635503a0e8116101965780635503a0e8146104755780635c975abb1461048a57806362b99ad4146104a45780636352211e146104b957806366d831fa146104d95780636c0000be1461051257600080fd5b806323b872dd146103d35780633ccfd60b146103f357806342842e0e14610408578063438b630014610428578063446041dd1461045557600080fd5b8063095ea7b311610219578063095ea7b31461031757806313a8dba81461033757806316ba10e01461037057806316c38b3c1461039057806318160ddd146103b057600080fd5b80623da1a71461025457806274774d1461026957806301ffc9a71461029d57806306fdde03146102bd578063081812fc146102df575b600080fd5b610267610262366004612056565b6107cc565b005b34801561027557600080fd5b5060115461028890610100900460ff1681565b60405190151581526020015b60405180910390f35b3480156102a957600080fd5b506102886102b8366004611fd3565b610a20565b3480156102c957600080fd5b506102d2610a72565b60405161029491906121e0565b3480156102eb57600080fd5b506102ff6102fa366004612056565b610b04565b6040516001600160a01b039091168152602001610294565b34801561032357600080fd5b50610267610332366004611f19565b610b99565b34801561034357600080fd5b50610288610352366004611de9565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561037c57600080fd5b5061026761038b36600461200d565b610caf565b34801561039c57600080fd5b506102676103ab366004611fb8565b610cf0565b3480156103bc57600080fd5b506103c5610d2d565b604051908152602001610294565b3480156103df57600080fd5b506102676103ee366004611e37565b610d3d565b3480156103ff57600080fd5b50610267610d6e565b34801561041457600080fd5b50610267610423366004611e37565b610e0c565b34801561043457600080fd5b50610448610443366004611de9565b610e27565b604051610294919061219c565b34801561046157600080fd5b50610267610470366004611eef565b610f08565b34801561048157600080fd5b506102d2610f93565b34801561049657600080fd5b506011546102889060ff1681565b3480156104b057600080fd5b506102d2611021565b3480156104c557600080fd5b506102ff6104d4366004612056565b61102e565b3480156104e557600080fd5b506102886104f4366004611de9565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561051e57600080fd5b5061028861052d366004611de9565b60086020526000908152604090205460ff1681565b34801561054e57600080fd5b506103c561055d366004611de9565b6110a5565b34801561056e57600080fd5b5061026761112c565b34801561058357600080fd5b5061026761059236600461200d565b611162565b3480156105a357600080fd5b506103c560105481565b3480156105b957600080fd5b506006546001600160a01b03166102ff565b3480156105d757600080fd5b506103c5600e5481565b3480156105ed57600080fd5b506102d261119f565b34801561060257600080fd5b506103c5600c5481565b34801561061857600080fd5b50610267610627366004611eef565b6111ae565b34801561063857600080fd5b506103c5600f5481565b34801561064e57600080fd5b50600f546103c5565b34801561066357600080fd5b50610288610672366004611de9565b60076020526000908152604090205460ff1681565b34801561069357600080fd5b506011546102ff906201000090046001600160a01b031681565b3480156106b957600080fd5b506102676106c8366004612056565b6111b9565b3480156106d957600080fd5b506102676106e8366004611e73565b6111e8565b3480156106f957600080fd5b50610267610708366004611fb8565b611220565b34801561071957600080fd5b506102d2610728366004612056565b611264565b34801561073957600080fd5b506103c5600d5481565b34801561074f57600080fd5b5061028861075e366004611e04565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079857600080fd5b506102676107a7366004611de9565b611342565b3480156107b857600080fd5b506102676107c7366004611f43565b6113da565b806000811180156107df5750600e548111155b6108415760405162461bcd60e51b815260206004820152602860248201527f596f7520737572652074686174206973207468652072696768742073697a6520604482015267666f7220796f753f60c01b60648201526084015b60405180910390fd5b600d548161084e60095490565b61085891906122cb565b111561089c5760405162461bcd60e51b81526020600482015260136024820152724f7574206f6620796f757220636f6e646f6d7360681b6044820152606401610838565b60115460ff16156108ef5760405162461bcd60e51b815260206004820152601f60248201527f536578207920706c61796c69737420686173206265656e2070617573656421006044820152606401610838565b601154610100900460ff16156109535760405162461bcd60e51b815260206004820152602360248201527f4c657420796f7572205261626269742074616b65206120717569636b20627265604482015262616b2160e81b6064820152608401610838565b81600c5461096191906122f7565b3410156109a95760405162461bcd60e51b8152602060048201526016602482015275596f75206e656564206d6f726520242042696c6c732160501b6044820152606401610838565b60005b82811015610a0157601054600f54106109c457600080fd5b6109d2600980546001019055565b6109de33600f546114ac565b600f546109ec9060016122cb565b600f55806109f981612394565b9150506109ac565b5050336000908152600860205260409020805460ff1916600117905550565b60006001600160e01b031982166380ac58cd60e01b1480610a5157506001600160e01b03198216635b5e139f60e01b145b80610a6c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610a8190612359565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad90612359565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b7d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610838565b506000908152600460205260409020546001600160a01b031690565b6000610ba48261102e565b9050806001600160a01b0316836001600160a01b03161415610c125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610838565b336001600160a01b0382161480610c2e5750610c2e813361075e565b610ca05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610838565b610caa83836114c6565b505050565b6006546001600160a01b03163314610cd95760405162461bcd60e51b815260040161083890612245565b8051610cec90600b906020840190611cae565b5050565b6006546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161083890612245565b6011805460ff1916911515919091179055565b6000610d3860095490565b905090565b610d473382611534565b610d635760405162461bcd60e51b81526004016108389061227a565b610caa83838361162b565b6006546001600160a01b03163314610d985760405162461bcd60e51b815260040161083890612245565b6000610dac6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610df6576040519150601f19603f3d011682016040523d82523d6000602084013e610dfb565b606091505b5050905080610e0957600080fd5b50565b610caa838383604051806020016040528060008152506111e8565b60606000610e34836110a5565b905060008167ffffffffffffffff811115610e5157610e51612405565b604051908082528060200260200182016040528015610e7a578160200160208202803683370190505b509050600160005b8381108015610e935750600d548211155b15610efe576000610ea38361102e565b9050866001600160a01b0316816001600160a01b03161415610eeb5782848381518110610ed257610ed26123ef565b602090810291909101015281610ee781612394565b9250505b82610ef581612394565b93505050610e82565b5090949350505050565b6011546201000090046001600160a01b03163314610f685760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c79206d616e616765722063616e207365742077686974656c69737400006044820152606401610838565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600b8054610fa090612359565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcc90612359565b80156110195780601f10610fee57610100808354040283529160200191611019565b820191906000526020600020905b815481529060010190602001808311610ffc57829003601f168201915b505050505081565b600a8054610fa090612359565b6000818152600260205260408120546001600160a01b031680610a6c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610838565b60006001600160a01b0382166111105760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610838565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111565760405162461bcd60e51b815260040161083890612245565b61116060006117cb565b565b6006546001600160a01b0316331461118c5760405162461bcd60e51b815260040161083890612245565b8051610cec90600a906020840190611cae565b606060018054610a8190612359565b610cec33838361181d565b6006546001600160a01b031633146111e35760405162461bcd60e51b815260040161083890612245565b600e55565b6111f23383611534565b61120e5760405162461bcd60e51b81526004016108389061227a565b61121a848484846118ec565b50505050565b6006546001600160a01b0316331461124a5760405162461bcd60e51b815260040161083890612245565b601180549115156101000261ff0019909216919091179055565b6000818152600260205260409020546060906001600160a01b03166112e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610838565b60006112ed61191f565b9050600081511161130d576040518060200160405280600081525061133b565b806113178461192e565b600b60405160200161132b9392919061209b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461136c5760405162461bcd60e51b815260040161083890612245565b6001600160a01b0381166113d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610838565b610e09816117cb565b6011546201000090046001600160a01b0316331461143a5760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c79206d616e616765722063616e207365742077686974656c69737400006044820152606401610838565b60005b81811015610caa5760016007600085858581811061145d5761145d6123ef565b90506020020160208101906114729190611de9565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806114a481612394565b91505061143d565b610cec828260405180602001604052806000815250611a2c565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114fb8261102e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610838565b60006115b88361102e565b9050806001600160a01b0316846001600160a01b031614806115f35750836001600160a01b03166115e884610b04565b6001600160a01b0316145b8061162357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163e8261102e565b6001600160a01b0316146116a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610838565b6001600160a01b0382166117085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610838565b6117136000826114c6565b6001600160a01b038316600090815260036020526040812080546001929061173c908490612316565b90915550506001600160a01b038216600090815260036020526040812080546001929061176a9084906122cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561187f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610838565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118f784848461162b565b61190384848484611a5f565b61121a5760405162461bcd60e51b8152600401610838906121f3565b6060600a8054610a8190612359565b6060816119525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197c578061196681612394565b91506119759050600a836122e3565b9150611956565b60008167ffffffffffffffff81111561199757611997612405565b6040519080825280601f01601f1916602001820160405280156119c1576020820181803683370190505b5090505b8415611623576119d6600183612316565b91506119e3600a866123af565b6119ee9060306122cb565b60f81b818381518110611a0357611a036123ef565b60200101906001600160f81b031916908160001a905350611a25600a866122e3565b94506119c5565b611a368383611b6c565b611a436000848484611a5f565b610caa5760405162461bcd60e51b8152600401610838906121f3565b60006001600160a01b0384163b15611b6157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa390339089908890889060040161215f565b602060405180830381600087803b158015611abd57600080fd5b505af1925050508015611aed575060408051601f3d908101601f19168201909252611aea91810190611ff0565b60015b611b47573d808015611b1b576040519150601f19603f3d011682016040523d82523d6000602084013e611b20565b606091505b508051611b3f5760405162461bcd60e51b8152600401610838906121f3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611623565b506001949350505050565b6001600160a01b038216611bc25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610838565b6000818152600260205260409020546001600160a01b031615611c275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610838565b6001600160a01b0382166000908152600360205260408120805460019290611c509084906122cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cba90612359565b90600052602060002090601f016020900481019282611cdc5760008555611d22565b82601f10611cf557805160ff1916838001178555611d22565b82800160010185558215611d22579182015b82811115611d22578251825591602001919060010190611d07565b50611d2e929150611d32565b5090565b5b80821115611d2e5760008155600101611d33565b600067ffffffffffffffff80841115611d6257611d62612405565b604051601f8501601f19908116603f01168101908282118183101715611d8a57611d8a612405565b81604052809350858152868686011115611da357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dd457600080fd5b919050565b80358015158114611dd457600080fd5b600060208284031215611dfb57600080fd5b61133b82611dbd565b60008060408385031215611e1757600080fd5b611e2083611dbd565b9150611e2e60208401611dbd565b90509250929050565b600080600060608486031215611e4c57600080fd5b611e5584611dbd565b9250611e6360208501611dbd565b9150604084013590509250925092565b60008060008060808587031215611e8957600080fd5b611e9285611dbd565b9350611ea060208601611dbd565b925060408501359150606085013567ffffffffffffffff811115611ec357600080fd5b8501601f81018713611ed457600080fd5b611ee387823560208401611d47565b91505092959194509250565b60008060408385031215611f0257600080fd5b611f0b83611dbd565b9150611e2e60208401611dd9565b60008060408385031215611f2c57600080fd5b611f3583611dbd565b946020939093013593505050565b60008060208385031215611f5657600080fd5b823567ffffffffffffffff80821115611f6e57600080fd5b818501915085601f830112611f8257600080fd5b813581811115611f9157600080fd5b8660208260051b8501011115611fa657600080fd5b60209290920196919550909350505050565b600060208284031215611fca57600080fd5b61133b82611dd9565b600060208284031215611fe557600080fd5b813561133b8161241b565b60006020828403121561200257600080fd5b815161133b8161241b565b60006020828403121561201f57600080fd5b813567ffffffffffffffff81111561203657600080fd5b8201601f8101841361204757600080fd5b61162384823560208401611d47565b60006020828403121561206857600080fd5b5035919050565b6000815180845261208781602086016020860161232d565b601f01601f19169290920160200192915050565b6000845160206120ae8285838a0161232d565b8551918401916120c18184848a0161232d565b8554920191600090600181811c90808316806120de57607f831692505b8583108114156120fc57634e487b7160e01b85526022600452602485fd5b80801561211057600181146121215761214e565b60ff1985168852838801955061214e565b60008b81526020902060005b858110156121465781548a82015290840190880161212d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121929083018461206f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121d4578351835292840192918401916001016121b8565b50909695505050505050565b60208152600061133b602083018461206f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122de576122de6123c3565b500190565b6000826122f2576122f26123d9565b500490565b6000816000190483118215151615612311576123116123c3565b500290565b600082821015612328576123286123c3565b500390565b60005b83811015612348578181015183820152602001612330565b8381111561121a5750506000910152565b600181811c9082168061236d57607f821691505b6020821081141561238e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123a8576123a86123c3565b5060010190565b6000826123be576123be6123d9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0957600080fdfea2646970667358221220c435f13a32f6b7d4479495a16bdf51cbf7a0c75b63d7b7875dc17139f27c864064736f6c63430008070033

Deployed Bytecode Sourcemap

44789:5014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46089:697;;;;;;:::i;:::-;;:::i;:::-;;45438:40;;;;;;;;;;-1:-1:-1;45438:40:0;;;;;;;;;;;;;;8427:14:1;;8420:22;8402:41;;8390:2;8375:18;45438:40:0;;;;;;;;25230:305;;;;;;;;;;-1:-1:-1;25230:305:0;;;;;:::i;:::-;;:::i;26175:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27734:221::-;;;;;;;;;;-1:-1:-1;27734:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;27734:221:0;6924:203:1;27257:411:0;;;;;;;;;;-1:-1:-1;27257:411:0;;;;;:::i;:::-;;:::i;49660:140::-;;;;;;;;;;-1:-1:-1;49660:140:0;;;;;:::i;:::-;-1:-1:-1;;;;;49758:36:0;49738:4;49758:36;;;:21;:36;;;;;;;;;49660:140;48277:100;;;;;;;;;;-1:-1:-1;48277:100:0;;;;;:::i;:::-;;:::i;48383:77::-;;;;;;;;;;-1:-1:-1;48383:77:0;;;;;:::i;:::-;;:::i;45994:89::-;;;;;;;;;;;;;:::i;:::-;;;17437:25:1;;;17425:2;17410:18;45994:89:0;17291:177:1;28484:339:0;;;;;;;;;;-1:-1:-1;28484:339:0;;;;;:::i;:::-;;:::i;48579:137::-;;;;;;;;;;;;;:::i;28894:185::-;;;;;;;;;;-1:-1:-1;28894:185:0;;;;;:::i;:::-;;:::i;46962:635::-;;;;;;;;;;-1:-1:-1;46962:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49150:231::-;;;;;;;;;;-1:-1:-1;49150:231:0;;;;;:::i;:::-;;:::i;45132:33::-;;;;;;;;;;;;;:::i;45408:25::-;;;;;;;;;;-1:-1:-1;45408:25:0;;;;;;;;45099:28;;;;;;;;;;;;;:::i;25869:239::-;;;;;;;;;;-1:-1:-1;25869:239:0;;;;;:::i;:::-;;:::i;49506:148::-;;;;;;;;;;-1:-1:-1;49506:148:0;;;;;:::i;:::-;-1:-1:-1;;;;;49609:39:0;49589:4;49609:39;;;:24;:39;;;;;;;;;49506:148;45000:54;;;;;;;;;;-1:-1:-1;45000:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25599:208;;;;;;;;;;-1:-1:-1;25599:208:0;;;;;:::i;:::-;;:::i;6224:103::-;;;;;;;;;;;;;:::i;48171:100::-;;;;;;;;;;-1:-1:-1;48171:100:0;;;;;:::i;:::-;;:::i;45351:50::-;;;;;;;;;;;;;;;;5573:87;;;;;;;;;;-1:-1:-1;5646:6:0;;-1:-1:-1;;;;;5646:6:0;5573:87;;45260:38;;;;;;;;;;;;;;;;26344:104;;;;;;;;;;;;;:::i;45174:44::-;;;;;;;;;;;;;;;;28027:155;;;;;;;;;;-1:-1:-1;28027:155:0;;;;;:::i;:::-;;:::i;45303:43::-;;;;;;;;;;;;;;;;49387:113;;;;;;;;;;-1:-1:-1;49470:24:0;;49387:113;;44938:57;;;;;;;;;;-1:-1:-1;44938:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45485:29;;;;;;;;;;-1:-1:-1;45485:29:0;;;;;;;-1:-1:-1;;;;;45485:29:0;;;48035:130;;;;;;;;;;-1:-1:-1;48035:130:0;;;;;:::i;:::-;;:::i;29150:328::-;;;;;;;;;;-1:-1:-1;29150:328:0;;;;;:::i;:::-;;:::i;48466:107::-;;;;;;;;;;-1:-1:-1;48466:107:0;;;;;:::i;:::-;;:::i;47603:426::-;;;;;;;;;;-1:-1:-1;47603:426:0;;;;;:::i;:::-;;:::i;45223:32::-;;;;;;;;;;;;;;;;28253:164;;;;;;;;;;-1:-1:-1;28253:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28374:25:0;;;28350:4;28374:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28253:164;6482:201;;;;;;;;;;-1:-1:-1;6482:201:0;;;;;:::i;:::-;;:::i;48832:312::-;;;;;;;;;;-1:-1:-1;48832:312:0;;;;;:::i;:::-;;:::i;46089:697::-;46169:11;45809:1;45795:11;:15;:52;;;;;45829:18;;45814:11;:33;;45795:52;45787:105;;;;-1:-1:-1;;;45787:105:0;;17084:2:1;45787:105:0;;;17066:21:1;17123:2;17103:18;;;17096:30;17162:34;17142:18;;;17135:62;-1:-1:-1;;;17213:18:1;;;17206:38;17261:19;;45787:105:0;;;;;;;;;45941:9;;45926:11;45907:16;:6;993:14;;901:114;45907:16;:30;;;;:::i;:::-;:43;;45899:75;;;;-1:-1:-1;;;45899:75:0;;16385:2:1;45899:75:0;;;16367:21:1;16424:2;16404:18;;;16397:30;-1:-1:-1;;;16443:18:1;;;16436:49;16502:18;;45899:75:0;16183:343:1;45899:75:0;46198:6:::1;::::0;::::1;;46197:7;46189:51;;;::::0;-1:-1:-1;;;46189:51:0;;13201:2:1;46189:51:0::1;::::0;::::1;13183:21:1::0;13240:2;13220:18;;;13213:30;13279:33;13259:18;;;13252:61;13330:18;;46189:51:0::1;12999:355:1::0;46189:51:0::1;46256:21;::::0;::::1;::::0;::::1;;;46255:22;46247:70;;;::::0;-1:-1:-1;;;46247:70:0;;15981:2:1;46247:70:0::1;::::0;::::1;15963:21:1::0;16020:2;16000:18;;;15993:30;16059:34;16039:18;;;16032:62;-1:-1:-1;;;16110:18:1;;;16103:33;16153:19;;46247:70:0::1;15779:399:1::0;46247:70:0::1;46367:11;46345:19;;:33;;;;:::i;:::-;46332:9;:46;;46324:81;;;::::0;-1:-1:-1;;;46324:81:0;;16733:2:1;46324:81:0::1;::::0;::::1;16715:21:1::0;16772:2;16752:18;;;16745:30;-1:-1:-1;;;16791:18:1;;;16784:52;16853:18;;46324:81:0::1;16531:346:1::0;46324:81:0::1;46462:9;46457:277;46481:11;46477:1;:15;46457:277;;;46545:27;;46518:24;;:54;46510:63;;;::::0;::::1;;46584:18;:6;1112:19:::0;;1130:1;1112:19;;;1023:127;46584:18:::1;46613:47;46623:10;46635:24;;46613:9;:47::i;:::-;46698:24;::::0;:28:::1;::::0;46725:1:::1;46698:28;:::i;:::-;46671:24;:55:::0;46494:3;::::1;::::0;::::1;:::i;:::-;;;;46457:277;;;-1:-1:-1::0;;46762:10:0::1;46740:33;::::0;;;:21:::1;:33;::::0;;;;:40;;-1:-1:-1;;46740:40:0::1;46776:4;46740:40;::::0;;-1:-1:-1;46089:697:0:o;25230:305::-;25332:4;-1:-1:-1;;;;;;25369:40:0;;-1:-1:-1;;;25369:40:0;;:105;;-1:-1:-1;;;;;;;25426:48:0;;-1:-1:-1;;;25426:48:0;25369:105;:158;;;-1:-1:-1;;;;;;;;;;18114:40:0;;;25491:36;25349:178;25230:305;-1:-1:-1;;25230:305:0:o;26175:100::-;26229:13;26262:5;26255:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26175:100;:::o;27734:221::-;27810:7;31077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31077:16:0;27830:73;;;;-1:-1:-1;;;27830:73:0;;13561:2:1;27830:73:0;;;13543:21:1;13600:2;13580:18;;;13573:30;13639:34;13619:18;;;13612:62;-1:-1:-1;;;13690:18:1;;;13683:42;13742:19;;27830:73:0;13359:408:1;27830:73:0;-1:-1:-1;27923:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27923:24:0;;27734:221::o;27257:411::-;27338:13;27354:23;27369:7;27354:14;:23::i;:::-;27338:39;;27402:5;-1:-1:-1;;;;;27396:11:0;:2;-1:-1:-1;;;;;27396:11:0;;;27388:57;;;;-1:-1:-1;;;27388:57:0;;15161:2:1;27388:57:0;;;15143:21:1;15200:2;15180:18;;;15173:30;15239:34;15219:18;;;15212:62;-1:-1:-1;;;15290:18:1;;;15283:31;15331:19;;27388:57:0;14959:397:1;27388:57:0;4377:10;-1:-1:-1;;;;;27480:21:0;;;;:62;;-1:-1:-1;27505:37:0;27522:5;4377:10;28253:164;:::i;27505:37::-;27458:168;;;;-1:-1:-1;;;27458:168:0;;11594:2:1;27458:168:0;;;11576:21:1;11633:2;11613:18;;;11606:30;11672:34;11652:18;;;11645:62;11743:26;11723:18;;;11716:54;11787:19;;27458:168:0;11392:420:1;27458:168:0;27639:21;27648:2;27652:7;27639:8;:21::i;:::-;27327:341;27257:411;;:::o;48277:100::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;48349:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48277:100:::0;:::o;48383:77::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;48439:6:::1;:15:::0;;-1:-1:-1;;48439:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48383:77::o;45994:89::-;46038:7;46061:16;:6;993:14;;901:114;46061:16;46054:23;;45994:89;:::o;28484:339::-;28679:41;4377:10;28712:7;28679:18;:41::i;:::-;28671:103;;;;-1:-1:-1;;;28671:103:0;;;;;;;:::i;:::-;28787:28;28797:4;28803:2;28807:7;28787:9;:28::i;48579:137::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;48624:7:::1;48645;5646:6:::0;;-1:-1:-1;;;;;5646:6:0;;5573:87;48645:7:::1;-1:-1:-1::0;;;;;48637:21:0::1;48666;48637:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48623:69;;;48707:2;48699:11;;;::::0;::::1;;48616:100;48579:137::o:0;28894:185::-;29032:39;29049:4;29055:2;29059:7;29032:39;;;;;;;;;;;;:16;:39::i;46962:635::-;47037:16;47065:23;47091:17;47101:6;47091:9;:17::i;:::-;47065:43;;47115:30;47162:15;47148:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47148:30:0;-1:-1:-1;47115:63:0;-1:-1:-1;47210:1:0;47185:22;47254:309;47279:15;47261;:33;:64;;;;;47316:9;;47298:14;:27;;47261:64;47254:309;;;47336:25;47364:23;47372:14;47364:7;:23::i;:::-;47336:51;;47423:6;-1:-1:-1;;;;;47402:27:0;:17;-1:-1:-1;;;;;47402:27:0;;47398:131;;;47475:14;47442:13;47456:15;47442:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47502:17;;;;:::i;:::-;;;;47398:131;47539:16;;;;:::i;:::-;;;;47327:236;47254:309;;;-1:-1:-1;47578:13:0;;46962:635;-1:-1:-1;;;;46962:635:0:o;49150:231::-;49265:14;;;;;-1:-1:-1;;;;;49265:14:0;49251:10;:28;49243:71;;;;-1:-1:-1;;;49243:71:0;;11235:2:1;49243:71:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:32;11293:18;;;11286:60;11363:18;;49243:71:0;11033:354:1;49243:71:0;-1:-1:-1;;;;;49323:42:0;;;;;;;;:24;:42;;;;;:52;;-1:-1:-1;;49323:52:0;;;;;;;;;;49150:231::o;45132:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45099:28::-;;;;;;;:::i;25869:239::-;25941:7;25977:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25977:16:0;26012:19;26004:73;;;;-1:-1:-1;;;26004:73:0;;12430:2:1;26004:73:0;;;12412:21:1;12469:2;12449:18;;;12442:30;12508:34;12488:18;;;12481:62;-1:-1:-1;;;12559:18:1;;;12552:39;12608:19;;26004:73:0;12228:405:1;25599:208:0;25671:7;-1:-1:-1;;;;;25699:19:0;;25691:74;;;;-1:-1:-1;;;25691:74:0;;12019:2:1;25691:74:0;;;12001:21:1;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;-1:-1:-1;;;12148:18:1;;;12141:40;12198:19;;25691:74:0;11817:406:1;25691:74:0;-1:-1:-1;;;;;;25783:16:0;;;;;:9;:16;;;;;;;25599:208::o;6224:103::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;6289:30:::1;6316:1;6289:18;:30::i;:::-;6224:103::o:0;48171:100::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;48243:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26344:104::-:0;26400:13;26433:7;26426:14;;;;;:::i;28027:155::-;28122:52;4377:10;28155:8;28165;28122:18;:52::i;48035:130::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;48119:18:::1;:40:::0;48035:130::o;29150:328::-;29325:41;4377:10;29358:7;29325:18;:41::i;:::-;29317:103;;;;-1:-1:-1;;;29317:103:0;;;;;;;:::i;:::-;29431:39;29445:4;29451:2;29455:7;29464:5;29431:13;:39::i;:::-;29150:328;;;;:::o;48466:107::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;48537:21:::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;48537:30:0;;::::1;::::0;;;::::1;::::0;;48466:107::o;47603:426::-;31053:4;31077:16;;;:7;:16;;;;;;47702:13;;-1:-1:-1;;;;;31077:16:0;47727:98;;;;-1:-1:-1;;;47727:98:0;;14745:2:1;47727:98:0;;;14727:21:1;14784:2;14764:18;;;14757:30;14823:34;14803:18;;;14796:62;-1:-1:-1;;;14874:18:1;;;14867:45;14929:19;;47727:98:0;14543:411:1;47727:98:0;47838:28;47869:10;:8;:10::i;:::-;47838:41;;47924:1;47899:14;47893:28;:32;:130;;;;;;;;;;;;;;;;;47961:14;47977:19;:8;:17;:19::i;:::-;47998:9;47944:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47893:130;47886:137;47603:426;-1:-1:-1;;;47603:426:0:o;6482:201::-;5646:6;;-1:-1:-1;;;;;5646:6:0;4377:10;5793:23;5785:68;;;;-1:-1:-1;;;5785:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6571:22:0;::::1;6563:73;;;::::0;-1:-1:-1;;;6563:73:0;;9299:2:1;6563:73:0::1;::::0;::::1;9281:21:1::0;9338:2;9318:18;;;9311:30;9377:34;9357:18;;;9350:62;-1:-1:-1;;;9428:18:1;;;9421:36;9474:19;;6563:73:0::1;9097:402:1::0;6563:73:0::1;6647:28;6666:8;6647:18;:28::i;48832:312::-:0;48952:14;;;;;-1:-1:-1;;;;;48952:14:0;48938:10;:28;48930:71;;;;-1:-1:-1;;;48930:71:0;;11235:2:1;48930:71:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:32;11293:18;;;11286:60;11363:18;;48930:71:0;11033:354:1;48930:71:0;49015:9;49010:129;49030:28;;;49010:129;;;49125:4;49076:24;:46;49101:17;;49119:1;49101:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49076:46:0;;;;;;;;;;;;-1:-1:-1;49076:46:0;:53;;-1:-1:-1;;49076:53:0;;;;;;;;;;49060:3;;;;:::i;:::-;;;;49010:129;;31972:110;32048:26;32058:2;32062:7;32048:26;;;;;;;;;;;;:9;:26::i;34970:174::-;35045:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35045:29:0;-1:-1:-1;;;;;35045:29:0;;;;;;;;:24;;35099:23;35045:24;35099:14;:23::i;:::-;-1:-1:-1;;;;;35090:46:0;;;;;;;;;;;34970:174;;:::o;31282:348::-;31375:4;31077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31077:16:0;31392:73;;;;-1:-1:-1;;;31392:73:0;;10822:2:1;31392:73:0;;;10804:21:1;10861:2;10841:18;;;10834:30;10900:34;10880:18;;;10873:62;-1:-1:-1;;;10951:18:1;;;10944:42;11003:19;;31392:73:0;10620:408:1;31392:73:0;31476:13;31492:23;31507:7;31492:14;:23::i;:::-;31476:39;;31545:5;-1:-1:-1;;;;;31534:16:0;:7;-1:-1:-1;;;;;31534:16:0;;:51;;;;31578:7;-1:-1:-1;;;;;31554:31:0;:20;31566:7;31554:11;:20::i;:::-;-1:-1:-1;;;;;31554:31:0;;31534:51;:87;;;-1:-1:-1;;;;;;28374:25:0;;;28350:4;28374:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31589:32;31526:96;31282:348;-1:-1:-1;;;;31282:348:0:o;34274:578::-;34433:4;-1:-1:-1;;;;;34406:31:0;:23;34421:7;34406:14;:23::i;:::-;-1:-1:-1;;;;;34406:31:0;;34398:85;;;;-1:-1:-1;;;34398:85:0;;14335:2:1;34398:85:0;;;14317:21:1;14374:2;14354:18;;;14347:30;14413:34;14393:18;;;14386:62;-1:-1:-1;;;14464:18:1;;;14457:39;14513:19;;34398:85:0;14133:405:1;34398:85:0;-1:-1:-1;;;;;34502:16:0;;34494:65;;;;-1:-1:-1;;;34494:65:0;;10063:2:1;34494:65:0;;;10045:21:1;10102:2;10082:18;;;10075:30;10141:34;10121:18;;;10114:62;-1:-1:-1;;;10192:18:1;;;10185:34;10236:19;;34494:65:0;9861:400:1;34494:65:0;34676:29;34693:1;34697:7;34676:8;:29::i;:::-;-1:-1:-1;;;;;34718:15:0;;;;;;:9;:15;;;;;:20;;34737:1;;34718:15;:20;;34737:1;;34718:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34749:13:0;;;;;;:9;:13;;;;;:18;;34766:1;;34749:13;:18;;34766:1;;34749:18;:::i;:::-;;;;-1:-1:-1;;34778:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34778:21:0;-1:-1:-1;;;;;34778:21:0;;;;;;;;;34817:27;;34778:16;;34817:27;;;;;;;34274:578;;;:::o;6843:191::-;6936:6;;;-1:-1:-1;;;;;6953:17:0;;;-1:-1:-1;;;;;;6953:17:0;;;;;;;6986:40;;6936:6;;;6953:17;6936:6;;6986:40;;6917:16;;6986:40;6906:128;6843:191;:::o;35286:315::-;35441:8;-1:-1:-1;;;;;35432:17:0;:5;-1:-1:-1;;;;;35432:17:0;;;35424:55;;;;-1:-1:-1;;;35424:55:0;;10468:2:1;35424:55:0;;;10450:21:1;10507:2;10487:18;;;10480:30;10546:27;10526:18;;;10519:55;10591:18;;35424:55:0;10266:349:1;35424:55:0;-1:-1:-1;;;;;35490:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35490:46:0;;;;;;;;;;35552:41;;8402::1;;;35552::0;;8375:18:1;35552:41:0;;;;;;;35286:315;;;:::o;30360:::-;30517:28;30527:4;30533:2;30537:7;30517:9;:28::i;:::-;30564:48;30587:4;30593:2;30597:7;30606:5;30564:22;:48::i;:::-;30556:111;;;;-1:-1:-1;;;30556:111:0;;;;;;;:::i;48722:104::-;48782:13;48811:9;48804:16;;;;;:::i;1859:723::-;1915:13;2136:10;2132:53;;-1:-1:-1;;2163:10:0;;;;;;;;;;;;-1:-1:-1;;;2163:10:0;;;;;1859:723::o;2132:53::-;2210:5;2195:12;2251:78;2258:9;;2251:78;;2284:8;;;;:::i;:::-;;-1:-1:-1;2307:10:0;;-1:-1:-1;2315:2:0;2307:10;;:::i;:::-;;;2251:78;;;2339:19;2371:6;2361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2361:17:0;;2339:39;;2389:154;2396:10;;2389:154;;2423:11;2433:1;2423:11;;:::i;:::-;;-1:-1:-1;2492:10:0;2500:2;2492:5;:10;:::i;:::-;2479:24;;:2;:24;:::i;:::-;2466:39;;2449:6;2456;2449:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2449:56:0;;;;;;;;-1:-1:-1;2520:11:0;2529:2;2520:11;;:::i;:::-;;;2389:154;;32309:321;32439:18;32445:2;32449:7;32439:5;:18::i;:::-;32490:54;32521:1;32525:2;32529:7;32538:5;32490:22;:54::i;:::-;32468:154;;;;-1:-1:-1;;;32468:154:0;;;;;;;:::i;36166:799::-;36321:4;-1:-1:-1;;;;;36342:13:0;;8184:20;8232:8;36338:620;;36378:72;;-1:-1:-1;;;36378:72:0;;-1:-1:-1;;;;;36378:36:0;;;;;:72;;4377:10;;36429:4;;36435:7;;36444:5;;36378:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36378:72:0;;;;;;;;-1:-1:-1;;36378:72:0;;;;;;;;;;;;:::i;:::-;;;36374:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36620:13:0;;36616:272;;36663:60;;-1:-1:-1;;;36663:60:0;;;;;;;:::i;36616:272::-;36838:6;36832:13;36823:6;36819:2;36815:15;36808:38;36374:529;-1:-1:-1;;;;;;36501:51:0;-1:-1:-1;;;36501:51:0;;-1:-1:-1;36494:58:0;;36338:620;-1:-1:-1;36942:4:0;36166:799;;;;;;:::o;32966:382::-;-1:-1:-1;;;;;33046:16:0;;33038:61;;;;-1:-1:-1;;;33038:61:0;;12840:2:1;33038:61:0;;;12822:21:1;;;12859:18;;;12852:30;12918:34;12898:18;;;12891:62;12970:18;;33038:61:0;12638:356:1;33038:61:0;31053:4;31077:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31077:16:0;:30;33110:58;;;;-1:-1:-1;;;33110:58:0;;9706:2:1;33110:58:0;;;9688:21:1;9745:2;9725:18;;;9718:30;9784;9764:18;;;9757:58;9832:18;;33110:58:0;9504:352:1;33110:58:0;-1:-1:-1;;;;;33239:13:0;;;;;;:9;:13;;;;;:18;;33256:1;;33239:13;:18;;33256:1;;33239:18;:::i;:::-;;;;-1:-1:-1;;33268:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33268:21:0;-1:-1:-1;;;;;33268:21:0;;;;;;;;33307:33;;33268:16;;;33307:33;;33268:16;;33307:33;32966:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;17546:1;17539:14;;;17583:4;17570:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7625:632::-;7796:2;7848:21;;;7918:13;;7821:18;;;7940:22;;;7767:4;;7796:2;8019:15;;;;7993:2;7978:18;;;7767:4;8062:169;8076:6;8073:1;8070:13;8062:169;;;8137:13;;8125:26;;8206:15;;;;8171:12;;;;8098:1;8091:9;8062:169;;;-1:-1:-1;8248:3:1;;7625:632;-1:-1:-1;;;;;;7625:632:1:o;8454:219::-;8603:2;8592:9;8585:21;8566:4;8623:44;8663:2;8652:9;8648:18;8640:6;8623:44;:::i;8678:414::-;8880:2;8862:21;;;8919:2;8899:18;;;8892:30;8958:34;8953:2;8938:18;;8931:62;-1:-1:-1;;;9024:2:1;9009:18;;9002:48;9082:3;9067:19;;8678:414::o;13772:356::-;13974:2;13956:21;;;13993:18;;;13986:30;14052:34;14047:2;14032:18;;14025:62;14119:2;14104:18;;13772:356::o;15361:413::-;15563:2;15545:21;;;15602:2;15582:18;;;15575:30;15641:34;15636:2;15621:18;;15614:62;-1:-1:-1;;;15707:2:1;15692:18;;15685:47;15764:3;15749:19;;15361:413::o;17599:128::-;17639:3;17670:1;17666:6;17663:1;17660:13;17657:39;;;17676:18;;:::i;:::-;-1:-1:-1;17712:9:1;;17599:128::o;17732:120::-;17772:1;17798;17788:35;;17803:18;;:::i;:::-;-1:-1:-1;17837:9:1;;17732:120::o;17857:168::-;17897:7;17963:1;17959;17955:6;17951:14;17948:1;17945:21;17940:1;17933:9;17926:17;17922:45;17919:71;;;17970:18;;:::i;:::-;-1:-1:-1;18010:9:1;;17857:168::o;18030:125::-;18070:4;18098:1;18095;18092:8;18089:34;;;18103:18;;:::i;:::-;-1:-1:-1;18140:9:1;;18030:125::o;18160:258::-;18232:1;18242:113;18256:6;18253:1;18250:13;18242:113;;;18332:11;;;18326:18;18313:11;;;18306:39;18278:2;18271:10;18242:113;;;18373:6;18370:1;18367:13;18364:48;;;-1:-1:-1;;18408:1:1;18390:16;;18383:27;18160:258::o;18423:380::-;18502:1;18498:12;;;;18545;;;18566:61;;18620:4;18612:6;18608:17;18598:27;;18566:61;18673:2;18665:6;18662:14;18642:18;18639:38;18636:161;;;18719:10;18714:3;18710:20;18707:1;18700:31;18754:4;18751:1;18744:15;18782:4;18779:1;18772:15;18636:161;;18423:380;;;:::o;18808:135::-;18847:3;-1:-1:-1;;18868:17:1;;18865:43;;;18888:18;;:::i;:::-;-1:-1:-1;18935:1:1;18924:13;;18808:135::o;18948:112::-;18980:1;19006;18996:35;;19011:18;;:::i;:::-;-1:-1:-1;19045:9:1;;18948:112::o;19065:127::-;19126:10;19121:3;19117:20;19114:1;19107:31;19157:4;19154:1;19147:15;19181:4;19178:1;19171:15;19197:127;19258:10;19253:3;19249:20;19246:1;19239:31;19289:4;19286:1;19279:15;19313:4;19310:1;19303:15;19329:127;19390:10;19385:3;19381:20;19378:1;19371:31;19421:4;19418:1;19411:15;19445:4;19442:1;19435:15;19461:127;19522:10;19517:3;19513:20;19510:1;19503:31;19553:4;19550:1;19543:15;19577:4;19574:1;19567:15;19593:131;-1:-1:-1;;;;;;19667:32:1;;19657:43;;19647:71;;19714:1;19711;19704:12

Swarm Source

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