ETH Price: $2,875.40 (-5.76%)
Gas: 1 Gwei

Token

3x3Punks (THREE)
 

Overview

Max Total Supply

2,930 THREE

Holders

1,202

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 THREE
0xdccafde90721854f3f7a4a3c09e187ccebf7086d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ThreePunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 333 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: three.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "ERC721Enumerable.sol";
import "Ownable.sol";

contract ThreePunks is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string public _baseTokenURI;
    uint256 private _reserved = 333;
    uint256 private _supply = 10001;
    uint256 private _price = 0.033 ether;
    bool public _paused = false;
    bool public _onlyWhitelist = true;

    address team = 0x802DA0f8c89786E0820962AE38F111BE79666387;

    constructor(string memory baseURI) ERC721("3x3Punks", "THREE")  {
        setBaseURI(baseURI);
        _safeMint( team, 0);
    }

    function mint3x3(uint256 num) public payable {
        require( !_paused,                              "Sale paused" );
        uint256 supply = totalSupply();
        require( num < 10,                               "Maximum of 9 3x3Punks per mint" );
        require( supply + num < _supply - _reserved,    "Exceeds maximum 3x3Punks supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        if(_onlyWhitelist==true){
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount + num < 10,  "Maximum of 9 3x3Punks per address");
        }

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function totalMint() public view returns (uint256) {
        return totalSupply();
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

     function setOnlyWhitelist(bool val) public onlyOwner {
        _onlyWhitelist = val;
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

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

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

    function gift(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "No more gift" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _income = address(this).balance;
        require(payable(team).send(_income));
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 14: Counters.sol
// SPDX-License-Identifier: MIT

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 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

/**
 * @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 5 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC721.sol";
import "IERC721Enumerable.sol";

/**
 * @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 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

/**
 * @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 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @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 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @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 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @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 13 of 14: Strings.sol
// SPDX-License-Identifier: MIT

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_onlyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint3x3","outputs":[],"stateMutability":"payable","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":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setOnlyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261014d600c55612711600d5566753d533d968000600e55600f80546001600160b01b03191675802da0f8c89786e0820962ae38f111be7966638701001790553480156200005057600080fd5b506040516200303b3803806200303b833981016040819052620000739162000948565b604080518082018252600881526733783350756e6b7360c01b602080830191825283518085019094526005845264544852454560d81b908401528151919291620000c0916000916200086f565b508051620000d69060019060208401906200086f565b505050620000f3620000ed6200012460201b60201c565b62000128565b620000fe816200017a565b600f546200011d906201000090046001600160a01b03166000620001f3565b5062000b53565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001ef90600b9060208401906200086f565b5050565b620001ef8282604051806020016040528060008152506200021560201b60201c565b6200022183836200028d565b620002306000848484620003e3565b620002885760405162461bcd60e51b815260206004820152603260248201526000805160206200301b83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d1565b505050565b6001600160a01b038216620002e55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001d1565b6000818152600260205260409020546001600160a01b0316156200034c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d1565b6200035a600083836200054c565b6001600160a01b03821660009081526003602052604081208054600192906200038590849062000a56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000404846001600160a01b03166200062860201b620014721760201c565b156200054057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200043e90339089908890889060040162000a00565b602060405180830381600087803b1580156200045957600080fd5b505af19250505080156200048c575060408051601f3d908101601f19168201909252620004899181019062000915565b60015b62000525573d808015620004bd576040519150601f19603f3d011682016040523d82523d6000602084013e620004c2565b606091505b5080516200051d5760405162461bcd60e51b815260206004820152603260248201526000805160206200301b83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000544565b5060015b949350505050565b620005648383836200028860201b620008ac1760201c565b6001600160a01b038316620005c257620005bc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620005e8565b816001600160a01b0316836001600160a01b031614620005e857620005e883826200062e565b6001600160a01b03821662000602576200028881620006db565b826001600160a01b0316826001600160a01b031614620002885762000288828262000795565b3b151590565b600060016200064884620007e660201b62000e741760201c565b62000654919062000a71565b600083815260076020526040902054909150808214620006a8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006ef9060019062000a71565b600083815260096020526040812054600880549394509092849081106200071a576200071a62000b27565b9060005260206000200154905080600883815481106200073e576200073e62000b27565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000779576200077962000b11565b6001900381819060005260206000200160009055905550505050565b6000620007ad83620007e660201b62000e741760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001d1565b506001600160a01b031660009081526003602052604090205490565b8280546200087d9062000abe565b90600052602060002090601f016020900481019282620008a15760008555620008ec565b82601f10620008bc57805160ff1916838001178555620008ec565b82800160010185558215620008ec579182015b82811115620008ec578251825591602001919060010190620008cf565b50620008fa929150620008fe565b5090565b5b80821115620008fa5760008155600101620008ff565b6000602082840312156200092857600080fd5b81516001600160e01b0319811681146200094157600080fd5b9392505050565b6000602082840312156200095b57600080fd5b81516001600160401b03808211156200097357600080fd5b818401915084601f8301126200098857600080fd5b8151818111156200099d576200099d62000b3d565b604051601f8201601f19908116603f01168101908382118183101715620009c857620009c862000b3d565b81604052828152876020848701011115620009e257600080fd5b620009f583602083016020880162000a8b565b979650505050505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a3f8160a085016020870162000a8b565b601f01601f19169190910160a00195945050505050565b6000821982111562000a6c5762000a6c62000afb565b500190565b60008282101562000a865762000a8662000afb565b500390565b60005b8381101562000aa857818101518382015260200162000a8e565b8381111562000ab8576000848401525b50505050565b600181811c9082168062000ad357607f821691505b6020821081141562000af557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6124b88062000b636000396000f3fe6080604052600436106101e35760003560e01c806359a7715a1161010257806398d5fdca11610095578063cbce4c9711610064578063cbce4c971461054b578063cfc86f7b1461056b578063e985e9c514610580578063f2fde38b146105c957600080fd5b806398d5fdca146104d6578063a22cb465146104eb578063b88d4fde1461050b578063c87b56dd1461052b57600080fd5b8063853828b6116100d1578063853828b61461047b5780638da5cb5b1461048357806391b7f5ed146104a157806395d89b41146104c157600080fd5b806359a7715a146104115780636352211e1461042657806370a0823114610446578063715018a61461046657600080fd5b80631dd02b4b1161017a57806342842e0e1161014957806342842e0e14610384578063438b6300146103a45780634f6ccce7146103d157806355f804b3146103f157600080fd5b80631dd02b4b1461030557806323b872dd1461032557806324e14073146103455780632f745c591461036457600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806316c61ccc146102b957806316f7c9fd146102d357806318160ddd146102e657600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b5061020861020336600461210a565b6105e9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d6102383660046120ef565b610614565b005b34801561024b57600080fd5b50610254610674565b6040516102149190612281565b34801561026d57600080fd5b5061028161027c36600461218d565b610706565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b43660046120c5565b61079b565b3480156102c557600080fd5b50600f546102089060ff1681565b61023d6102e136600461218d565b6108b1565b3480156102f257600080fd5b506008545b604051908152602001610214565b34801561031157600080fd5b5061023d6103203660046120ef565b610acb565b34801561033157600080fd5b5061023d610340366004611fe3565b610b2d565b34801561035157600080fd5b50600f5461020890610100900460ff1681565b34801561037057600080fd5b506102f761037f3660046120c5565b610ba8565b34801561039057600080fd5b5061023d61039f366004611fe3565b610c3e565b3480156103b057600080fd5b506103c46103bf366004611f95565b610c59565b604051610214919061223d565b3480156103dd57600080fd5b506102f76103ec36600461218d565b610cfb565b3480156103fd57600080fd5b5061023d61040c366004612144565b610d8e565b34801561041d57600080fd5b506102f7610ded565b34801561043257600080fd5b5061028161044136600461218d565b610dfd565b34801561045257600080fd5b506102f7610461366004611f95565b610e74565b34801561047257600080fd5b5061023d610efb565b61023d610f4f565b34801561048f57600080fd5b50600a546001600160a01b0316610281565b3480156104ad57600080fd5b5061023d6104bc36600461218d565b610fd2565b3480156104cd57600080fd5b5061025461101f565b3480156104e257600080fd5b50600e546102f7565b3480156104f757600080fd5b5061023d61050636600461209b565b61102e565b34801561051757600080fd5b5061023d61052636600461201f565b6110f3565b34801561053757600080fd5b5061025461054636600461218d565b611175565b34801561055757600080fd5b5061023d6105663660046120c5565b611250565b34801561057757600080fd5b5061025461132e565b34801561058c57600080fd5b5061020861059b366004611fb0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d557600080fd5b5061023d6105e4366004611f95565b6113bc565b60006001600160e01b0319821663780e9d6360e01b148061060e575061060e82611478565b92915050565b600a546001600160a01b031633146106615760405162461bcd60e51b8152602060048201819052602482015260008051602061246383398151915260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b60606000805461068390612374565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90612374565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661077f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610658565b506000908152600460205260409020546001600160a01b031690565b60006107a682610dfd565b9050806001600160a01b0316836001600160a01b031614156108145760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610658565b336001600160a01b03821614806108305750610830813361059b565b6108a25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610658565b6108ac83836114c8565b505050565b600f5460ff16156108f25760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610658565b60006108fd60085490565b9050600a821061094f5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206f6620392033783350756e6b7320706572206d696e7400006044820152606401610658565b600c54600d5461095f9190612331565b61096983836122e6565b106109b65760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178696d756d2033783350756e6b7320737570706c79006044820152606401610658565b81600e546109c49190612312565b341015610a135760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610658565b600f5460ff61010090910416151560011415610a9b576000610a3433610e74565b9050600a610a4284836122e6565b10610a995760405162461bcd60e51b815260206004820152602160248201527f4d6178696d756d206f6620392033783350756e6b7320706572206164647265736044820152607360f81b6064820152608401610658565b505b60005b828110156108ac57610ab933610ab483856122e6565b611536565b80610ac3816123af565b915050610a9e565b600a546001600160a01b03163314610b135760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600f80549115156101000261ff0019909216919091179055565b610b373382611550565b610b9d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610658565b6108ac838383611647565b6000610bb383610e74565b8210610c155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610658565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ac838383604051806020016040528060008152506110f3565b60606000610c6683610e74565b905060008167ffffffffffffffff811115610c8357610c83612436565b604051908082528060200260200182016040528015610cac578160200160208202803683370190505b50905060005b82811015610cf357610cc48582610ba8565b828281518110610cd657610cd6612420565b602090810291909101015280610ceb816123af565b915050610cb2565b509392505050565b6000610d0660085490565b8210610d695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610658565b60088281548110610d7c57610d7c612420565b90600052602060002001549050919050565b600a546001600160a01b03163314610dd65760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b8051610de990600b906020840190611e5a565b5050565b6000610df860085490565b905090565b6000818152600260205260408120546001600160a01b03168061060e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610658565b60006001600160a01b038216610edf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610658565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f435760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b610f4d60006117f2565b565b600a546001600160a01b03163314610f975760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600f5460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610fcf57600080fd5b50565b600a546001600160a01b0316331461101a5760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600e55565b60606001805461068390612374565b6001600160a01b0382163314156110875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610658565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110fd3383611550565b6111635760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610658565b61116f84848484611844565b50505050565b6000818152600260205260409020546060906001600160a01b03166111f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610658565b60006111fe611877565b9050600081511161121e5760405180602001604052806000815250611249565b8061122884611886565b6040516020016112399291906121d2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112985760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600c548111156112d95760405162461bcd60e51b815260206004820152600c60248201526b139bc81b5bdc994819da599d60a21b6044820152606401610658565b60006112e460085490565b905060005b82811015611311576112ff84610ab483856122e6565b80611309816123af565b9150506112e9565b5081600c60008282546113249190612331565b9091555050505050565b600b805461133b90612374565b80601f016020809104026020016040519081016040528092919081815260200182805461136790612374565b80156113b45780601f10611389576101008083540402835291602001916113b4565b820191906000526020600020905b81548152906001019060200180831161139757829003601f168201915b505050505081565b600a546001600160a01b031633146114045760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b6001600160a01b0381166114695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610658565b610fcf816117f2565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806114a957506001600160e01b03198216635b5e139f60e01b145b8061060e57506301ffc9a760e01b6001600160e01b031983161461060e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114fd82610dfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610de9828260405180602001604052806000815250611984565b6000818152600260205260408120546001600160a01b03166115c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610658565b60006115d483610dfd565b9050806001600160a01b0316846001600160a01b0316148061160f5750836001600160a01b031661160484610706565b6001600160a01b0316145b8061163f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165a82610dfd565b6001600160a01b0316146116c25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610658565b6001600160a01b0382166117245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610658565b61172f8383836119b7565b61173a6000826114c8565b6001600160a01b0383166000908152600360205260408120805460019290611763908490612331565b90915550506001600160a01b03821660009081526003602052604081208054600192906117919084906122e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61184f848484611647565b61185b84848484611a6f565b61116f5760405162461bcd60e51b815260040161065890612294565b6060600b805461068390612374565b6060816118aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d457806118be816123af565b91506118cd9050600a836122fe565b91506118ae565b60008167ffffffffffffffff8111156118ef576118ef612436565b6040519080825280601f01601f191660200182016040528015611919576020820181803683370190505b5090505b841561163f5761192e600183612331565b915061193b600a866123ca565b6119469060306122e6565b60f81b81838151811061195b5761195b612420565b60200101906001600160f81b031916908160001a90535061197d600a866122fe565b945061191d565b61198e8383611b7c565b61199b6000848484611a6f565b6108ac5760405162461bcd60e51b815260040161065890612294565b6001600160a01b038316611a1257611a0d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a35565b816001600160a01b0316836001600160a01b031614611a3557611a358382611cca565b6001600160a01b038216611a4c576108ac81611d67565b826001600160a01b0316826001600160a01b0316146108ac576108ac8282611e16565b60006001600160a01b0384163b15611b7157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab3903390899088908890600401612201565b602060405180830381600087803b158015611acd57600080fd5b505af1925050508015611afd575060408051601f3d908101601f19168201909252611afa91810190612127565b60015b611b57573d808015611b2b576040519150601f19603f3d011682016040523d82523d6000602084013e611b30565b606091505b508051611b4f5760405162461bcd60e51b815260040161065890612294565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061163f565b506001949350505050565b6001600160a01b038216611bd25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610658565b6000818152600260205260409020546001600160a01b031615611c375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610658565b611c43600083836119b7565b6001600160a01b0382166000908152600360205260408120805460019290611c6c9084906122e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611cd784610e74565b611ce19190612331565b600083815260076020526040902054909150808214611d34576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7990600190612331565b60008381526009602052604081205460088054939450909284908110611da157611da1612420565b906000526020600020015490508060088381548110611dc257611dc2612420565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dfa57611dfa61240a565b6001900381819060005260206000200160009055905550505050565b6000611e2183610e74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e6690612374565b90600052602060002090601f016020900481019282611e885760008555611ece565b82601f10611ea157805160ff1916838001178555611ece565b82800160010185558215611ece579182015b82811115611ece578251825591602001919060010190611eb3565b50611eda929150611ede565b5090565b5b80821115611eda5760008155600101611edf565b600067ffffffffffffffff80841115611f0e57611f0e612436565b604051601f8501601f19908116603f01168101908282118183101715611f3657611f36612436565b81604052809350858152868686011115611f4f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f8057600080fd5b919050565b80358015158114611f8057600080fd5b600060208284031215611fa757600080fd5b61124982611f69565b60008060408385031215611fc357600080fd5b611fcc83611f69565b9150611fda60208401611f69565b90509250929050565b600080600060608486031215611ff857600080fd5b61200184611f69565b925061200f60208501611f69565b9150604084013590509250925092565b6000806000806080858703121561203557600080fd5b61203e85611f69565b935061204c60208601611f69565b925060408501359150606085013567ffffffffffffffff81111561206f57600080fd5b8501601f8101871361208057600080fd5b61208f87823560208401611ef3565b91505092959194509250565b600080604083850312156120ae57600080fd5b6120b783611f69565b9150611fda60208401611f85565b600080604083850312156120d857600080fd5b6120e183611f69565b946020939093013593505050565b60006020828403121561210157600080fd5b61124982611f85565b60006020828403121561211c57600080fd5b81356112498161244c565b60006020828403121561213957600080fd5b81516112498161244c565b60006020828403121561215657600080fd5b813567ffffffffffffffff81111561216d57600080fd5b8201601f8101841361217e57600080fd5b61163f84823560208401611ef3565b60006020828403121561219f57600080fd5b5035919050565b600081518084526121be816020860160208601612348565b601f01601f19169290920160200192915050565b600083516121e4818460208801612348565b8351908301906121f8818360208801612348565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261223360808301846121a6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561227557835183529284019291840191600101612259565b50909695505050505050565b60208152600061124960208301846121a6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082198211156122f9576122f96123de565b500190565b60008261230d5761230d6123f4565b500490565b600081600019048311821515161561232c5761232c6123de565b500290565b600082821015612343576123436123de565b500390565b60005b8381101561236357818101518382015260200161234b565b8381111561116f5750506000910152565b600181811c9082168061238857607f821691505b602082108114156123a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c3576123c36123de565b5060010190565b6000826123d9576123d96123f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fcf57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a05c8963ee1b5be73921964a38fe16b1368b7aa6ffadb4084103e93c33c625df64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e6168696464656e2e6f72672f646174612f000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806359a7715a1161010257806398d5fdca11610095578063cbce4c9711610064578063cbce4c971461054b578063cfc86f7b1461056b578063e985e9c514610580578063f2fde38b146105c957600080fd5b806398d5fdca146104d6578063a22cb465146104eb578063b88d4fde1461050b578063c87b56dd1461052b57600080fd5b8063853828b6116100d1578063853828b61461047b5780638da5cb5b1461048357806391b7f5ed146104a157806395d89b41146104c157600080fd5b806359a7715a146104115780636352211e1461042657806370a0823114610446578063715018a61461046657600080fd5b80631dd02b4b1161017a57806342842e0e1161014957806342842e0e14610384578063438b6300146103a45780634f6ccce7146103d157806355f804b3146103f157600080fd5b80631dd02b4b1461030557806323b872dd1461032557806324e14073146103455780632f745c591461036457600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806316c61ccc146102b957806316f7c9fd146102d357806318160ddd146102e657600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b5061020861020336600461210a565b6105e9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d6102383660046120ef565b610614565b005b34801561024b57600080fd5b50610254610674565b6040516102149190612281565b34801561026d57600080fd5b5061028161027c36600461218d565b610706565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b43660046120c5565b61079b565b3480156102c557600080fd5b50600f546102089060ff1681565b61023d6102e136600461218d565b6108b1565b3480156102f257600080fd5b506008545b604051908152602001610214565b34801561031157600080fd5b5061023d6103203660046120ef565b610acb565b34801561033157600080fd5b5061023d610340366004611fe3565b610b2d565b34801561035157600080fd5b50600f5461020890610100900460ff1681565b34801561037057600080fd5b506102f761037f3660046120c5565b610ba8565b34801561039057600080fd5b5061023d61039f366004611fe3565b610c3e565b3480156103b057600080fd5b506103c46103bf366004611f95565b610c59565b604051610214919061223d565b3480156103dd57600080fd5b506102f76103ec36600461218d565b610cfb565b3480156103fd57600080fd5b5061023d61040c366004612144565b610d8e565b34801561041d57600080fd5b506102f7610ded565b34801561043257600080fd5b5061028161044136600461218d565b610dfd565b34801561045257600080fd5b506102f7610461366004611f95565b610e74565b34801561047257600080fd5b5061023d610efb565b61023d610f4f565b34801561048f57600080fd5b50600a546001600160a01b0316610281565b3480156104ad57600080fd5b5061023d6104bc36600461218d565b610fd2565b3480156104cd57600080fd5b5061025461101f565b3480156104e257600080fd5b50600e546102f7565b3480156104f757600080fd5b5061023d61050636600461209b565b61102e565b34801561051757600080fd5b5061023d61052636600461201f565b6110f3565b34801561053757600080fd5b5061025461054636600461218d565b611175565b34801561055757600080fd5b5061023d6105663660046120c5565b611250565b34801561057757600080fd5b5061025461132e565b34801561058c57600080fd5b5061020861059b366004611fb0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d557600080fd5b5061023d6105e4366004611f95565b6113bc565b60006001600160e01b0319821663780e9d6360e01b148061060e575061060e82611478565b92915050565b600a546001600160a01b031633146106615760405162461bcd60e51b8152602060048201819052602482015260008051602061246383398151915260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b60606000805461068390612374565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90612374565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661077f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610658565b506000908152600460205260409020546001600160a01b031690565b60006107a682610dfd565b9050806001600160a01b0316836001600160a01b031614156108145760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610658565b336001600160a01b03821614806108305750610830813361059b565b6108a25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610658565b6108ac83836114c8565b505050565b600f5460ff16156108f25760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610658565b60006108fd60085490565b9050600a821061094f5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206f6620392033783350756e6b7320706572206d696e7400006044820152606401610658565b600c54600d5461095f9190612331565b61096983836122e6565b106109b65760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178696d756d2033783350756e6b7320737570706c79006044820152606401610658565b81600e546109c49190612312565b341015610a135760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610658565b600f5460ff61010090910416151560011415610a9b576000610a3433610e74565b9050600a610a4284836122e6565b10610a995760405162461bcd60e51b815260206004820152602160248201527f4d6178696d756d206f6620392033783350756e6b7320706572206164647265736044820152607360f81b6064820152608401610658565b505b60005b828110156108ac57610ab933610ab483856122e6565b611536565b80610ac3816123af565b915050610a9e565b600a546001600160a01b03163314610b135760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600f80549115156101000261ff0019909216919091179055565b610b373382611550565b610b9d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610658565b6108ac838383611647565b6000610bb383610e74565b8210610c155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610658565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ac838383604051806020016040528060008152506110f3565b60606000610c6683610e74565b905060008167ffffffffffffffff811115610c8357610c83612436565b604051908082528060200260200182016040528015610cac578160200160208202803683370190505b50905060005b82811015610cf357610cc48582610ba8565b828281518110610cd657610cd6612420565b602090810291909101015280610ceb816123af565b915050610cb2565b509392505050565b6000610d0660085490565b8210610d695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610658565b60088281548110610d7c57610d7c612420565b90600052602060002001549050919050565b600a546001600160a01b03163314610dd65760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b8051610de990600b906020840190611e5a565b5050565b6000610df860085490565b905090565b6000818152600260205260408120546001600160a01b03168061060e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610658565b60006001600160a01b038216610edf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610658565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f435760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b610f4d60006117f2565b565b600a546001600160a01b03163314610f975760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600f5460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050610fcf57600080fd5b50565b600a546001600160a01b0316331461101a5760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600e55565b60606001805461068390612374565b6001600160a01b0382163314156110875760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610658565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110fd3383611550565b6111635760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610658565b61116f84848484611844565b50505050565b6000818152600260205260409020546060906001600160a01b03166111f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610658565b60006111fe611877565b9050600081511161121e5760405180602001604052806000815250611249565b8061122884611886565b6040516020016112399291906121d2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112985760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b600c548111156112d95760405162461bcd60e51b815260206004820152600c60248201526b139bc81b5bdc994819da599d60a21b6044820152606401610658565b60006112e460085490565b905060005b82811015611311576112ff84610ab483856122e6565b80611309816123af565b9150506112e9565b5081600c60008282546113249190612331565b9091555050505050565b600b805461133b90612374565b80601f016020809104026020016040519081016040528092919081815260200182805461136790612374565b80156113b45780601f10611389576101008083540402835291602001916113b4565b820191906000526020600020905b81548152906001019060200180831161139757829003601f168201915b505050505081565b600a546001600160a01b031633146114045760405162461bcd60e51b815260206004820181905260248201526000805160206124638339815191526044820152606401610658565b6001600160a01b0381166114695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610658565b610fcf816117f2565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806114a957506001600160e01b03198216635b5e139f60e01b145b8061060e57506301ffc9a760e01b6001600160e01b031983161461060e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114fd82610dfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610de9828260405180602001604052806000815250611984565b6000818152600260205260408120546001600160a01b03166115c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610658565b60006115d483610dfd565b9050806001600160a01b0316846001600160a01b0316148061160f5750836001600160a01b031661160484610706565b6001600160a01b0316145b8061163f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661165a82610dfd565b6001600160a01b0316146116c25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610658565b6001600160a01b0382166117245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610658565b61172f8383836119b7565b61173a6000826114c8565b6001600160a01b0383166000908152600360205260408120805460019290611763908490612331565b90915550506001600160a01b03821660009081526003602052604081208054600192906117919084906122e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61184f848484611647565b61185b84848484611a6f565b61116f5760405162461bcd60e51b815260040161065890612294565b6060600b805461068390612374565b6060816118aa5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d457806118be816123af565b91506118cd9050600a836122fe565b91506118ae565b60008167ffffffffffffffff8111156118ef576118ef612436565b6040519080825280601f01601f191660200182016040528015611919576020820181803683370190505b5090505b841561163f5761192e600183612331565b915061193b600a866123ca565b6119469060306122e6565b60f81b81838151811061195b5761195b612420565b60200101906001600160f81b031916908160001a90535061197d600a866122fe565b945061191d565b61198e8383611b7c565b61199b6000848484611a6f565b6108ac5760405162461bcd60e51b815260040161065890612294565b6001600160a01b038316611a1257611a0d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a35565b816001600160a01b0316836001600160a01b031614611a3557611a358382611cca565b6001600160a01b038216611a4c576108ac81611d67565b826001600160a01b0316826001600160a01b0316146108ac576108ac8282611e16565b60006001600160a01b0384163b15611b7157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab3903390899088908890600401612201565b602060405180830381600087803b158015611acd57600080fd5b505af1925050508015611afd575060408051601f3d908101601f19168201909252611afa91810190612127565b60015b611b57573d808015611b2b576040519150601f19603f3d011682016040523d82523d6000602084013e611b30565b606091505b508051611b4f5760405162461bcd60e51b815260040161065890612294565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061163f565b506001949350505050565b6001600160a01b038216611bd25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610658565b6000818152600260205260409020546001600160a01b031615611c375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610658565b611c43600083836119b7565b6001600160a01b0382166000908152600360205260408120805460019290611c6c9084906122e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611cd784610e74565b611ce19190612331565b600083815260076020526040902054909150808214611d34576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7990600190612331565b60008381526009602052604081205460088054939450909284908110611da157611da1612420565b906000526020600020015490508060088381548110611dc257611dc2612420565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dfa57611dfa61240a565b6001900381819060005260206000200160009055905550505050565b6000611e2183610e74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e6690612374565b90600052602060002090601f016020900481019282611e885760008555611ece565b82601f10611ea157805160ff1916838001178555611ece565b82800160010185558215611ece579182015b82811115611ece578251825591602001919060010190611eb3565b50611eda929150611ede565b5090565b5b80821115611eda5760008155600101611edf565b600067ffffffffffffffff80841115611f0e57611f0e612436565b604051601f8501601f19908116603f01168101908282118183101715611f3657611f36612436565b81604052809350858152868686011115611f4f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f8057600080fd5b919050565b80358015158114611f8057600080fd5b600060208284031215611fa757600080fd5b61124982611f69565b60008060408385031215611fc357600080fd5b611fcc83611f69565b9150611fda60208401611f69565b90509250929050565b600080600060608486031215611ff857600080fd5b61200184611f69565b925061200f60208501611f69565b9150604084013590509250925092565b6000806000806080858703121561203557600080fd5b61203e85611f69565b935061204c60208601611f69565b925060408501359150606085013567ffffffffffffffff81111561206f57600080fd5b8501601f8101871361208057600080fd5b61208f87823560208401611ef3565b91505092959194509250565b600080604083850312156120ae57600080fd5b6120b783611f69565b9150611fda60208401611f85565b600080604083850312156120d857600080fd5b6120e183611f69565b946020939093013593505050565b60006020828403121561210157600080fd5b61124982611f85565b60006020828403121561211c57600080fd5b81356112498161244c565b60006020828403121561213957600080fd5b81516112498161244c565b60006020828403121561215657600080fd5b813567ffffffffffffffff81111561216d57600080fd5b8201601f8101841361217e57600080fd5b61163f84823560208401611ef3565b60006020828403121561219f57600080fd5b5035919050565b600081518084526121be816020860160208601612348565b601f01601f19169290920160200192915050565b600083516121e4818460208801612348565b8351908301906121f8818360208801612348565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261223360808301846121a6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561227557835183529284019291840191600101612259565b50909695505050505050565b60208152600061124960208301846121a6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082198211156122f9576122f96123de565b500190565b60008261230d5761230d6123f4565b500490565b600081600019048311821515161561232c5761232c6123de565b500290565b600082821015612343576123436123de565b500390565b60005b8381101561236357818101518382015260200161234b565b8381111561116f5750506000910152565b600181811c9082168061238857607f821691505b602082108114156123a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c3576123c36123de565b5060010190565b6000826123d9576123d96123f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fcf57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a05c8963ee1b5be73921964a38fe16b1368b7aa6ffadb4084103e93c33c625df64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e6168696464656e2e6f72672f646174612f000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.ahidden.org/data/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [2] : 68747470733a2f2f6170692e6168696464656e2e6f72672f646174612f000000


Deployed Bytecode Sourcemap

117:2800:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933:224:5;;;;;;;;;;-1:-1:-1;933:224:5;;;;;:::i;:::-;;:::i;:::-;;;6609:14:14;;6602:22;6584:41;;6572:2;6557:18;933:224:5;;;;;;;;1494:74:13;;;;;;;;;;-1:-1:-1;1494:74:13;;;;;:::i;:::-;;:::i;:::-;;2412:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3971:221::-;;;;;;;;;;-1:-1:-1;3971:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5224:55:14;;;5206:74;;5194:2;5179:18;3971:221:4;5060:226:14;3494:411:4;;;;;;;;;;-1:-1:-1;3494:411:4;;;;;:::i;:::-;;:::i;362:27:13:-;;;;;;;;;;-1:-1:-1;362:27:13;;;;;;;;644:744;;;;;;:::i;:::-;;:::i;1573:113:5:-;;;;;;;;;;-1:-1:-1;1661:10:5;:17;1573:113;;;16369:25:14;;;16357:2;16342:18;1573:113:5;16223:177:14;1577:92:13;;;;;;;;;;-1:-1:-1;1577:92:13;;;;;:::i;:::-;;:::i;4861:339:4:-;;;;;;;;;;-1:-1:-1;4861:339:4;;;;;:::i;:::-;;:::i;396:33:13:-;;;;;;;;;;-1:-1:-1;396:33:13;;;;;;;;;;;1241:256:5;;;;;;;;;;-1:-1:-1;1241:256:5;;;;;:::i;:::-;;:::i;5271:185:4:-;;;;;;;;;;-1:-1:-1;5271:185:4;;;;;:::i;:::-;;:::i;1677:342:13:-;;;;;;;;;;-1:-1:-1;1677:342:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1763:233:5:-;;;;;;;;;;-1:-1:-1;1763:233:5;;;;;:::i;:::-;;:::i;2339:102:13:-;;;;;;;;;;-1:-1:-1;2339:102:13;;;;;:::i;:::-;;:::i;1396:90::-;;;;;;;;;;;;;:::i;2106:239:4:-;;;;;;;;;;-1:-1:-1;2106:239:4;;;;;:::i;:::-;;:::i;1836:208::-;;;;;;;;;;-1:-1:-1;1836:208:4;;;;;:::i;:::-;;:::i;1648:94:11:-;;;;;;;;;;;;;:::i;2761:153:13:-;;;:::i;997:87:11:-;;;;;;;;;;-1:-1:-1;1070:6:11;;-1:-1:-1;;;;;1070:6:11;997:87;;2027:93:13;;;;;;;;;;-1:-1:-1;2027:93:13;;;;;:::i;:::-;;:::i;2581:104:4:-;;;;;;;;;;;;;:::i;2128:81:13:-;;;;;;;;;;-1:-1:-1;2195:6:13;;2128:81;;4264:295:4;;;;;;;;;;-1:-1:-1;4264:295:4;;;;;:::i;:::-;;:::i;5527:328::-;;;;;;;;;;-1:-1:-1;5527:328:4;;;;;:::i;:::-;;:::i;2756:334::-;;;;;;;;;;-1:-1:-1;2756:334:4;;;;;:::i;:::-;;:::i;2449:304:13:-;;;;;;;;;;-1:-1:-1;2449:304:13;;;;;:::i;:::-;;:::i;209:27::-;;;;;;;;;;;;;:::i;4630:164:4:-;;;;;;;;;;-1:-1:-1;4630:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4751:25:4;;;4727:4;4751:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4630:164;1897:192:11;;;;;;;;;;-1:-1:-1;1897:192:11;;;;;:::i;:::-;;:::i;933:224:5:-;1035:4;-1:-1:-1;;;;;;1059:50:5;;-1:-1:-1;;;1059:50:5;;:90;;;1113:36;1137:11;1113:23;:36::i;:::-;1052:97;933:224;-1:-1:-1;;933:224:5:o;1494:74:13:-;1070:6:11;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;;;;;;;;;1547:7:13::1;:13:::0;;-1:-1:-1;;1547:13:13::1;::::0;::::1;;::::0;;;::::1;::::0;;1494:74::o;2412:100:4:-;2466:13;2499:5;2492:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2412:100;:::o;3971:221::-;4047:7;7454:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7454:16:4;4067:73;;;;-1:-1:-1;;;4067:73:4;;12476:2:14;4067:73:4;;;12458:21:14;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:14;;;12598:42;12657:19;;4067:73:4;12274:408:14;4067:73:4;-1:-1:-1;4160:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4160:24:4;;3971:221::o;3494:411::-;3575:13;3591:23;3606:7;3591:14;:23::i;:::-;3575:39;;3639:5;-1:-1:-1;;;;;3633:11:4;:2;-1:-1:-1;;;;;3633:11:4;;;3625:57;;;;-1:-1:-1;;;3625:57:4;;14076:2:14;3625:57:4;;;14058:21:14;14115:2;14095:18;;;14088:30;14154:34;14134:18;;;14127:62;-1:-1:-1;;;14205:18:14;;;14198:31;14246:19;;3625:57:4;13874:397:14;3625:57:4;682:10:1;-1:-1:-1;;;;;3717:21:4;;;;:62;;-1:-1:-1;3742:37:4;3759:5;682:10:1;4630:164:4;:::i;3742:37::-;3695:168;;;;-1:-1:-1;;;3695:168:4;;10510:2:14;3695:168:4;;;10492:21:14;10549:2;10529:18;;;10522:30;10588:34;10568:18;;;10561:62;10659:26;10639:18;;;10632:54;10703:19;;3695:168:4;10308:420:14;3695:168:4;3876:21;3885:2;3889:7;3876:8;:21::i;:::-;3564:341;3494:411;;:::o;644:744:13:-;710:7;;;;709:8;700:63;;;;-1:-1:-1;;;700:63:13;;7062:2:14;700:63:13;;;7044:21:14;7101:2;7081:18;;;7074:30;-1:-1:-1;;;7120:18:14;;;7113:41;7171:18;;700:63:13;6860:335:14;700:63:13;774:14;791:13;1661:10:5;:17;;1573:113;791:13:13;774:30;;830:2;824:3;:8;815:83;;;;-1:-1:-1;;;815:83:13;;11756:2:14;815:83:13;;;11738:21:14;11795:2;11775:18;;;11768:30;11834:32;11814:18;;;11807:60;11884:18;;815:83:13;11554:354:14;815:83:13;943:9;;933:7;;:19;;;;:::i;:::-;918:12;927:3;918:6;:12;:::i;:::-;:34;909:83;;;;-1:-1:-1;;;909:83:13;;14832:2:14;909:83:13;;;14814:21:14;14871:2;14851:18;;;14844:30;14910:33;14890:18;;;14883:61;14961:18;;909:83:13;14630:355:14;909:83:13;1034:3;1025:6;;:12;;;;:::i;:::-;1012:9;:25;;1003:77;;;;-1:-1:-1;;;1003:77:13;;14478:2:14;1003:77:13;;;14460:21:14;14517:2;14497:18;;;14490:30;14556:27;14536:18;;;14529:55;14601:18;;1003:77:13;14276:349:14;1003:77:13;1096:14;;;;;;;;:20;;:14;:20;1093:186;;;1132:23;1158:21;1168:10;1158:9;:21::i;:::-;1132:47;-1:-1:-1;1226:2:13;1202:21;1220:3;1132:47;1202:21;:::i;:::-;:26;1194:73;;;;-1:-1:-1;;;1194:73:13;;16023:2:14;1194:73:13;;;16005:21:14;16062:2;16042:18;;;16035:30;16101:34;16081:18;;;16074:62;-1:-1:-1;;;16152:18:14;;;16145:31;16193:19;;1194:73:13;15821:397:14;1194:73:13;1117:162;1093:186;1295:9;1291:90;1310:3;1306:1;:7;1291:90;;;1334:35;1345:10;1357;1366:1;1357:6;:10;:::i;:::-;1334:9;:35::i;:::-;1315:3;;;;:::i;:::-;;;;1291:90;;1577:92;1070:6:11;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;1641:14:13::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;1641:20:13;;::::1;::::0;;;::::1;::::0;;1577:92::o;4861:339:4:-;5056:41;682:10:1;5089:7:4;5056:18;:41::i;:::-;5048:103;;;;-1:-1:-1;;;5048:103:4;;15192:2:14;5048:103:4;;;15174:21:14;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;-1:-1:-1;;;15321:18:14;;;15314:47;15378:19;;5048:103:4;14990:413:14;5048:103:4;5164:28;5174:4;5180:2;5184:7;5164:9;:28::i;1241:256:5:-;1338:7;1374:23;1391:5;1374:16;:23::i;:::-;1366:5;:31;1358:87;;;;-1:-1:-1;;;1358:87:5;;7402:2:14;1358:87:5;;;7384:21:14;7441:2;7421:18;;;7414:30;7480:34;7460:18;;;7453:62;-1:-1:-1;;;7531:18:14;;;7524:41;7582:19;;1358:87:5;7200:407:14;1358:87:5;-1:-1:-1;;;;;;1463:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1241:256::o;5271:185:4:-;5409:39;5426:4;5432:2;5436:7;5409:39;;;;;;;;;;;;:16;:39::i;1677:342:13:-;1736:16;1765:18;1786:17;1796:6;1786:9;:17::i;:::-;1765:38;;1816:25;1858:10;1844:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1844:25:13;;1816:53;;1884:9;1880:106;1899:10;1895:1;:14;1880:106;;;1944:30;1964:6;1972:1;1944:19;:30::i;:::-;1930:8;1939:1;1930:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;1911:3;;;;:::i;:::-;;;;1880:106;;;-1:-1:-1;2003:8:13;1677:342;-1:-1:-1;;;1677:342:13:o;1763:233:5:-;1838:7;1874:30;1661:10;:17;;1573:113;1874:30;1866:5;:38;1858:95;;;;-1:-1:-1;;;1858:95:5;;15610:2:14;1858:95:5;;;15592:21:14;15649:2;15629:18;;;15622:30;15688:34;15668:18;;;15661:62;-1:-1:-1;;;15739:18:14;;;15732:42;15791:19;;1858:95:5;15408:408:14;1858:95:5;1971:10;1982:5;1971:17;;;;;;;;:::i;:::-;;;;;;;;;1964:24;;1763:233;;;:::o;2339:102:13:-;1070:6:11;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;2410:23:13;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2339:102:::0;:::o;1396:90::-;1438:7;1465:13;1661:10:5;:17;;1573:113;1465:13:13;1458:20;;1396:90;:::o;2106:239:4:-;2178:7;2214:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2214:16:4;2249:19;2241:73;;;;-1:-1:-1;;;2241:73:4;;11346:2:14;2241:73:4;;;11328:21:14;11385:2;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;-1:-1:-1;;;11475:18:14;;;11468:39;11524:19;;2241:73:4;11144:405:14;1836:208:4;1908:7;-1:-1:-1;;;;;1936:19:4;;1928:74;;;;-1:-1:-1;;;1928:74:4;;10935:2:14;1928:74:4;;;10917:21:14;10974:2;10954:18;;;10947:30;11013:34;10993:18;;;10986:62;-1:-1:-1;;;11064:18:14;;;11057:40;11114:19;;1928:74:4;10733:406:14;1928:74:4;-1:-1:-1;;;;;;2020:16:4;;;;;:9;:16;;;;;;;1836:208::o;1648:94:11:-;1070:6;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;2761:153:13:-;1070:6:11;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;2886:4:13::1;::::0;2878:27:::1;::::0;2838:21:::1;::::0;2886:4;;::::1;-1:-1:-1::0;;;;;2886:4:13::1;::::0;2878:27:::1;::::0;::::1;;::::0;2838:21;;2820:15:::1;2878:27:::0;2820:15;2878:27;2838:21;2886:4;2878:27;::::1;;;;;;2870:36;;;::::0;::::1;;2809:105;2761:153::o:0;2027:93::-;1070:6:11;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;2094:6:13::1;:18:::0;2027:93::o;2581:104:4:-;2637:13;2670:7;2663:14;;;;;:::i;4264:295::-;-1:-1:-1;;;;;4367:24:4;;682:10:1;4367:24:4;;4359:62;;;;-1:-1:-1;;;4359:62:4;;9402:2:14;4359:62:4;;;9384:21:14;9441:2;9421:18;;;9414:30;9480:27;9460:18;;;9453:55;9525:18;;4359:62:4;9200:349:14;4359:62:4;682:10:1;4434:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4434:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4434:53:4;;;;;;;;;;4503:48;;6584:41:14;;;4434:42:4;;682:10:1;4503:48:4;;6557:18:14;4503:48:4;;;;;;;4264:295;;:::o;5527:328::-;5702:41;682:10:1;5735:7:4;5702:18;:41::i;:::-;5694:103;;;;-1:-1:-1;;;5694:103:4;;15192:2:14;5694:103:4;;;15174:21:14;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;-1:-1:-1;;;15321:18:14;;;15314:47;15378:19;;5694:103:4;14990:413:14;5694:103:4;5808:39;5822:4;5828:2;5832:7;5841:5;5808:13;:39::i;:::-;5527:328;;;;:::o;2756:334::-;7430:4;7454:16;;;:7;:16;;;;;;2829:13;;-1:-1:-1;;;;;7454:16:4;2855:76;;;;-1:-1:-1;;;2855:76:4;;13660:2:14;2855:76:4;;;13642:21:14;13699:2;13679:18;;;13672:30;13738:34;13718:18;;;13711:62;-1:-1:-1;;;13789:18:14;;;13782:45;13844:19;;2855:76:4;13458:411:14;2855:76:4;2944:21;2968:10;:8;:10::i;:::-;2944:34;;3020:1;3002:7;2996:21;:25;:86;;;;;;;;;;;;;;;;;3048:7;3057:18;:7;:16;:18::i;:::-;3031:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2996:86;2989:93;2756:334;-1:-1:-1;;;2756:334:4:o;2449:304:13:-;1070:6:11;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;2545:9:13::1;;2534:7;:20;;2525:47;;;::::0;-1:-1:-1;;;2525:47:13;;9756:2:14;2525:47:13::1;::::0;::::1;9738:21:14::0;9795:2;9775:18;;;9768:30;-1:-1:-1;;;9814:18:14;;;9807:42;9866:18;;2525:47:13::1;9554:336:14::0;2525:47:13::1;2585:14;2602:13;1661:10:5::0;:17;;1573:113;2602:13:13::1;2585:30;;2630:9;2626:87;2645:7;2641:1;:11;2626:87;;;2673:28;2684:3:::0;2689:10:::1;2698:1:::0;2689:6;:10:::1;:::i;2673:28::-;2654:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2626:87;;;;2738:7;2725:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;2449:304:13:o;209:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1897:192:11:-;1070:6;;-1:-1:-1;;;;;1070:6:11;682:10:1;1217:23:11;1209:68;;;;-1:-1:-1;;;1209:68:11;;12889:2:14;1209:68:11;;;12871:21:14;;;12908:18;;;12901:30;-1:-1:-1;;;;;;;;;;;12947:18:14;;;12940:62;13019:18;;1209:68:11;12687:356:14;1209:68:11;-1:-1:-1;;;;;1986:22:11;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:11;;8233:2:14;1978:73:11::1;::::0;::::1;8215:21:14::0;8272:2;8252:18;;;8245:30;8311:34;8291:18;;;8284:62;-1:-1:-1;;;8362:18:14;;;8355:36;8408:19;;1978:73:11::1;8031:402:14::0;1978:73:11::1;2062:19;2072:8;2062:9;:19::i;743:387:0:-:0;1066:20;1114:8;;;743:387::o;1467:305:4:-;1569:4;-1:-1:-1;;;;;;1606:40:4;;-1:-1:-1;;;1606:40:4;;:105;;-1:-1:-1;;;;;;;1663:48:4;;-1:-1:-1;;;1663:48:4;1606:105;:158;;;-1:-1:-1;;;;;;;;;;894:40:3;;;1728:36:4;785:157:3;11347:174:4;11422:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11422:29:4;-1:-1:-1;;;;;11422:29:4;;;;;;;;:24;;11476:23;11422:24;11476:14;:23::i;:::-;-1:-1:-1;;;;;11467:46:4;;;;;;;;;;;11347:174;;:::o;8349:110::-;8425:26;8435:2;8439:7;8425:26;;;;;;;;;;;;:9;:26::i;7659:348::-;7752:4;7454:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7454:16:4;7769:73;;;;-1:-1:-1;;;7769:73:4;;10097:2:14;7769:73:4;;;10079:21:14;10136:2;10116:18;;;10109:30;10175:34;10155:18;;;10148:62;-1:-1:-1;;;10226:18:14;;;10219:42;10278:19;;7769:73:4;9895:408:14;7769:73:4;7853:13;7869:23;7884:7;7869:14;:23::i;:::-;7853:39;;7922:5;-1:-1:-1;;;;;7911:16:4;:7;-1:-1:-1;;;;;7911:16:4;;:51;;;;7955:7;-1:-1:-1;;;;;7931:31:4;:20;7943:7;7931:11;:20::i;:::-;-1:-1:-1;;;;;7931:31:4;;7911:51;:87;;;-1:-1:-1;;;;;;4751:25:4;;;4727:4;4751:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7966:32;7903:96;7659:348;-1:-1:-1;;;;7659:348:4:o;10651:578::-;10810:4;-1:-1:-1;;;;;10783:31:4;:23;10798:7;10783:14;:23::i;:::-;-1:-1:-1;;;;;10783:31:4;;10775:85;;;;-1:-1:-1;;;10775:85:4;;13250:2:14;10775:85:4;;;13232:21:14;13289:2;13269:18;;;13262:30;13328:34;13308:18;;;13301:62;-1:-1:-1;;;13379:18:14;;;13372:39;13428:19;;10775:85:4;13048:405:14;10775:85:4;-1:-1:-1;;;;;10879:16:4;;10871:65;;;;-1:-1:-1;;;10871:65:4;;8997:2:14;10871:65:4;;;8979:21:14;9036:2;9016:18;;;9009:30;9075:34;9055:18;;;9048:62;-1:-1:-1;;;9126:18:14;;;9119:34;9170:19;;10871:65:4;8795:400:14;10871:65:4;10949:39;10970:4;10976:2;10980:7;10949:20;:39::i;:::-;11053:29;11070:1;11074:7;11053:8;:29::i;:::-;-1:-1:-1;;;;;11095:15:4;;;;;;:9;:15;;;;;:20;;11114:1;;11095:15;:20;;11114:1;;11095:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11126:13:4;;;;;;:9;:13;;;;;:18;;11143:1;;11126:13;:18;;11143:1;;11126:18;:::i;:::-;;;;-1:-1:-1;;11155:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11155:21:4;-1:-1:-1;;;;;11155:21:4;;;;;;;;;11194:27;;11155:16;;11194:27;;;;;;;10651:578;;;:::o;2097:173:11:-;2172:6;;;-1:-1:-1;;;;;2189:17:11;;;-1:-1:-1;;;;;;2189:17:11;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;6737:315:4:-;6894:28;6904:4;6910:2;6914:7;6894:9;:28::i;:::-;6941:48;6964:4;6970:2;6974:7;6983:5;6941:22;:48::i;:::-;6933:111;;;;-1:-1:-1;;;6933:111:4;;;;;;;:::i;2217:114:13:-;2277:13;2310;2303:20;;;;;:::i;288:723:12:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:12;;;;;;;;;;;;-1:-1:-1;;;592:10:12;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:12;;-1:-1:-1;744:2:12;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:12;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:12;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:12;;;;;;;;-1:-1:-1;949:11:12;958:2;949:11;;:::i;:::-;;;818:154;;8686:321:4;8816:18;8822:2;8826:7;8816:5;:18::i;:::-;8867:54;8898:1;8902:2;8906:7;8915:5;8867:22;:54::i;:::-;8845:154;;;;-1:-1:-1;;;8845:154:4;;;;;;;:::i;2609:589:5:-;-1:-1:-1;;;;;2815:18:5;;2811:187;;2850:40;2882:7;4025:10;:17;;3998:24;;;;:15;:24;;;;;:44;;;4053:24;;;;;;;;;;;;3921:164;2850:40;2811:187;;;2920:2;-1:-1:-1;;;;;2912:10:5;:4;-1:-1:-1;;;;;2912:10:5;;2908:90;;2939:47;2972:4;2978:7;2939:32;:47::i;:::-;-1:-1:-1;;;;;3012:16:5;;3008:183;;3045:45;3082:7;3045:36;:45::i;3008:183::-;3118:4;-1:-1:-1;;;;;3112:10:5;:2;-1:-1:-1;;;;;3112:10:5;;3108:83;;3139:40;3167:2;3171:7;3139:27;:40::i;12086:799:4:-;12241:4;-1:-1:-1;;;;;12262:13:4;;1066:20:0;1114:8;12258:620:4;;12298:72;;-1:-1:-1;;;12298:72:4;;-1:-1:-1;;;;;12298:36:4;;;;;:72;;682:10:1;;12349:4:4;;12355:7;;12364:5;;12298:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12298:72:4;;;;;;;;-1:-1:-1;;12298:72:4;;;;;;;;;;;;:::i;:::-;;;12294:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12540:13:4;;12536:272;;12583:60;;-1:-1:-1;;;12583:60:4;;;;;;;:::i;12536:272::-;12758:6;12752:13;12743:6;12739:2;12735:15;12728:38;12294:529;-1:-1:-1;;;;;;12421:51:4;-1:-1:-1;;;12421:51:4;;-1:-1:-1;12414:58:4;;12258:620;-1:-1:-1;12862:4:4;12086:799;;;;;;:::o;9343:382::-;-1:-1:-1;;;;;9423:16:4;;9415:61;;;;-1:-1:-1;;;9415:61:4;;12115:2:14;9415:61:4;;;12097:21:14;;;12134:18;;;12127:30;12193:34;12173:18;;;12166:62;12245:18;;9415:61:4;11913:356:14;9415:61:4;7430:4;7454:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7454:16:4;:30;9487:58;;;;-1:-1:-1;;;9487:58:4;;8640:2:14;9487:58:4;;;8622:21:14;8679:2;8659:18;;;8652:30;8718;8698:18;;;8691:58;8766:18;;9487:58:4;8438:352:14;9487:58:4;9558:45;9587:1;9591:2;9595:7;9558:20;:45::i;:::-;-1:-1:-1;;;;;9616:13:4;;;;;;:9;:13;;;;;:18;;9633:1;;9616:13;:18;;9633:1;;9616:18;:::i;:::-;;;;-1:-1:-1;;9645:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9645:21:4;-1:-1:-1;;;;;9645:21:4;;;;;;;;9684:33;;9645:16;;;9684:33;;9645:16;;9684:33;9343:382;;:::o;4712:988:5:-;4978:22;5028:1;5003:22;5020:4;5003:16;:22::i;:::-;:26;;;;:::i;:::-;5040:18;5061:26;;;:17;:26;;;;;;4978:51;;-1:-1:-1;5194:28:5;;;5190:328;;-1:-1:-1;;;;;5261:18:5;;5239:19;5261:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5312:30;;;;;;:44;;;5429:30;;:17;:30;;;;;:43;;;5190:328;-1:-1:-1;5614:26:5;;;;:17;:26;;;;;;;;5607:33;;;-1:-1:-1;;;;;5658:18:5;;;;;:12;:18;;;;;:34;;;;;;;5651:41;4712:988::o;5995:1079::-;6273:10;:17;6248:22;;6273:21;;6293:1;;6273:21;:::i;:::-;6305:18;6326:24;;;:15;:24;;;;;;6699:10;:26;;6248:46;;-1:-1:-1;6326:24:5;;6248:46;;6699:26;;;;;;:::i;:::-;;;;;;;;;6677:48;;6763:11;6738:10;6749;6738:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6843:28;;;:15;:28;;;;;;;:41;;;7015:24;;;;;7008:31;7050:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6066:1008;;;5995:1079;:::o;3499:221::-;3584:14;3601:20;3618:2;3601:16;:20::i;:::-;-1:-1:-1;;;;;3632:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3677:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3499:221:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:14;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:14;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:14;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:14:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:14;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:14;;4138:180;-1:-1:-1;4138:180:14:o;4323:257::-;4364:3;4402:5;4396:12;4429:6;4424:3;4417:19;4445:63;4501:6;4494:4;4489:3;4485:14;4478:4;4471:5;4467:16;4445:63;:::i;:::-;4562:2;4541:15;-1:-1:-1;;4537:29:14;4528:39;;;;4569:4;4524:50;;4323:257;-1:-1:-1;;4323:257:14:o;4585:470::-;4764:3;4802:6;4796:13;4818:53;4864:6;4859:3;4852:4;4844:6;4840:17;4818:53;:::i;:::-;4934:13;;4893:16;;;;4956:57;4934:13;4893:16;4990:4;4978:17;;4956:57;:::i;:::-;5029:20;;4585:470;-1:-1:-1;;;;4585:470:14:o;5291:511::-;5485:4;-1:-1:-1;;;;;5595:2:14;5587:6;5583:15;5572:9;5565:34;5647:2;5639:6;5635:15;5630:2;5619:9;5615:18;5608:43;;5687:6;5682:2;5671:9;5667:18;5660:34;5730:3;5725:2;5714:9;5710:18;5703:31;5751:45;5791:3;5780:9;5776:19;5768:6;5751:45;:::i;:::-;5743:53;5291:511;-1:-1:-1;;;;;;5291:511:14:o;5807:632::-;5978:2;6030:21;;;6100:13;;6003:18;;;6122:22;;;5949:4;;5978:2;6201:15;;;;6175:2;6160:18;;;5949:4;6244:169;6258:6;6255:1;6252:13;6244:169;;;6319:13;;6307:26;;6388:15;;;;6353:12;;;;6280:1;6273:9;6244:169;;;-1:-1:-1;6430:3:14;;5807:632;-1:-1:-1;;;;;;5807:632:14:o;6636:219::-;6785:2;6774:9;6767:21;6748:4;6805:44;6845:2;6834:9;6830:18;6822:6;6805:44;:::i;7612:414::-;7814:2;7796:21;;;7853:2;7833:18;;;7826:30;7892:34;7887:2;7872:18;;7865:62;-1:-1:-1;;;7958:2:14;7943:18;;7936:48;8016:3;8001:19;;7612:414::o;16405:128::-;16445:3;16476:1;16472:6;16469:1;16466:13;16463:39;;;16482:18;;:::i;:::-;-1:-1:-1;16518:9:14;;16405:128::o;16538:120::-;16578:1;16604;16594:35;;16609:18;;:::i;:::-;-1:-1:-1;16643:9:14;;16538:120::o;16663:168::-;16703:7;16769:1;16765;16761:6;16757:14;16754:1;16751:21;16746:1;16739:9;16732:17;16728:45;16725:71;;;16776:18;;:::i;:::-;-1:-1:-1;16816:9:14;;16663:168::o;16836:125::-;16876:4;16904:1;16901;16898:8;16895:34;;;16909:18;;:::i;:::-;-1:-1:-1;16946:9:14;;16836:125::o;16966:258::-;17038:1;17048:113;17062:6;17059:1;17056:13;17048:113;;;17138:11;;;17132:18;17119:11;;;17112:39;17084:2;17077:10;17048:113;;;17179:6;17176:1;17173:13;17170:48;;;-1:-1:-1;;17214:1:14;17196:16;;17189:27;16966:258::o;17229:380::-;17308:1;17304:12;;;;17351;;;17372:61;;17426:4;17418:6;17414:17;17404:27;;17372:61;17479:2;17471:6;17468:14;17448:18;17445:38;17442:161;;;17525:10;17520:3;17516:20;17513:1;17506:31;17560:4;17557:1;17550:15;17588:4;17585:1;17578:15;17442:161;;17229:380;;;:::o;17614:135::-;17653:3;-1:-1:-1;;17674:17:14;;17671:43;;;17694:18;;:::i;:::-;-1:-1:-1;17741:1:14;17730:13;;17614:135::o;17754:112::-;17786:1;17812;17802:35;;17817:18;;:::i;:::-;-1:-1:-1;17851:9:14;;17754:112::o;17871:127::-;17932:10;17927:3;17923:20;17920:1;17913:31;17963:4;17960:1;17953:15;17987:4;17984:1;17977:15;18003:127;18064:10;18059:3;18055:20;18052:1;18045:31;18095:4;18092:1;18085:15;18119:4;18116:1;18109:15;18135:127;18196:10;18191:3;18187:20;18184:1;18177:31;18227:4;18224:1;18217:15;18251:4;18248:1;18241:15;18267:127;18328:10;18323:3;18319:20;18316:1;18309:31;18359:4;18356:1;18349:15;18383:4;18380:1;18373:15;18399:127;18460:10;18455:3;18451:20;18448:1;18441:31;18491:4;18488:1;18481:15;18515:4;18512:1;18505:15;18531:131;-1:-1:-1;;;;;;18605:32:14;;18595:43;;18585:71;;18652:1;18649;18642:12

Swarm Source

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