ETH Price: $3,364.28 (-1.53%)
Gas: 8 Gwei

Token

Wanderers (WANDERER)
 

Overview

Max Total Supply

8,887 WANDERER

Holders

3,948

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WANDERER
0x08123e6957E76e3D990aB74334603636d310cA76
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Suit up, strap in, soar off. Your galactic odyssey awaits. Claim your planets now: https://planetpass.wanderers.ai/ ⠀👾⠀ http://wanderers.ai ⠀👽⠀ http://discord.gg/wanderers

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Wanderer

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-12
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



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/[email protected]



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/token/ERC721/extensions/[email protected]



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/utils/[email protected]



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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/utils/[email protected]



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/utils/[email protected]



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/introspection/[email protected]



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/[email protected]



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



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 contracts/Wanderer.sol


pragma solidity ^0.8.2;





contract Wanderer is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    // Where funds should be sent to
    address payable public fundsTo;

    // Maximum supply of the NFT
    uint256 public maxSupply;

    // Maximum mints per transaction
    uint256 public maxPerTx;

    // Is sale on?
    bool public sale;

    // Sale price
    uint256 public pricePer;

    constructor(address payable fundsTo_, uint256 maxSupply_, uint256 maxPerTx_, uint256 pricePer_) ERC721("Wanderers", "WANDERER") {
        fundsTo = fundsTo_;
        maxSupply = maxSupply_;
        maxPerTx = maxPerTx_;
        sale = false;
        pricePer = pricePer_;
    }

    function updateFundsTo(address payable newFundsTo) public onlyOwner {
        fundsTo = newFundsTo;
    }

    function enableSale() public onlyOwner {
        sale = true;
    }

    function claimBalance() public onlyOwner {
        (bool success, ) = fundsTo.call{value: address(this).balance}("");
        require(success, "transfer failed");
    }

    function safeMint(address to, uint256 quantity) payable public {
        // Sale must be enabled
        require(sale, "Sale disabled");
        // Cannot mint 0
        require(quantity != 0, "Requested quantity cannot be zero");
        // Cannot mint more than maximum
        require(quantity <= maxPerTx, "Requested quantity more than maximum");
        // Transaction must have at least quantity * price (any more is considered a tip)
        require(quantity * pricePer <= msg.value, "Not enough ether sent");
        // Mint operation cannot lead to more than max supply
        require(super.totalSupply() + quantity <= maxSupply, "Total supply will exceed limit");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(to, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
    }

    function preMint(address to, uint256 quantity) public onlyOwner {
        // Sale must NOT be enabled
        require(!sale, "Sale already in progress");
        require(quantity != 0, "Requested quantity cannot be zero");
        require(super.totalSupply() + quantity <= maxSupply, "Total supply will exceed limit");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(to, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
    }

    function _baseURI() internal pure override returns (string memory) {
        return "ipfs://QmNnWrwfAbsnWvyTgGpaYLdh1oAkBR5B74MjwZh8stTL97/";
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"fundsTo_","type":"address"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"maxPerTx_","type":"uint256"},{"internalType":"uint256","name":"pricePer_","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundsTo","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address payable","name":"newFundsTo","type":"address"}],"name":"updateFundsTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200289b3803806200289b8339810160408190526200003491620001f1565b604080518082018252600981526857616e64657265727360b81b6020808301918252835180850190945260088452672ba0a72222a922a960c11b90840152815191929162000085916000916200014b565b5080516200009b9060019060208401906200014b565b505050620000b8620000b2620000f560201b60201c565b620000f9565b600c80546001600160a01b0319166001600160a01b039590951694909417909355600d91909155600e55600f805460ff191690556010556200027b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000159906200023e565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600080600080608085870312156200020857600080fd5b84516001600160a01b03811681146200022057600080fd5b60208601516040870151606090970151919890975090945092505050565b600181811c908216806200025357607f821691505b602082108114156200027557634e487b7160e01b600052602260045260246000fd5b50919050565b612610806200028b6000396000f3fe6080604052600436106101cd5760003560e01c80636ad1fe02116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104f1578063ecc1da271461053a578063f2fde38b1461055a578063f968adbe1461057a57600080fd5b8063b88d4fde14610486578063c683d8e4146104a6578063c87b56dd146104bb578063d5abeb01146104db57600080fd5b80638da5cb5b116100d15780638da5cb5b1461042057806395d89b411461043e578063a144819414610453578063a22cb4651461046657600080fd5b80636ad1fe02146103d157806370a08231146103eb578063715018a61461040b57600080fd5b8063290c292d1161016f57806342842e0e1161013e57806342842e0e1461035157806342966c68146103715780634f6ccce7146103915780636352211e146103b157600080fd5b8063290c292d146102dc5780632f745c59146102fc57806330136e381461031c57806330509bca1461033c57600080fd5b8063081812fc116101ab578063081812fc1461024d578063095ea7b31461028557806318160ddd146102a757806323b872dd146102bc57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063070a8a8514610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004612316565b610590565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105a1565b6040516101fe9190612400565b34801561023557600080fd5b5061023f60105481565b6040519081526020016101fe565b34801561025957600080fd5b5061026d610268366004612350565b610633565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a03660046122ea565b6106cd565b005b3480156102b357600080fd5b5060085461023f565b3480156102c857600080fd5b506102a56102d7366004612196565b6107ff565b3480156102e857600080fd5b506102a56102f73660046122ea565b610887565b34801561030857600080fd5b5061023f6103173660046122ea565b610a2d565b34801561032857600080fd5b50600c5461026d906001600160a01b031681565b34801561034857600080fd5b506102a5610ad5565b34801561035d57600080fd5b506102a561036c366004612196565b610bd5565b34801561037d57600080fd5b506102a561038c366004612350565b610bf0565b34801561039d57600080fd5b5061023f6103ac366004612350565b610c74565b3480156103bd57600080fd5b5061026d6103cc366004612350565b610d18565b3480156103dd57600080fd5b50600f546101f29060ff1681565b3480156103f757600080fd5b5061023f610406366004612140565b610da3565b34801561041757600080fd5b506102a5610e3d565b34801561042c57600080fd5b50600a546001600160a01b031661026d565b34801561044a57600080fd5b5061021c610ea3565b6102a56104613660046122ea565b610eb2565b34801561047257600080fd5b506102a56104813660046122b7565b6110cc565b34801561049257600080fd5b506102a56104a13660046121d7565b611191565b3480156104b257600080fd5b506102a561121f565b3480156104c757600080fd5b5061021c6104d6366004612350565b611288565b3480156104e757600080fd5b5061023f600d5481565b3480156104fd57600080fd5b506101f261050c36600461215d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054657600080fd5b506102a5610555366004612140565b611371565b34801561056657600080fd5b506102a5610575366004612140565b6113ed565b34801561058657600080fd5b5061023f600e5481565b600061059b826114cc565b92915050565b6060600080546105b0906124a1565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc906124a1565b80156106295780601f106105fe57610100808354040283529160200191610629565b820191906000526020600020905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106d882610d18565b9050806001600160a01b0316836001600160a01b031614156107625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106a8565b336001600160a01b038216148061077e575061077e813361050c565b6107f05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106a8565b6107fa838361150a565b505050565b61080a335b82611578565b61087c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106a8565b6107fa83838361166f565b600a546001600160a01b031633146108e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600f5460ff16156109345760405162461bcd60e51b815260206004820152601860248201527f53616c6520616c726561647920696e2070726f6772657373000000000000000060448201526064016106a8565b8061098b5760405162461bcd60e51b815260206004820152602160248201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726044820152606f60f81b60648201526084016106a8565b600d548161099860085490565b6109a29190612413565b11156109f05760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d6974000060448201526064016106a8565b60005b818110156107fa57610a0d83610a08600b5490565b611847565b610a1b600b80546001019055565b80610a25816124dc565b9150506109f3565b6000610a3883610da3565b8210610aac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016106a8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600c546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610b7c576040519150601f19603f3d011682016040523d82523d6000602084013e610b81565b606091505b5050905080610bd25760405162461bcd60e51b815260206004820152600f60248201527f7472616e73666572206661696c6564000000000000000000000000000000000060448201526064016106a8565b50565b6107fa83838360405180602001604052806000815250611191565b610bf933610804565b610c6b5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016106a8565b610bd281611865565b6000610c7f60085490565b8210610cf35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016106a8565b60088281548110610d0657610d0661254d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061059b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106a8565b60006001600160a01b038216610e215760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106a8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b610ea1600061190c565b565b6060600180546105b0906124a1565b600f5460ff16610f045760405162461bcd60e51b815260206004820152600d60248201527f53616c652064697361626c65640000000000000000000000000000000000000060448201526064016106a8565b80610f5b5760405162461bcd60e51b815260206004820152602160248201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726044820152606f60f81b60648201526084016106a8565b600e54811115610fd25760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d617860448201527f696d756d0000000000000000000000000000000000000000000000000000000060648201526084016106a8565b3460105482610fe1919061243f565b111561102f5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e74000000000000000000000060448201526064016106a8565b600d548161103c60085490565b6110469190612413565b11156110945760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d6974000060448201526064016106a8565b60005b818110156107fa576110ac83610a08600b5490565b6110ba600b80546001019055565b806110c4816124dc565b915050611097565b6001600160a01b0382163314156111255760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119b3383611578565b61120d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106a8565b6112198484848461195e565b50505050565b600a546001600160a01b031633146112795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600f805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166113155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106a8565b600061131f6119dc565b9050600081511161133f576040518060200160405280600081525061136a565b80611349846119fc565b60405160200161135a929190612395565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b6001600160a01b0381166114c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106a8565b610bd28161190c565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061059b575061059b82611b2e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153f82610d18565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a8565b60006115fc83610d18565b9050806001600160a01b0316846001600160a01b031614806116375750836001600160a01b031661162c84610633565b6001600160a01b0316145b8061166757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661168282610d18565b6001600160a01b0316146116fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106a8565b6001600160a01b0382166117795760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106a8565b611784838383611bc9565b61178f60008261150a565b6001600160a01b03831660009081526003602052604081208054600192906117b890849061245e565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e6908490612413565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611861828260405180602001604052806000815250611bd4565b5050565b600061187082610d18565b905061187e81600084611bc9565b61188960008361150a565b6001600160a01b03811660009081526003602052604081208054600192906118b290849061245e565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61196984848461166f565b61197584848484611c52565b6112195760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106a8565b60606040518060600160405280603681526020016125a560369139905090565b606081611a3c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a665780611a50816124dc565b9150611a5f9050600a8361242b565b9150611a40565b60008167ffffffffffffffff811115611a8157611a81612563565b6040519080825280601f01601f191660200182016040528015611aab576020820181803683370190505b5090505b841561166757611ac060018361245e565b9150611acd600a866124f7565b611ad8906030612413565b60f81b818381518110611aed57611aed61254d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b27600a8661242b565b9450611aaf565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b9157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061059b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461059b565b6107fa838383611daa565b611bde8383611e62565b611beb6000848484611c52565b6107fa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106a8565b60006001600160a01b0384163b15611d9f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c969033908990889088906004016123c4565b602060405180830381600087803b158015611cb057600080fd5b505af1925050508015611ce0575060408051601f3d908101601f19168201909252611cdd91810190612333565b60015b611d85573d808015611d0e576040519150601f19603f3d011682016040523d82523d6000602084013e611d13565b606091505b508051611d7d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611667565b506001949350505050565b6001600160a01b038316611e0557611e0081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e28565b816001600160a01b0316836001600160a01b031614611e2857611e288382611fb0565b6001600160a01b038216611e3f576107fa8161204d565b826001600160a01b0316826001600160a01b0316146107fa576107fa82826120fc565b6001600160a01b038216611eb85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a8565b6000818152600260205260409020546001600160a01b031615611f1d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a8565b611f2960008383611bc9565b6001600160a01b0382166000908152600360205260408120805460019290611f52908490612413565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611fbd84610da3565b611fc7919061245e565b60008381526007602052604090205490915080821461201a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205f9060019061245e565b600083815260096020526040812054600880549394509092849081106120875761208761254d565b9060005260206000200154905080600883815481106120a8576120a861254d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120e0576120e0612537565b6001900381819060005260206000200160009055905550505050565b600061210783610da3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561215257600080fd5b813561136a81612579565b6000806040838503121561217057600080fd5b823561217b81612579565b9150602083013561218b81612579565b809150509250929050565b6000806000606084860312156121ab57600080fd5b83356121b681612579565b925060208401356121c681612579565b929592945050506040919091013590565b600080600080608085870312156121ed57600080fd5b84356121f881612579565b9350602085013561220881612579565b925060408501359150606085013567ffffffffffffffff8082111561222c57600080fd5b818701915087601f83011261224057600080fd5b81358181111561225257612252612563565b604051601f8201601f19908116603f0116810190838211818310171561227a5761227a612563565b816040528281528a602084870101111561229357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156122ca57600080fd5b82356122d581612579565b91506020830135801515811461218b57600080fd5b600080604083850312156122fd57600080fd5b823561230881612579565b946020939093013593505050565b60006020828403121561232857600080fd5b813561136a8161258e565b60006020828403121561234557600080fd5b815161136a8161258e565b60006020828403121561236257600080fd5b5035919050565b60008151808452612381816020860160208601612475565b601f01601f19169290920160200192915050565b600083516123a7818460208801612475565b8351908301906123bb818360208801612475565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123f66080830184612369565b9695505050505050565b60208152600061136a6020830184612369565b600082198211156124265761242661250b565b500190565b60008261243a5761243a612521565b500490565b60008160001904831182151516156124595761245961250b565b500290565b6000828210156124705761247061250b565b500390565b60005b83811015612490578181015183820152602001612478565b838111156112195750506000910152565b600181811c908216806124b557607f821691505b602082108114156124d657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124f0576124f061250b565b5060010190565b60008261250657612506612521565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610bd257600080fd5b6001600160e01b031981168114610bd257600080fdfe697066733a2f2f516d4e6e577277664162736e5776795467477061594c6468316f416b4252354237344d6a775a68387374544c39372fa2646970667358221220201afbaf370b45a9c6459bc7721c98493e1df962a89c41489060d6c92fbc1a0c64736f6c634300080600330000000000000000000000002780be80ba18d0c27540b9cd75e3c49a58c3322900000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000011c37937e080000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636ad1fe02116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104f1578063ecc1da271461053a578063f2fde38b1461055a578063f968adbe1461057a57600080fd5b8063b88d4fde14610486578063c683d8e4146104a6578063c87b56dd146104bb578063d5abeb01146104db57600080fd5b80638da5cb5b116100d15780638da5cb5b1461042057806395d89b411461043e578063a144819414610453578063a22cb4651461046657600080fd5b80636ad1fe02146103d157806370a08231146103eb578063715018a61461040b57600080fd5b8063290c292d1161016f57806342842e0e1161013e57806342842e0e1461035157806342966c68146103715780634f6ccce7146103915780636352211e146103b157600080fd5b8063290c292d146102dc5780632f745c59146102fc57806330136e381461031c57806330509bca1461033c57600080fd5b8063081812fc116101ab578063081812fc1461024d578063095ea7b31461028557806318160ddd146102a757806323b872dd146102bc57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063070a8a8514610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004612316565b610590565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105a1565b6040516101fe9190612400565b34801561023557600080fd5b5061023f60105481565b6040519081526020016101fe565b34801561025957600080fd5b5061026d610268366004612350565b610633565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a03660046122ea565b6106cd565b005b3480156102b357600080fd5b5060085461023f565b3480156102c857600080fd5b506102a56102d7366004612196565b6107ff565b3480156102e857600080fd5b506102a56102f73660046122ea565b610887565b34801561030857600080fd5b5061023f6103173660046122ea565b610a2d565b34801561032857600080fd5b50600c5461026d906001600160a01b031681565b34801561034857600080fd5b506102a5610ad5565b34801561035d57600080fd5b506102a561036c366004612196565b610bd5565b34801561037d57600080fd5b506102a561038c366004612350565b610bf0565b34801561039d57600080fd5b5061023f6103ac366004612350565b610c74565b3480156103bd57600080fd5b5061026d6103cc366004612350565b610d18565b3480156103dd57600080fd5b50600f546101f29060ff1681565b3480156103f757600080fd5b5061023f610406366004612140565b610da3565b34801561041757600080fd5b506102a5610e3d565b34801561042c57600080fd5b50600a546001600160a01b031661026d565b34801561044a57600080fd5b5061021c610ea3565b6102a56104613660046122ea565b610eb2565b34801561047257600080fd5b506102a56104813660046122b7565b6110cc565b34801561049257600080fd5b506102a56104a13660046121d7565b611191565b3480156104b257600080fd5b506102a561121f565b3480156104c757600080fd5b5061021c6104d6366004612350565b611288565b3480156104e757600080fd5b5061023f600d5481565b3480156104fd57600080fd5b506101f261050c36600461215d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054657600080fd5b506102a5610555366004612140565b611371565b34801561056657600080fd5b506102a5610575366004612140565b6113ed565b34801561058657600080fd5b5061023f600e5481565b600061059b826114cc565b92915050565b6060600080546105b0906124a1565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc906124a1565b80156106295780601f106105fe57610100808354040283529160200191610629565b820191906000526020600020905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106d882610d18565b9050806001600160a01b0316836001600160a01b031614156107625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106a8565b336001600160a01b038216148061077e575061077e813361050c565b6107f05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106a8565b6107fa838361150a565b505050565b61080a335b82611578565b61087c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106a8565b6107fa83838361166f565b600a546001600160a01b031633146108e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600f5460ff16156109345760405162461bcd60e51b815260206004820152601860248201527f53616c6520616c726561647920696e2070726f6772657373000000000000000060448201526064016106a8565b8061098b5760405162461bcd60e51b815260206004820152602160248201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726044820152606f60f81b60648201526084016106a8565b600d548161099860085490565b6109a29190612413565b11156109f05760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d6974000060448201526064016106a8565b60005b818110156107fa57610a0d83610a08600b5490565b611847565b610a1b600b80546001019055565b80610a25816124dc565b9150506109f3565b6000610a3883610da3565b8210610aac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016106a8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600c546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610b7c576040519150601f19603f3d011682016040523d82523d6000602084013e610b81565b606091505b5050905080610bd25760405162461bcd60e51b815260206004820152600f60248201527f7472616e73666572206661696c6564000000000000000000000000000000000060448201526064016106a8565b50565b6107fa83838360405180602001604052806000815250611191565b610bf933610804565b610c6b5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016106a8565b610bd281611865565b6000610c7f60085490565b8210610cf35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016106a8565b60088281548110610d0657610d0661254d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061059b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106a8565b60006001600160a01b038216610e215760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106a8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b610ea1600061190c565b565b6060600180546105b0906124a1565b600f5460ff16610f045760405162461bcd60e51b815260206004820152600d60248201527f53616c652064697361626c65640000000000000000000000000000000000000060448201526064016106a8565b80610f5b5760405162461bcd60e51b815260206004820152602160248201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726044820152606f60f81b60648201526084016106a8565b600e54811115610fd25760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d617860448201527f696d756d0000000000000000000000000000000000000000000000000000000060648201526084016106a8565b3460105482610fe1919061243f565b111561102f5760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e74000000000000000000000060448201526064016106a8565b600d548161103c60085490565b6110469190612413565b11156110945760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d6974000060448201526064016106a8565b60005b818110156107fa576110ac83610a08600b5490565b6110ba600b80546001019055565b806110c4816124dc565b915050611097565b6001600160a01b0382163314156111255760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106a8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119b3383611578565b61120d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106a8565b6112198484848461195e565b50505050565b600a546001600160a01b031633146112795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600f805460ff19166001179055565b6000818152600260205260409020546060906001600160a01b03166113155760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106a8565b600061131f6119dc565b9050600081511161133f576040518060200160405280600081525061136a565b80611349846119fc565b60405160200161135a929190612395565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a8565b6001600160a01b0381166114c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106a8565b610bd28161190c565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061059b575061059b82611b2e565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153f82610d18565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106a8565b60006115fc83610d18565b9050806001600160a01b0316846001600160a01b031614806116375750836001600160a01b031661162c84610633565b6001600160a01b0316145b8061166757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661168282610d18565b6001600160a01b0316146116fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106a8565b6001600160a01b0382166117795760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106a8565b611784838383611bc9565b61178f60008261150a565b6001600160a01b03831660009081526003602052604081208054600192906117b890849061245e565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e6908490612413565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611861828260405180602001604052806000815250611bd4565b5050565b600061187082610d18565b905061187e81600084611bc9565b61188960008361150a565b6001600160a01b03811660009081526003602052604081208054600192906118b290849061245e565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61196984848461166f565b61197584848484611c52565b6112195760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106a8565b60606040518060600160405280603681526020016125a560369139905090565b606081611a3c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a665780611a50816124dc565b9150611a5f9050600a8361242b565b9150611a40565b60008167ffffffffffffffff811115611a8157611a81612563565b6040519080825280601f01601f191660200182016040528015611aab576020820181803683370190505b5090505b841561166757611ac060018361245e565b9150611acd600a866124f7565b611ad8906030612413565b60f81b818381518110611aed57611aed61254d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b27600a8661242b565b9450611aaf565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b9157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061059b57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461059b565b6107fa838383611daa565b611bde8383611e62565b611beb6000848484611c52565b6107fa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106a8565b60006001600160a01b0384163b15611d9f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c969033908990889088906004016123c4565b602060405180830381600087803b158015611cb057600080fd5b505af1925050508015611ce0575060408051601f3d908101601f19168201909252611cdd91810190612333565b60015b611d85573d808015611d0e576040519150601f19603f3d011682016040523d82523d6000602084013e611d13565b606091505b508051611d7d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611667565b506001949350505050565b6001600160a01b038316611e0557611e0081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e28565b816001600160a01b0316836001600160a01b031614611e2857611e288382611fb0565b6001600160a01b038216611e3f576107fa8161204d565b826001600160a01b0316826001600160a01b0316146107fa576107fa82826120fc565b6001600160a01b038216611eb85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106a8565b6000818152600260205260409020546001600160a01b031615611f1d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106a8565b611f2960008383611bc9565b6001600160a01b0382166000908152600360205260408120805460019290611f52908490612413565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611fbd84610da3565b611fc7919061245e565b60008381526007602052604090205490915080821461201a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205f9060019061245e565b600083815260096020526040812054600880549394509092849081106120875761208761254d565b9060005260206000200154905080600883815481106120a8576120a861254d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120e0576120e0612537565b6001900381819060005260206000200160009055905550505050565b600061210783610da3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561215257600080fd5b813561136a81612579565b6000806040838503121561217057600080fd5b823561217b81612579565b9150602083013561218b81612579565b809150509250929050565b6000806000606084860312156121ab57600080fd5b83356121b681612579565b925060208401356121c681612579565b929592945050506040919091013590565b600080600080608085870312156121ed57600080fd5b84356121f881612579565b9350602085013561220881612579565b925060408501359150606085013567ffffffffffffffff8082111561222c57600080fd5b818701915087601f83011261224057600080fd5b81358181111561225257612252612563565b604051601f8201601f19908116603f0116810190838211818310171561227a5761227a612563565b816040528281528a602084870101111561229357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156122ca57600080fd5b82356122d581612579565b91506020830135801515811461218b57600080fd5b600080604083850312156122fd57600080fd5b823561230881612579565b946020939093013593505050565b60006020828403121561232857600080fd5b813561136a8161258e565b60006020828403121561234557600080fd5b815161136a8161258e565b60006020828403121561236257600080fd5b5035919050565b60008151808452612381816020860160208601612475565b601f01601f19169290920160200192915050565b600083516123a7818460208801612475565b8351908301906123bb818360208801612475565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123f66080830184612369565b9695505050505050565b60208152600061136a6020830184612369565b600082198211156124265761242661250b565b500190565b60008261243a5761243a612521565b500490565b60008160001904831182151516156124595761245961250b565b500290565b6000828210156124705761247061250b565b500390565b60005b83811015612490578181015183820152602001612478565b838111156112195750506000910152565b600181811c908216806124b557607f821691505b602082108114156124d657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124f0576124f061250b565b5060010190565b60008261250657612506612521565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610bd257600080fd5b6001600160e01b031981168114610bd257600080fdfe697066733a2f2f516d4e6e577277664162736e5776795467477061594c6468316f416b4252354237344d6a775a68387374544c39372fa2646970667358221220201afbaf370b45a9c6459bc7721c98493e1df962a89c41489060d6c92fbc1a0c64736f6c63430008060033

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

0000000000000000000000002780be80ba18d0c27540b9cd75e3c49a58c3322900000000000000000000000000000000000000000000000000000000000022b80000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000011c37937e080000

-----Decoded View---------------
Arg [0] : fundsTo_ (address): 0x2780bE80bA18d0C27540b9cD75E3C49a58c33229
Arg [1] : maxSupply_ (uint256): 8888
Arg [2] : maxPerTx_ (uint256): 16
Arg [3] : pricePer_ (uint256): 80000000000000000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000002780be80ba18d0c27540b9cd75e3c49a58c33229
Arg [1] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 000000000000000000000000000000000000000000000000011c37937e080000


Deployed Bytecode Sourcemap

45282:3019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48127:171;;;;;;;;;;-1:-1:-1;48127:171:0;;;;;:::i;:::-;;:::i;:::-;;;6187:14:1;;6180:22;6162:41;;6150:2;6135:18;48127:171:0;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45731:23::-;;;;;;;;;;;;;;;;;;;16763:25:1;;;16751:2;16736:18;45731:23:0;16718:76:1;23088:221:0;;;;;;;;;;-1:-1:-1;23088:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5192:55:1;;;5174:74;;5162:2;5147:18;23088:221:0;5129:125:1;22611:411:0;;;;;;;;;;-1:-1:-1;22611:411:0;;;;;:::i;:::-;;:::i;:::-;;35284:113;;;;;;;;;;-1:-1:-1;35372:10:0;:17;35284:113;;23978:339;;;;;;;;;;-1:-1:-1;23978:339:0;;;;;:::i;:::-;;:::i;47284:489::-;;;;;;;;;;-1:-1:-1;47284:489:0;;;;;:::i;:::-;;:::i;34952:256::-;;;;;;;;;;-1:-1:-1;34952:256:0;;;;;:::i;:::-;;:::i;45491:30::-;;;;;;;;;;-1:-1:-1;45491:30:0;;;;-1:-1:-1;;;;;45491:30:0;;;46246:171;;;;;;;;;;;;;:::i;24388:185::-;;;;;;;;;;-1:-1:-1;24388:185:0;;;;;:::i;:::-;;:::i;41255:245::-;;;;;;;;;;-1:-1:-1;41255:245:0;;;;;:::i;:::-;;:::i;35474:233::-;;;;;;;;;;-1:-1:-1;35474:233:0;;;;;:::i;:::-;;:::i;21223:239::-;;;;;;;;;;-1:-1:-1;21223:239:0;;;;;:::i;:::-;;:::i;45687:16::-;;;;;;;;;;-1:-1:-1;45687:16:0;;;;;;;;20953:208;;;;;;;;;;-1:-1:-1;20953:208:0;;;;;:::i;:::-;;:::i;43162:94::-;;;;;;;;;;;;;:::i;42511:87::-;;;;;;;;;;-1:-1:-1;42584:6:0;;-1:-1:-1;;;;;42584:6:0;42511:87;;21698:104;;;;;;;;;;;;;:::i;46425:851::-;;;;;;:::i;:::-;;:::i;23381:295::-;;;;;;;;;;-1:-1:-1;23381:295:0;;;;;:::i;:::-;;:::i;24644:328::-;;;;;;;;;;-1:-1:-1;24644:328:0;;;;;:::i;:::-;;:::i;46169:69::-;;;;;;;;;;;;;:::i;21873:334::-;;;;;;;;;;-1:-1:-1;21873:334:0;;;;;:::i;:::-;;:::i;45564:24::-;;;;;;;;;;;;;;;;23747:164;;;;;;;;;;-1:-1:-1;23747:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23747:164;46054:107;;;;;;;;;;-1:-1:-1;46054:107:0;;;;;:::i;:::-;;:::i;43411:192::-;;;;;;;;;;-1:-1:-1;43411:192:0;;;;;:::i;:::-;;:::i;45635:23::-;;;;;;;;;;;;;;;;48127:171;48230:4;48254:36;48278:11;48254:23;:36::i;:::-;48247:43;48127:171;-1:-1:-1;;48127:171:0:o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;23088:221::-;23164:7;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;23184:73;;;;-1:-1:-1;;;23184:73:0;;11367:2:1;23184:73:0;;;11349:21:1;11406:2;11386:18;;;11379:30;11445:34;11425:18;;;11418:62;-1:-1:-1;;;11496:18:1;;;11489:42;11548:19;;23184:73:0;;;;;;;;;-1:-1:-1;23277:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23277:24:0;;23088:221::o;22611:411::-;22692:13;22708:23;22723:7;22708:14;:23::i;:::-;22692:39;;22756:5;-1:-1:-1;;;;;22750:11:0;:2;-1:-1:-1;;;;;22750:11:0;;;22742:57;;;;-1:-1:-1;;;22742:57:0;;13309:2:1;22742:57:0;;;13291:21:1;13348:2;13328:18;;;13321:30;13387:34;13367:18;;;13360:62;13458:3;13438:18;;;13431:31;13479:19;;22742:57:0;13281:223:1;22742:57:0;16066:10;-1:-1:-1;;;;;22834:21:0;;;;:62;;-1:-1:-1;22859:37:0;22876:5;16066:10;23747:164;:::i;22859:37::-;22812:168;;;;-1:-1:-1;;;22812:168:0;;9760:2:1;22812:168:0;;;9742:21:1;9799:2;9779:18;;;9772:30;9838:34;9818:18;;;9811:62;9909:26;9889:18;;;9882:54;9953:19;;22812:168:0;9732:246:1;22812:168:0;22993:21;23002:2;23006:7;22993:8;:21::i;:::-;22681:341;22611:411;;:::o;23978:339::-;24173:41;16066:10;24192:12;24206:7;24173:18;:41::i;:::-;24165:103;;;;-1:-1:-1;;;24165:103:0;;14070:2:1;24165:103:0;;;14052:21:1;14109:2;14089:18;;;14082:30;14148:34;14128:18;;;14121:62;14219:19;14199:18;;;14192:47;14256:19;;24165:103:0;14042:239:1;24165:103:0;24281:28;24291:4;24297:2;24301:7;24281:9;:28::i;47284:489::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;11780:2:1;42723:68:0;;;11762:21:1;;;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11910:18;;42723:68:0;11752:182:1;42723:68:0;47405:4:::1;::::0;::::1;;47404:5;47396:42;;;::::0;-1:-1:-1;;;47396:42:0;;8235:2:1;47396:42:0::1;::::0;::::1;8217:21:1::0;8274:2;8254:18;;;8247:30;8313:26;8293:18;;;8286:54;8357:18;;47396:42:0::1;8207:174:1::0;47396:42:0::1;47457:13:::0;47449:59:::1;;;::::0;-1:-1:-1;;;47449:59:0;;15251:2:1;47449:59:0::1;::::0;::::1;15233:21:1::0;15290:2;15270:18;;;15263:30;15329:34;15309:18;;;15302:62;-1:-1:-1;;;15380:18:1;;;15373:31;15421:19;;47449:59:0::1;15223:223:1::0;47449:59:0::1;47561:9;;47549:8;47527:19;35372:10:::0;:17;;35284:113;47527:19:::1;:30;;;;:::i;:::-;:43;;47519:86;;;::::0;-1:-1:-1;;;47519:86:0;;13711:2:1;47519:86:0::1;::::0;::::1;13693:21:1::0;13750:2;13730:18;;;13723:30;13789:32;13769:18;;;13762:60;13839:18;;47519:86:0::1;13683:180:1::0;47519:86:0::1;47623:9;47618:148;47642:8;47638:1;:12;47618:148;;;47672:40;47682:2;47686:25;:15;44708:14:::0;;44616:114;47686:25:::1;47672:9;:40::i;:::-;47727:27;:15;44827:19:::0;;44845:1;44827:19;;;44738:127;47727:27:::1;47652:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47618:148;;34952:256:::0;35049:7;35085:23;35102:5;35085:16;:23::i;:::-;35077:5;:31;35069:87;;;;-1:-1:-1;;;35069:87:0;;6640:2:1;35069:87:0;;;6622:21:1;6679:2;6659:18;;;6652:30;6718:34;6698:18;;;6691:62;6789:13;6769:18;;;6762:41;6820:19;;35069:87:0;6612:233:1;35069:87:0;-1:-1:-1;;;;;;35174:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34952:256::o;46246:171::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;11780:2:1;42723:68:0;;;11762:21:1;;;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11910:18;;42723:68:0;11752:182:1;42723:68:0;46317:7:::1;::::0;:46:::1;::::0;46299:12:::1;::::0;-1:-1:-1;;;;;46317:7:0::1;::::0;46337:21:::1;::::0;46299:12;46317:46;46299:12;46317:46;46337:21;46317:7;:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46298:65;;;46382:7;46374:35;;;::::0;-1:-1:-1;;;46374:35:0;;15653:2:1;46374:35:0::1;::::0;::::1;15635:21:1::0;15692:2;15672:18;;;15665:30;15731:17;15711:18;;;15704:45;15766:18;;46374:35:0::1;15625:165:1::0;46374:35:0::1;46287:130;46246:171::o:0;24388:185::-;24526:39;24543:4;24549:2;24553:7;24526:39;;;;;;;;;;;;:16;:39::i;41255:245::-;41373:41;16066:10;41392:12;15986:98;41373:41;41365:102;;;;-1:-1:-1;;;41365:102:0;;16402:2:1;41365:102:0;;;16384:21:1;16441:2;16421:18;;;16414:30;16480:34;16460:18;;;16453:62;16551:18;16531;;;16524:46;16587:19;;41365:102:0;16374:238:1;41365:102:0;41478:14;41484:7;41478:5;:14::i;35474:233::-;35549:7;35585:30;35372:10;:17;;35284:113;35585:30;35577:5;:38;35569:95;;;;-1:-1:-1;;;35569:95:0;;14488:2:1;35569:95:0;;;14470:21:1;14527:2;14507:18;;;14500:30;14566:34;14546:18;;;14539:62;14637:14;14617:18;;;14610:42;14669:19;;35569:95:0;14460:234:1;35569:95:0;35682:10;35693:5;35682:17;;;;;;;;:::i;:::-;;;;;;;;;35675:24;;35474:233;;;:::o;21223:239::-;21295:7;21331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21331:16:0;21366:19;21358:73;;;;-1:-1:-1;;;21358:73:0;;10596:2:1;21358:73:0;;;10578:21:1;10635:2;10615:18;;;10608:30;10674:34;10654:18;;;10647:62;10745:11;10725:18;;;10718:39;10774:19;;21358:73:0;10568:231:1;20953:208:0;21025:7;-1:-1:-1;;;;;21053:19:0;;21045:74;;;;-1:-1:-1;;;21045:74:0;;10185:2:1;21045:74:0;;;10167:21:1;10224:2;10204:18;;;10197:30;10263:34;10243:18;;;10236:62;10334:12;10314:18;;;10307:40;10364:19;;21045:74:0;10157:232:1;21045:74:0;-1:-1:-1;;;;;;21137:16:0;;;;;:9;:16;;;;;;;20953:208::o;43162:94::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;11780:2:1;42723:68:0;;;11762:21:1;;;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11910:18;;42723:68:0;11752:182:1;42723:68:0;43227:21:::1;43245:1;43227:9;:21::i;:::-;43162:94::o:0;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;46425:851::-;46540:4;;;;46532:30;;;;-1:-1:-1;;;46532:30:0;;12967:2:1;46532:30:0;;;12949:21:1;13006:2;12986:18;;;12979:30;13045:15;13025:18;;;13018:43;13078:18;;46532:30:0;12939:163:1;46532:30:0;46607:13;46599:59;;;;-1:-1:-1;;;46599:59:0;;15251:2:1;46599:59:0;;;15233:21:1;15290:2;15270:18;;;15263:30;15329:34;15309:18;;;15302:62;-1:-1:-1;;;15380:18:1;;;15373:31;15421:19;;46599:59:0;15223:223:1;46599:59:0;46731:8;;46719;:20;;46711:69;;;;-1:-1:-1;;;46711:69:0;;15997:2:1;46711:69:0;;;15979:21:1;16036:2;16016:18;;;16009:30;16075:34;16055:18;;;16048:62;16146:6;16126:18;;;16119:34;16170:19;;46711:69:0;15969:226:1;46711:69:0;46913:9;46901:8;;46890;:19;;;;:::i;:::-;:32;;46882:66;;;;-1:-1:-1;;;46882:66:0;;14901:2:1;46882:66:0;;;14883:21:1;14940:2;14920:18;;;14913:30;14979:23;14959:18;;;14952:51;15020:18;;46882:66:0;14873:171:1;46882:66:0;47064:9;;47052:8;47030:19;35372:10;:17;;35284:113;47030:19;:30;;;;:::i;:::-;:43;;47022:86;;;;-1:-1:-1;;;47022:86:0;;13711:2:1;47022:86:0;;;13693:21:1;13750:2;13730:18;;;13723:30;13789:32;13769:18;;;13762:60;13839:18;;47022:86:0;13683:180:1;47022:86:0;47126:9;47121:148;47145:8;47141:1;:12;47121:148;;;47175:40;47185:2;47189:25;:15;44708:14;;44616:114;47175:40;47230:27;:15;44827:19;;44845:1;44827:19;;;44738:127;47230:27;47155:3;;;;:::i;:::-;;;;47121:148;;23381:295;-1:-1:-1;;;;;23484:24:0;;16066:10;23484:24;;23476:62;;;;-1:-1:-1;;;23476:62:0;;8993:2:1;23476:62:0;;;8975:21:1;9032:2;9012:18;;;9005:30;9071:27;9051:18;;;9044:55;9116:18;;23476:62:0;8965:175:1;23476:62:0;16066:10;23551:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23551:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23551:53:0;;;;;;;;;;23620:48;;6162:41:1;;;23551:42:0;;16066:10;23620:48;;6135:18:1;23620:48:0;;;;;;;23381:295;;:::o;24644:328::-;24819:41;16066:10;24852:7;24819:18;:41::i;:::-;24811:103;;;;-1:-1:-1;;;24811:103:0;;14070:2:1;24811:103:0;;;14052:21:1;14109:2;14089:18;;;14082:30;14148:34;14128:18;;;14121:62;14219:19;14199:18;;;14192:47;14256:19;;24811:103:0;14042:239:1;24811:103:0;24925:39;24939:4;24945:2;24949:7;24958:5;24925:13;:39::i;:::-;24644:328;;;;:::o;46169:69::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;11780:2:1;42723:68:0;;;11762:21:1;;;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11910:18;;42723:68:0;11752:182:1;42723:68:0;46219:4:::1;:11:::0;;-1:-1:-1;;46219:11:0::1;46226:4;46219:11;::::0;;46169:69::o;21873:334::-;26547:4;26571:16;;;:7;:16;;;;;;21946:13;;-1:-1:-1;;;;;26571:16:0;21972:76;;;;-1:-1:-1;;;21972:76:0;;12551:2:1;21972:76:0;;;12533:21:1;12590:2;12570:18;;;12563:30;12629:34;12609:18;;;12602:62;12700:17;12680:18;;;12673:45;12735:19;;21972:76:0;12523:237:1;21972:76:0;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:86;;;;;;;;;;;;;;;;;22165:7;22174:18;:7;:16;:18::i;:::-;22148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:86;22106:93;21873:334;-1:-1:-1;;;21873:334:0:o;46054:107::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;11780:2:1;42723:68:0;;;11762:21:1;;;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11910:18;;42723:68:0;11752:182:1;42723:68:0;46133:7:::1;:20:::0;;-1:-1:-1;;;;;;46133:20:0::1;-1:-1:-1::0;;;;;46133:20:0;;;::::1;::::0;;;::::1;::::0;;46054:107::o;43411:192::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;11780:2:1;42723:68:0;;;11762:21:1;;;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11910:18;;42723:68:0;11752:182:1;42723:68:0;-1:-1:-1;;;;;43500:22:0;::::1;43492:73;;;::::0;-1:-1:-1;;;43492:73:0;;7471:2:1;43492:73:0::1;::::0;::::1;7453:21:1::0;7510:2;7490:18;;;7483:30;7549:34;7529:18;;;7522:62;7620:8;7600:18;;;7593:36;7646:19;;43492:73:0::1;7443:228:1::0;43492:73:0::1;43576:19;43586:8;43576:9;:19::i;34644:224::-:0;34746:4;-1:-1:-1;;;;;;34770:50:0;;34785:35;34770:50;;:90;;;34824:36;34848:11;34824:23;:36::i;30464:174::-;30539:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30539:29:0;-1:-1:-1;;;;;30539:29:0;;;;;;;;:24;;30593:23;30539:24;30593:14;:23::i;:::-;-1:-1:-1;;;;;30584:46:0;;;;;;;;;;;30464:174;;:::o;26776:348::-;26869:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;26886:73;;;;-1:-1:-1;;;26886:73:0;;9347:2:1;26886:73:0;;;9329:21:1;9386:2;9366:18;;;9359:30;9425:34;9405:18;;;9398:62;-1:-1:-1;;;9476:18:1;;;9469:42;9528:19;;26886:73:0;9319:234:1;26886:73:0;26970:13;26986:23;27001:7;26986:14;:23::i;:::-;26970:39;;27039:5;-1:-1:-1;;;;;27028:16:0;:7;-1:-1:-1;;;;;27028:16:0;;:51;;;;27072:7;-1:-1:-1;;;;;27048:31:0;:20;27060:7;27048:11;:20::i;:::-;-1:-1:-1;;;;;27048:31:0;;27028:51;:87;;;-1:-1:-1;;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27083:32;27020:96;26776:348;-1:-1:-1;;;;26776:348:0:o;29768:578::-;29927:4;-1:-1:-1;;;;;29900:31:0;:23;29915:7;29900:14;:23::i;:::-;-1:-1:-1;;;;;29900:31:0;;29892:85;;;;-1:-1:-1;;;29892:85:0;;12141:2:1;29892:85:0;;;12123:21:1;12180:2;12160:18;;;12153:30;12219:34;12199:18;;;12192:62;12290:11;12270:18;;;12263:39;12319:19;;29892:85:0;12113:231:1;29892:85:0;-1:-1:-1;;;;;29996:16:0;;29988:65;;;;-1:-1:-1;;;29988:65:0;;8588:2:1;29988:65:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;8737:6;8717:18;;;8710:34;8761:19;;29988:65:0;8560:226:1;29988:65:0;30066:39;30087:4;30093:2;30097:7;30066:20;:39::i;:::-;30170:29;30187:1;30191:7;30170:8;:29::i;:::-;-1:-1:-1;;;;;30212:15:0;;;;;;:9;:15;;;;;:20;;30231:1;;30212:15;:20;;30231:1;;30212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30243:13:0;;;;;;:9;:13;;;;;:18;;30260:1;;30243:13;:18;;30260:1;;30243:18;:::i;:::-;;;;-1:-1:-1;;30272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30272:21:0;-1:-1:-1;;;;;30272:21:0;;;;;;;;;30311:27;;30272:16;;30311:27;;;;;;;29768:578;;;:::o;27466:110::-;27542:26;27552:2;27556:7;27542:26;;;;;;;;;;;;:9;:26::i;:::-;27466:110;;:::o;29071:360::-;29131:13;29147:23;29162:7;29147:14;:23::i;:::-;29131:39;;29183:48;29204:5;29219:1;29223:7;29183:20;:48::i;:::-;29272:29;29289:1;29293:7;29272:8;:29::i;:::-;-1:-1:-1;;;;;29314:16:0;;;;;;:9;:16;;;;;:21;;29334:1;;29314:16;:21;;29334:1;;29314:21;:::i;:::-;;;;-1:-1:-1;;29353:16:0;;;;:7;:16;;;;;;29346:23;;-1:-1:-1;;;;;;29346:23:0;;;29387:36;29361:7;;29353:16;-1:-1:-1;;;;;29387:36:0;;;;;29353:16;;29387:36;29120:311;29071:360;:::o;43611:173::-;43686:6;;;-1:-1:-1;;;;;43703:17:0;;;-1:-1:-1;;;;;;43703:17:0;;;;;;;43736:40;;43686:6;;;43703:17;43686:6;;43736:40;;43667:16;;43736:40;43656:128;43611:173;:::o;25854:315::-;26011:28;26021:4;26027:2;26031:7;26011:9;:28::i;:::-;26058:48;26081:4;26087:2;26091:7;26100:5;26058:22;:48::i;:::-;26050:111;;;;-1:-1:-1;;;26050:111:0;;7052:2:1;26050:111:0;;;7034:21:1;7091:2;7071:18;;;7064:30;7130:34;7110:18;;;7103:62;-1:-1:-1;;;7181:18:1;;;7174:48;7239:19;;26050:111:0;7024:240:1;47781:149:0;47833:13;47859:63;;;;;;;;;;;;;;;;;;;47781:149;:::o;16519:723::-;16575:13;16796:10;16792:53;;-1:-1:-1;;16823:10:0;;;;;;;;;;;;;;;;;;16519:723::o;16792:53::-;16870:5;16855:12;16911:78;16918:9;;16911:78;;16944:8;;;;:::i;:::-;;-1:-1:-1;16967:10:0;;-1:-1:-1;16975:2:0;16967:10;;:::i;:::-;;;16911:78;;;16999:19;17031:6;17021:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17021:17:0;;16999:39;;17049:154;17056:10;;17049:154;;17083:11;17093:1;17083:11;;:::i;:::-;;-1:-1:-1;17152:10:0;17160:2;17152:5;:10;:::i;:::-;17139:24;;:2;:24;:::i;:::-;17126:39;;17109:6;17116;17109:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;17180:11:0;17189:2;17180:11;;:::i;:::-;;;17049:154;;20584:305;20686:4;-1:-1:-1;;;;;;20723:40:0;;20738:25;20723:40;;:105;;-1:-1:-1;;;;;;;20780:48:0;;20795:33;20780:48;20723:105;:158;;;-1:-1:-1;19206:25:0;-1:-1:-1;;;;;;19191:40:0;;;20845:36;19082:157;47938:181;48066:45;48093:4;48099:2;48103:7;48066:26;:45::i;27803:321::-;27933:18;27939:2;27943:7;27933:5;:18::i;:::-;27984:54;28015:1;28019:2;28023:7;28032:5;27984:22;:54::i;:::-;27962:154;;;;-1:-1:-1;;;27962:154:0;;7052:2:1;27962:154:0;;;7034:21:1;7091:2;7071:18;;;7064:30;7130:34;7110:18;;;7103:62;-1:-1:-1;;;7181:18:1;;;7174:48;7239:19;;27962:154:0;7024:240:1;31203:803:0;31358:4;-1:-1:-1;;;;;31379:13:0;;8563:20;8611:8;31375:624;;31415:72;;-1:-1:-1;;;31415:72:0;;-1:-1:-1;;;;;31415:36:0;;;;;:72;;16066:10;;31466:4;;31472:7;;31481:5;;31415:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31415:72:0;;;;;;;;-1:-1:-1;;31415:72:0;;;;;;;;;;;;:::i;:::-;;;31411:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31661:13:0;;31657:272;;31704:60;;-1:-1:-1;;;31704:60:0;;7052:2:1;31704:60:0;;;7034:21:1;7091:2;7071:18;;;7064:30;7130:34;7110:18;;;7103:62;-1:-1:-1;;;7181:18:1;;;7174:48;7239:19;;31704:60:0;7024:240:1;31657:272:0;31879:6;31873:13;31864:6;31860:2;31856:15;31849:38;31411:533;-1:-1:-1;;;;;;31538:55:0;-1:-1:-1;;;31538:55:0;;-1:-1:-1;31531:62:0;;31375:624;-1:-1:-1;31983:4:0;31203:803;;;;;;:::o;36320:589::-;-1:-1:-1;;;;;36526:18:0;;36522:187;;36561:40;36593:7;37736:10;:17;;37709:24;;;;:15;:24;;;;;:44;;;37764:24;;;;;;;;;;;;37632:164;36561:40;36522:187;;;36631:2;-1:-1:-1;;;;;36623:10:0;:4;-1:-1:-1;;;;;36623:10:0;;36619:90;;36650:47;36683:4;36689:7;36650:32;:47::i;:::-;-1:-1:-1;;;;;36723:16:0;;36719:183;;36756:45;36793:7;36756:36;:45::i;36719:183::-;36829:4;-1:-1:-1;;;;;36823:10:0;:2;-1:-1:-1;;;;;36823:10:0;;36819:83;;36850:40;36878:2;36882:7;36850:27;:40::i;28460:382::-;-1:-1:-1;;;;;28540:16:0;;28532:61;;;;-1:-1:-1;;;28532:61:0;;11006:2:1;28532:61:0;;;10988:21:1;;;11025:18;;;11018:30;11084:34;11064:18;;;11057:62;11136:18;;28532:61:0;10978:182:1;28532:61:0;26547:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;:30;28604:58;;;;-1:-1:-1;;;28604:58:0;;7878:2:1;28604:58:0;;;7860:21:1;7917:2;7897:18;;;7890:30;7956;7936:18;;;7929:58;8004:18;;28604:58:0;7850:178:1;28604:58:0;28675:45;28704:1;28708:2;28712:7;28675:20;:45::i;:::-;-1:-1:-1;;;;;28733:13:0;;;;;;:9;:13;;;;;:18;;28750:1;;28733:13;:18;;28750:1;;28733:18;:::i;:::-;;;;-1:-1:-1;;28762:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28762:21:0;-1:-1:-1;;;;;28762:21:0;;;;;;;;28801:33;;28762:16;;;28801:33;;28762:16;;28801:33;28460:382;;:::o;38423:988::-;38689:22;38739:1;38714:22;38731:4;38714:16;:22::i;:::-;:26;;;;:::i;:::-;38751:18;38772:26;;;:17;:26;;;;;;38689:51;;-1:-1:-1;38905:28:0;;;38901:328;;-1:-1:-1;;;;;38972:18:0;;38950:19;38972:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39023:30;;;;;;:44;;;39140:30;;:17;:30;;;;;:43;;;38901:328;-1:-1:-1;39325:26:0;;;;:17;:26;;;;;;;;39318:33;;;-1:-1:-1;;;;;39369:18:0;;;;;:12;:18;;;;;:34;;;;;;;39362:41;38423:988::o;39706:1079::-;39984:10;:17;39959:22;;39984:21;;40004:1;;39984:21;:::i;:::-;40016:18;40037:24;;;:15;:24;;;;;;40410:10;:26;;39959:46;;-1:-1:-1;40037:24:0;;39959:46;;40410:26;;;;;;:::i;:::-;;;;;;;;;40388:48;;40474:11;40449:10;40460;40449:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40554:28;;;:15;:28;;;;;;;:41;;;40726:24;;;;;40719:31;40761:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39777:1008;;;39706:1079;:::o;37210:221::-;37295:14;37312:20;37329:2;37312:16;:20::i;:::-;-1:-1:-1;;;;;37343:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37388:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37210:221:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;526:388::-;594:6;602;655:2;643:9;634:7;630:23;626:32;623:2;;;671:1;668;661:12;623:2;710:9;697:23;729:31;754:5;729:31;:::i;:::-;779:5;-1:-1:-1;836:2:1;821:18;;808:32;849:33;808:32;849:33;:::i;:::-;901:7;891:17;;;613:301;;;;;:::o;919:456::-;996:6;1004;1012;1065:2;1053:9;1044:7;1040:23;1036:32;1033:2;;;1081:1;1078;1071:12;1033:2;1120:9;1107:23;1139:31;1164:5;1139:31;:::i;:::-;1189:5;-1:-1:-1;1246:2:1;1231:18;;1218:32;1259:33;1218:32;1259:33;:::i;:::-;1023:352;;1311:7;;-1:-1:-1;;;1365:2:1;1350:18;;;;1337:32;;1023:352::o;1380:1266::-;1475:6;1483;1491;1499;1552:3;1540:9;1531:7;1527:23;1523:33;1520:2;;;1569:1;1566;1559:12;1520:2;1608:9;1595:23;1627:31;1652:5;1627:31;:::i;:::-;1677:5;-1:-1:-1;1734:2:1;1719:18;;1706:32;1747:33;1706:32;1747:33;:::i;:::-;1799:7;-1:-1:-1;1853:2:1;1838:18;;1825:32;;-1:-1:-1;1908:2:1;1893:18;;1880:32;1931:18;1961:14;;;1958:2;;;1988:1;1985;1978:12;1958:2;2026:6;2015:9;2011:22;2001:32;;2071:7;2064:4;2060:2;2056:13;2052:27;2042:2;;2093:1;2090;2083:12;2042:2;2129;2116:16;2151:2;2147;2144:10;2141:2;;;2157:18;;:::i;:::-;2232:2;2226:9;2200:2;2286:13;;-1:-1:-1;;2282:22:1;;;2306:2;2278:31;2274:40;2262:53;;;2330:18;;;2350:22;;;2327:46;2324:2;;;2376:18;;:::i;:::-;2416:10;2412:2;2405:22;2451:2;2443:6;2436:18;2491:7;2486:2;2481;2477;2473:11;2469:20;2466:33;2463:2;;;2512:1;2509;2502:12;2463:2;2568;2563;2559;2555:11;2550:2;2542:6;2538:15;2525:46;2613:1;2608:2;2603;2595:6;2591:15;2587:24;2580:35;2634:6;2624:16;;;;;;;1510:1136;;;;;;;:::o;2651:416::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:2;;;2793:1;2790;2783:12;2745:2;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;3000:15;;2993:23;2981:36;;2971:2;;3031:1;3028;3021:12;3072:315;3140:6;3148;3201:2;3189:9;3180:7;3176:23;3172:32;3169:2;;;3217:1;3214;3207:12;3169:2;3256:9;3243:23;3275:31;3300:5;3275:31;:::i;:::-;3325:5;3377:2;3362:18;;;;3349:32;;-1:-1:-1;;;3159:228:1:o;3392:245::-;3450:6;3503:2;3491:9;3482:7;3478:23;3474:32;3471:2;;;3519:1;3516;3509:12;3471:2;3558:9;3545:23;3577:30;3601:5;3577:30;:::i;3642:249::-;3711:6;3764:2;3752:9;3743:7;3739:23;3735:32;3732:2;;;3780:1;3777;3770:12;3732:2;3812:9;3806:16;3831:30;3855:5;3831:30;:::i;3896:180::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:2;;;4024:1;4021;4014:12;3976:2;-1:-1:-1;4047:23:1;;3966:110;-1:-1:-1;3966:110:1:o;4081:257::-;4122:3;4160:5;4154:12;4187:6;4182:3;4175:19;4203:63;4259:6;4252:4;4247:3;4243:14;4236:4;4229:5;4225:16;4203:63;:::i;:::-;4320:2;4299:15;-1:-1:-1;;4295:29:1;4286:39;;;;4327:4;4282:50;;4130:208;-1:-1:-1;;4130:208:1:o;4343:470::-;4522:3;4560:6;4554:13;4576:53;4622:6;4617:3;4610:4;4602:6;4598:17;4576:53;:::i;:::-;4692:13;;4651:16;;;;4714:57;4692:13;4651:16;4748:4;4736:17;;4714:57;:::i;:::-;4787:20;;4530:283;-1:-1:-1;;;;4530:283:1:o;5506:511::-;5700:4;-1:-1:-1;;;;;5810:2:1;5802:6;5798:15;5787:9;5780:34;5862:2;5854:6;5850:15;5845:2;5834:9;5830:18;5823:43;;5902:6;5897:2;5886:9;5882:18;5875:34;5945:3;5940:2;5929:9;5925:18;5918:31;5966:45;6006:3;5995:9;5991:19;5983:6;5966:45;:::i;:::-;5958:53;5709:308;-1:-1:-1;;;;;;5709:308:1:o;6214:219::-;6363:2;6352:9;6345:21;6326:4;6383:44;6423:2;6412:9;6408:18;6400:6;6383:44;:::i;16799:128::-;16839:3;16870:1;16866:6;16863:1;16860:13;16857:2;;;16876:18;;:::i;:::-;-1:-1:-1;16912:9:1;;16847:80::o;16932:120::-;16972:1;16998;16988:2;;17003:18;;:::i;:::-;-1:-1:-1;17037:9:1;;16978:74::o;17057:168::-;17097:7;17163:1;17159;17155:6;17151:14;17148:1;17145:21;17140:1;17133:9;17126:17;17122:45;17119:2;;;17170:18;;:::i;:::-;-1:-1:-1;17210:9:1;;17109:116::o;17230:125::-;17270:4;17298:1;17295;17292:8;17289:2;;;17303:18;;:::i;:::-;-1:-1:-1;17340:9:1;;17279:76::o;17360:258::-;17432:1;17442:113;17456:6;17453:1;17450:13;17442:113;;;17532:11;;;17526:18;17513:11;;;17506:39;17478:2;17471:10;17442:113;;;17573:6;17570:1;17567:13;17564:2;;;-1:-1:-1;;17608:1:1;17590:16;;17583:27;17413:205::o;17623:437::-;17702:1;17698:12;;;;17745;;;17766:2;;17820:4;17812:6;17808:17;17798:27;;17766:2;17873;17865:6;17862:14;17842:18;17839:38;17836:2;;;-1:-1:-1;;;17907:1:1;17900:88;18011:4;18008:1;18001:15;18039:4;18036:1;18029:15;17836:2;;17678:382;;;:::o;18065:135::-;18104:3;-1:-1:-1;;18125:17:1;;18122:2;;;18145:18;;:::i;:::-;-1:-1:-1;18192:1:1;18181:13;;18112:88::o;18205:112::-;18237:1;18263;18253:2;;18268:18;;:::i;:::-;-1:-1:-1;18302:9:1;;18243:74::o;18322:184::-;-1:-1:-1;;;18371:1:1;18364:88;18471:4;18468:1;18461:15;18495:4;18492:1;18485:15;18511:184;-1:-1:-1;;;18560:1:1;18553:88;18660:4;18657:1;18650:15;18684:4;18681:1;18674:15;18700:184;-1:-1:-1;;;18749:1:1;18742:88;18849:4;18846:1;18839:15;18873:4;18870:1;18863:15;18889:184;-1:-1:-1;;;18938:1:1;18931:88;19038:4;19035:1;19028:15;19062:4;19059:1;19052:15;19078:184;-1:-1:-1;;;19127:1:1;19120:88;19227:4;19224:1;19217:15;19251:4;19248:1;19241:15;19267:154;-1:-1:-1;;;;;19346:5:1;19342:54;19335:5;19332:65;19322:2;;19411:1;19408;19401:12;19426:177;-1:-1:-1;;;;;;19504:5:1;19500:78;19493:5;19490:89;19480:2;;19593:1;19590;19583:12

Swarm Source

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