ETH Price: $3,407.75 (-1.83%)
Gas: 15 Gwei

Token

Sophiafaces (SFACES)
 

Overview

Max Total Supply

11 SFACES

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
blockfaces: Deployer
Balance
10 SFACES
0xc3c7989dfa7dac1741be1d9cf19d4168e862618a
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:
sophiafaces

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : sophiafaces.sol
// contracts/sophiafaces.sol
// SPDX-License-Identifier: MIT

//    ___.   .__                 __      _____                            
//    \_ |__ |  |   ____   ____ |  | ___/ ____\____    ____  ____   ______
//    | __ \|  |  /  _ \_/ ___\|  |/ /\   __\\__  \ _/ ___\/ __ \ /  ___/
//    | \_\ \  |_(  <_> )  \___|    <  |  |   / __ \\  \__\  ___/ \___ \ 
//    |___  /____/\____/ \___  >__|_ \ |__|  (____  /\___  >__a_  >____  >
//        \/                 \/     \/            \/     \/    \/     \/ 


pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

// sophiafaces - a blockfaces production

abstract contract Blockfaces {
  function walletOfOwner(address _owner) public virtual view returns(uint256[] memory);
}

contract sophiafaces is ERC721Enumerable, Ownable {
    
    using Strings for uint256;
    Blockfaces private blockface;
    
    bool public hasSaleStarted;
    uint256 private _price = 0.06 ether;
    uint256 private _holderprice = 0.04 ether;
    string _baseTokenURI;
    
    
    // The IPFS hash
    string public METADATA_PROVENANCE_HASH = "";
    
    // Truth
    string public constant R = "sophiafaces - the girl with the thousand faces";

    constructor(string memory baseURI) ERC721("Sophiafaces","SFACES")  {
        setBaseURI(baseURI);
        blockface = Blockfaces(0x8Ab89E0191F71903F97709d4b4653922D62e6Bfb);
    }
    
    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 adopt(uint256 numfaces) public payable {
        uint256[] memory blockfaceids;
        blockfaceids = blockface.walletOfOwner(msg.sender);
        uint256 balance = blockfaceids.length;
        uint256 supply = totalSupply();
        
        require(hasSaleStarted,                                 "sale is paused");
        require(numfaces < 26,                                  "only up to 25 Sophias at once");
        require(supply + numfaces < 1001,                       "exceeds max Sophias");

        if(balance > 0){
            require(msg.value >= _holderprice * numfaces,             "ether value sent is below the price");
            for(uint256 i; i < numfaces; i++){
                _safeMint( msg.sender, supply + i );
            }
        }
        else{
            require(msg.value >= _price * numfaces,             "ether value sent is below the price");
            for(uint256 i; i < numfaces; i++){
                _safeMint( msg.sender, supply + i );
            }
        }
    }
    
    // a higher power
    function setProvenanceHash(string memory _hash) public onlyOwner {
        METADATA_PROVENANCE_HASH = _hash;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }
    
    function setHolderPrice(uint256 _newPrice) public onlyOwner() {
        _holderprice = _newPrice;
    }
    
    function startSale() public onlyOwner {
        hasSaleStarted = true;
    }
    function pauseSale() public onlyOwner {
        hasSaleStarted = false;
    }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    // community reserve
    function reserve() public onlyOwner {
        uint256 supply = totalSupply();
        require(supply < 11, "no more reserves allowed");
        for(uint256 i; i < 10; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/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 3 of 13 : 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 4 of 13 : 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 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/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 13 : 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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/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 8 of 13 : 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 9 of 13 : 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);
    }
}

File 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"R","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numfaces","type":"uint256"}],"name":"adopt","outputs":[],"stateMutability":"payable","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":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":"uint256","name":"_newPrice","type":"uint256"}],"name":"setHolderPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266d529ae9e860000600c55668e1bc9bf040000600d5560405180602001604052806000815250600f90805190602001906200004192919062000345565b503480156200004f57600080fd5b5060405162004d0f38038062004d0f833981810160405281019062000075919062000473565b6040518060400160405280600b81526020017f536f7068696166616365730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53464143455300000000000000000000000000000000000000000000000000008152508160009080519060200190620000f992919062000345565b5080600190805190602001906200011292919062000345565b5050506200013562000129620001a260201b60201c565b620001aa60201b60201c565b62000146816200027060201b60201c565b738ab89e0191f71903f97709d4b4653922d62e6bfb600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620006cb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000280620001a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a66200031b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f690620004eb565b60405180910390fd5b80600e90805190602001906200031792919062000345565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035390620005b3565b90600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b60006200040c620004068462000536565b6200050d565b9050828152602081018484840111156200042b576200042a62000682565b5b620004388482856200057d565b509392505050565b600082601f8301126200045857620004576200067d565b5b81516200046a848260208601620003f5565b91505092915050565b6000602082840312156200048c576200048b6200068c565b5b600082015167ffffffffffffffff811115620004ad57620004ac62000687565b5b620004bb8482850162000440565b91505092915050565b6000620004d36020836200056c565b9150620004e082620006a2565b602082019050919050565b600060208201905081810360008301526200050681620004c4565b9050919050565b6000620005196200052c565b9050620005278282620005e9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055457620005536200064e565b5b6200055f8262000691565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200059d57808201518184015260208101905062000580565b83811115620005ad576000848401525b50505050565b60006002820490506001821680620005cc57607f821691505b60208210811415620005e357620005e26200061f565b5b50919050565b620005f48262000691565b810181811067ffffffffffffffff821117156200061657620006156200064e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61463480620006db6000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063cd3293de11610064578063cd3293de146106ae578063e985e9c5146106c5578063f0c9dc6014610702578063f2fde38b1461072d576101e3565b8063a22cb46514610608578063b66a0e5d14610631578063b88d4fde14610648578063c87b56dd14610671576101e3565b80638588b2c5116100d15780638588b2c51461056d5780638da5cb5b1461058957806391b7f5ed146105b457806395d89b41146105dd576101e3565b80636352211e146104d257806370a082311461050f578063715018a61461054c578063853828b614610563576101e3565b806323b872dd1161017a5780634980e1be116101495780634980e1be1461042a5780634f6ccce71461045557806355367ba91461049257806355f804b3146104a9576101e3565b806323b872dd1461035e5780632f745c591461038757806342842e0e146103c4578063438b6300146103ed576101e3565b80630b74f6ee116101b65780630b74f6ee146102b657806310969523146102df57806318160ddd146103085780631c8b232d14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613141565b610756565b60405161021c9190613738565b60405180910390f35b34801561023157600080fd5b5061023a6107d0565b6040516102479190613753565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131e4565b610862565b60405161028491906136af565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906130b8565b6108e7565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906131e4565b6109ff565b005b3480156102eb57600080fd5b506103066004803603810190610301919061319b565b610a85565b005b34801561031457600080fd5b5061031d610b1b565b60405161032a9190613a55565b60405180910390f35b34801561033f57600080fd5b50610348610b28565b6040516103559190613738565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612fa2565b610b3b565b005b34801561039357600080fd5b506103ae60048036038101906103a991906130b8565b610b9b565b6040516103bb9190613a55565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612fa2565b610c40565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612f35565b610c60565b6040516104219190613716565b60405180910390f35b34801561043657600080fd5b5061043f610d0e565b60405161044c9190613753565b60405180910390f35b34801561046157600080fd5b5061047c600480360381019061047791906131e4565b610d2a565b6040516104899190613a55565b60405180910390f35b34801561049e57600080fd5b506104a7610d9b565b005b3480156104b557600080fd5b506104d060048036038101906104cb919061319b565b610e34565b005b3480156104de57600080fd5b506104f960048036038101906104f491906131e4565b610eca565b60405161050691906136af565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612f35565b610f7c565b6040516105439190613a55565b60405180910390f35b34801561055857600080fd5b50610561611034565b005b61056b6110bc565b005b610587600480360381019061058291906131e4565b611178565b005b34801561059557600080fd5b5061059e61143c565b6040516105ab91906136af565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d691906131e4565b611466565b005b3480156105e957600080fd5b506105f26114ec565b6040516105ff9190613753565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613078565b61157e565b005b34801561063d57600080fd5b506106466116ff565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612ff5565b611798565b005b34801561067d57600080fd5b50610698600480360381019061069391906131e4565b6117fa565b6040516106a59190613753565b60405180910390f35b3480156106ba57600080fd5b506106c36118a1565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612f62565b6119a4565b6040516106f99190613738565b60405180910390f35b34801561070e57600080fd5b50610717611a38565b6040516107249190613753565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612f35565b611ac6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957506107c882611bbe565b5b9050919050565b6060600080546107df90613d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461080b90613d6a565b80156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b600061086d82611ca0565b6108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390613915565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f282610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a906139b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610982611d0c565b73ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0816109ab611d0c565b6119a4565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613895565b60405180910390fd5b6109fa8383611d14565b505050565b610a07611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610a2561143c565b73ffffffffffffffffffffffffffffffffffffffff1614610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290613955565b60405180910390fd5b80600d8190555050565b610a8d611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610aab61143c565b73ffffffffffffffffffffffffffffffffffffffff1614610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613955565b60405180910390fd5b80600f9080519060200190610b17929190612c96565b5050565b6000600880549050905090565b600b60149054906101000a900460ff1681565b610b4c610b46611d0c565b82611dcd565b610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906139d5565b60405180910390fd5b610b96838383611eab565b505050565b6000610ba683610f7c565b8210610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90613775565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c5b83838360405180602001604052806000815250611798565b505050565b60606000610c6d83610f7c565b905060008167ffffffffffffffff811115610c8b57610c8a613f32565b5b604051908082528060200260200182016040528015610cb95781602001602082028036833780820191505090505b50905060005b82811015610d0357610cd18582610b9b565b828281518110610ce457610ce3613f03565b5b6020026020010181815250508080610cfb90613dcd565b915050610cbf565b508092505050919050565b6040518060600160405280602e81526020016145d1602e913981565b6000610d34610b1b565b8210610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613a15565b60405180910390fd5b60088281548110610d8957610d88613f03565b5b90600052602060002001549050919050565b610da3611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610dc161143c565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90613955565b60405180910390fd5b6000600b60146101000a81548160ff021916908315150217905550565b610e3c611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610e5a61143c565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790613955565b60405180910390fd5b80600e9080519060200190610ec6929190612c96565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a906138d5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe4906138b5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103c611d0c565b73ffffffffffffffffffffffffffffffffffffffff1661105a61143c565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613955565b60405180910390fd5b6110ba6000612107565b565b6110c4611d0c565b73ffffffffffffffffffffffffffffffffffffffff166110e261143c565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613955565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061117657600080fd5b565b6060600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663438b6300336040518263ffffffff1660e01b81526004016111d591906136af565b60006040518083038186803b1580156111ed57600080fd5b505afa158015611201573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061122a91906130f8565b9050600081519050600061123c610b1b565b9050600b60149054906101000a900460ff1661128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613935565b60405180910390fd5b601a84106112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613a35565b60405180910390fd5b6103e984826112df9190613b9f565b1061131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611316906139f5565b60405180910390fd5b60008211156113b15783600d546113369190613c26565b341015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613815565b60405180910390fd5b60005b848110156113ab576113983382846113939190613b9f565b6121cd565b80806113a390613dcd565b91505061137b565b50611436565b83600c546113bf9190613c26565b341015611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890613815565b60405180910390fd5b60005b848110156114345761142133828461141c9190613b9f565b6121cd565b808061142c90613dcd565b915050611404565b505b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61146e611d0c565b73ffffffffffffffffffffffffffffffffffffffff1661148c61143c565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613955565b60405180910390fd5b80600c8190555050565b6060600180546114fb90613d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461152790613d6a565b80156115745780601f1061154957610100808354040283529160200191611574565b820191906000526020600020905b81548152906001019060200180831161155757829003601f168201915b5050505050905090565b611586611d0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613855565b60405180910390fd5b8060056000611601611d0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ae611d0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f39190613738565b60405180910390a35050565b611707611d0c565b73ffffffffffffffffffffffffffffffffffffffff1661172561143c565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613955565b60405180910390fd5b6001600b60146101000a81548160ff021916908315150217905550565b6117a96117a3611d0c565b83611dcd565b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906139d5565b60405180910390fd5b6117f4848484846121eb565b50505050565b606061180582611ca0565b611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90613995565b60405180910390fd5b600061184e612247565b9050600081511161186e5760405180602001604052806000815250611899565b80611878846122d9565b60405160200161188992919061368b565b6040516020818303038152906040525b915050919050565b6118a9611d0c565b73ffffffffffffffffffffffffffffffffffffffff166118c761143c565b73ffffffffffffffffffffffffffffffffffffffff161461191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490613955565b60405180910390fd5b6000611927610b1b565b9050600b811061196c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611963906137f5565b60405180910390fd5b60005b600a8110156119a05761198d3382846119889190613b9f565b6121cd565b808061199890613dcd565b91505061196f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f8054611a4590613d6a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7190613d6a565b8015611abe5780601f10611a9357610100808354040283529160200191611abe565b820191906000526020600020905b815481529060010190602001808311611aa157829003601f168201915b505050505081565b611ace611d0c565b73ffffffffffffffffffffffffffffffffffffffff16611aec61143c565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613955565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba9906137b5565b60405180910390fd5b611bbb81612107565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c995750611c988261243a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8783610eca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dd882611ca0565b611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90613875565b60405180910390fd5b6000611e2283610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e9157508373ffffffffffffffffffffffffffffffffffffffff16611e7984610862565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea25750611ea181856119a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ecb82610eca565b73ffffffffffffffffffffffffffffffffffffffff1614611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890613975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890613835565b60405180910390fd5b611f9c8383836124a4565b611fa7600082611d14565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff79190613c80565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204e9190613b9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e78282604051806020016040528060008152506125b8565b5050565b6121f6848484611eab565b61220284848484612613565b612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890613795565b60405180910390fd5b50505050565b6060600e805461225690613d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461228290613d6a565b80156122cf5780601f106122a4576101008083540402835291602001916122cf565b820191906000526020600020905b8154815290600101906020018083116122b257829003601f168201915b5050505050905090565b60606000821415612321576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612435565b600082905060005b6000821461235357808061233c90613dcd565b915050600a8261234c9190613bf5565b9150612329565b60008167ffffffffffffffff81111561236f5761236e613f32565b5b6040519080825280601f01601f1916602001820160405280156123a15781602001600182028036833780820191505090505b5090505b6000851461242e576001826123ba9190613c80565b9150600a856123c99190613e16565b60306123d59190613b9f565b60f81b8183815181106123eb576123ea613f03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124279190613bf5565b94506123a5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124af8383836127aa565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f2576124ed816127af565b612531565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125305761252f83826127f8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125745761256f81612965565b6125b3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125b2576125b18282612a36565b5b5b505050565b6125c28383612ab5565b6125cf6000848484612613565b61260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260590613795565b60405180910390fd5b505050565b60006126348473ffffffffffffffffffffffffffffffffffffffff16612c83565b1561279d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261265d611d0c565b8786866040518563ffffffff1660e01b815260040161267f94939291906136ca565b602060405180830381600087803b15801561269957600080fd5b505af19250505080156126ca57506040513d601f19601f820116820180604052508101906126c7919061316e565b60015b61274d573d80600081146126fa576040519150601f19603f3d011682016040523d82523d6000602084013e6126ff565b606091505b50600081511415612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c90613795565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127a2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161280584610f7c565b61280f9190613c80565b90506000600760008481526020019081526020016000205490508181146128f4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129799190613c80565b90506000600960008481526020019081526020016000205490506000600883815481106129a9576129a8613f03565b5b9060005260206000200154905080600883815481106129cb576129ca613f03565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a1a57612a19613ed4565b5b6001900381819060005260206000200160009055905550505050565b6000612a4183610f7c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c906138f5565b60405180910390fd5b612b2e81611ca0565b15612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b65906137d5565b60405180910390fd5b612b7a600083836124a4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bca9190613b9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ca290613d6a565b90600052602060002090601f016020900481019282612cc45760008555612d0b565b82601f10612cdd57805160ff1916838001178555612d0b565b82800160010185558215612d0b579182015b82811115612d0a578251825591602001919060010190612cef565b5b509050612d189190612d1c565b5090565b5b80821115612d35576000816000905550600101612d1d565b5090565b6000612d4c612d4784613a95565b613a70565b90508083825260208201905082856020860282011115612d6f57612d6e613f66565b5b60005b85811015612d9f5781612d858882612f20565b845260208401935060208301925050600181019050612d72565b5050509392505050565b6000612dbc612db784613ac1565b613a70565b905082815260208101848484011115612dd857612dd7613f6b565b5b612de3848285613d28565b509392505050565b6000612dfe612df984613af2565b613a70565b905082815260208101848484011115612e1a57612e19613f6b565b5b612e25848285613d28565b509392505050565b600081359050612e3c81614574565b92915050565b600082601f830112612e5757612e56613f61565b5b8151612e67848260208601612d39565b91505092915050565b600081359050612e7f8161458b565b92915050565b600081359050612e94816145a2565b92915050565b600081519050612ea9816145a2565b92915050565b600082601f830112612ec457612ec3613f61565b5b8135612ed4848260208601612da9565b91505092915050565b600082601f830112612ef257612ef1613f61565b5b8135612f02848260208601612deb565b91505092915050565b600081359050612f1a816145b9565b92915050565b600081519050612f2f816145b9565b92915050565b600060208284031215612f4b57612f4a613f75565b5b6000612f5984828501612e2d565b91505092915050565b60008060408385031215612f7957612f78613f75565b5b6000612f8785828601612e2d565b9250506020612f9885828601612e2d565b9150509250929050565b600080600060608486031215612fbb57612fba613f75565b5b6000612fc986828701612e2d565b9350506020612fda86828701612e2d565b9250506040612feb86828701612f0b565b9150509250925092565b6000806000806080858703121561300f5761300e613f75565b5b600061301d87828801612e2d565b945050602061302e87828801612e2d565b935050604061303f87828801612f0b565b925050606085013567ffffffffffffffff8111156130605761305f613f70565b5b61306c87828801612eaf565b91505092959194509250565b6000806040838503121561308f5761308e613f75565b5b600061309d85828601612e2d565b92505060206130ae85828601612e70565b9150509250929050565b600080604083850312156130cf576130ce613f75565b5b60006130dd85828601612e2d565b92505060206130ee85828601612f0b565b9150509250929050565b60006020828403121561310e5761310d613f75565b5b600082015167ffffffffffffffff81111561312c5761312b613f70565b5b61313884828501612e42565b91505092915050565b60006020828403121561315757613156613f75565b5b600061316584828501612e85565b91505092915050565b60006020828403121561318457613183613f75565b5b600061319284828501612e9a565b91505092915050565b6000602082840312156131b1576131b0613f75565b5b600082013567ffffffffffffffff8111156131cf576131ce613f70565b5b6131db84828501612edd565b91505092915050565b6000602082840312156131fa576131f9613f75565b5b600061320884828501612f0b565b91505092915050565b600061321d838361366d565b60208301905092915050565b61323281613cb4565b82525050565b600061324382613b33565b61324d8185613b61565b935061325883613b23565b8060005b838110156132895781516132708882613211565b975061327b83613b54565b92505060018101905061325c565b5085935050505092915050565b61329f81613cc6565b82525050565b60006132b082613b3e565b6132ba8185613b72565b93506132ca818560208601613d37565b6132d381613f7a565b840191505092915050565b60006132e982613b49565b6132f38185613b83565b9350613303818560208601613d37565b61330c81613f7a565b840191505092915050565b600061332282613b49565b61332c8185613b94565b935061333c818560208601613d37565b80840191505092915050565b6000613355602b83613b83565b915061336082613f8b565b604082019050919050565b6000613378603283613b83565b915061338382613fda565b604082019050919050565b600061339b602683613b83565b91506133a682614029565b604082019050919050565b60006133be601c83613b83565b91506133c982614078565b602082019050919050565b60006133e1601883613b83565b91506133ec826140a1565b602082019050919050565b6000613404602383613b83565b915061340f826140ca565b604082019050919050565b6000613427602483613b83565b915061343282614119565b604082019050919050565b600061344a601983613b83565b915061345582614168565b602082019050919050565b600061346d602c83613b83565b915061347882614191565b604082019050919050565b6000613490603883613b83565b915061349b826141e0565b604082019050919050565b60006134b3602a83613b83565b91506134be8261422f565b604082019050919050565b60006134d6602983613b83565b91506134e18261427e565b604082019050919050565b60006134f9602083613b83565b9150613504826142cd565b602082019050919050565b600061351c602c83613b83565b9150613527826142f6565b604082019050919050565b600061353f600e83613b83565b915061354a82614345565b602082019050919050565b6000613562602083613b83565b915061356d8261436e565b602082019050919050565b6000613585602983613b83565b915061359082614397565b604082019050919050565b60006135a8602f83613b83565b91506135b3826143e6565b604082019050919050565b60006135cb602183613b83565b91506135d682614435565b604082019050919050565b60006135ee603183613b83565b91506135f982614484565b604082019050919050565b6000613611601383613b83565b915061361c826144d3565b602082019050919050565b6000613634602c83613b83565b915061363f826144fc565b604082019050919050565b6000613657601d83613b83565b91506136628261454b565b602082019050919050565b61367681613d1e565b82525050565b61368581613d1e565b82525050565b60006136978285613317565b91506136a38284613317565b91508190509392505050565b60006020820190506136c46000830184613229565b92915050565b60006080820190506136df6000830187613229565b6136ec6020830186613229565b6136f9604083018561367c565b818103606083015261370b81846132a5565b905095945050505050565b600060208201905081810360008301526137308184613238565b905092915050565b600060208201905061374d6000830184613296565b92915050565b6000602082019050818103600083015261376d81846132de565b905092915050565b6000602082019050818103600083015261378e81613348565b9050919050565b600060208201905081810360008301526137ae8161336b565b9050919050565b600060208201905081810360008301526137ce8161338e565b9050919050565b600060208201905081810360008301526137ee816133b1565b9050919050565b6000602082019050818103600083015261380e816133d4565b9050919050565b6000602082019050818103600083015261382e816133f7565b9050919050565b6000602082019050818103600083015261384e8161341a565b9050919050565b6000602082019050818103600083015261386e8161343d565b9050919050565b6000602082019050818103600083015261388e81613460565b9050919050565b600060208201905081810360008301526138ae81613483565b9050919050565b600060208201905081810360008301526138ce816134a6565b9050919050565b600060208201905081810360008301526138ee816134c9565b9050919050565b6000602082019050818103600083015261390e816134ec565b9050919050565b6000602082019050818103600083015261392e8161350f565b9050919050565b6000602082019050818103600083015261394e81613532565b9050919050565b6000602082019050818103600083015261396e81613555565b9050919050565b6000602082019050818103600083015261398e81613578565b9050919050565b600060208201905081810360008301526139ae8161359b565b9050919050565b600060208201905081810360008301526139ce816135be565b9050919050565b600060208201905081810360008301526139ee816135e1565b9050919050565b60006020820190508181036000830152613a0e81613604565b9050919050565b60006020820190508181036000830152613a2e81613627565b9050919050565b60006020820190508181036000830152613a4e8161364a565b9050919050565b6000602082019050613a6a600083018461367c565b92915050565b6000613a7a613a8b565b9050613a868282613d9c565b919050565b6000604051905090565b600067ffffffffffffffff821115613ab057613aaf613f32565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613adc57613adb613f32565b5b613ae582613f7a565b9050602081019050919050565b600067ffffffffffffffff821115613b0d57613b0c613f32565b5b613b1682613f7a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613baa82613d1e565b9150613bb583613d1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bea57613be9613e47565b5b828201905092915050565b6000613c0082613d1e565b9150613c0b83613d1e565b925082613c1b57613c1a613e76565b5b828204905092915050565b6000613c3182613d1e565b9150613c3c83613d1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7557613c74613e47565b5b828202905092915050565b6000613c8b82613d1e565b9150613c9683613d1e565b925082821015613ca957613ca8613e47565b5b828203905092915050565b6000613cbf82613cfe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d55578082015181840152602081019050613d3a565b83811115613d64576000848401525b50505050565b60006002820490506001821680613d8257607f821691505b60208210811415613d9657613d95613ea5565b5b50919050565b613da582613f7a565b810181811067ffffffffffffffff82111715613dc457613dc3613f32565b5b80604052505050565b6000613dd882613d1e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0b57613e0a613e47565b5b600182019050919050565b6000613e2182613d1e565b9150613e2c83613d1e565b925082613e3c57613e3b613e76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f206d6f726520726573657276657320616c6c6f7765640000000000000000600082015250565b7f65746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f73616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f65786365656473206d617820536f706869617300000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6f6e6c7920757020746f20323520536f7068696173206174206f6e6365000000600082015250565b61457d81613cb4565b811461458857600080fd5b50565b61459481613cc6565b811461459f57600080fd5b50565b6145ab81613cd2565b81146145b657600080fd5b50565b6145c281613d1e565b81146145cd57600080fd5b5056fe736f706869616661636573202d20746865206769726c2077697468207468652074686f7573616e64206661636573a2646970667358221220f58cf725fd1199bb4271ebdd3d3c45a2b2e23cac714b9085e280c7aaf89b1a4164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e626c6f636b66616365732e78797a2f736f7068696166616365732f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063cd3293de11610064578063cd3293de146106ae578063e985e9c5146106c5578063f0c9dc6014610702578063f2fde38b1461072d576101e3565b8063a22cb46514610608578063b66a0e5d14610631578063b88d4fde14610648578063c87b56dd14610671576101e3565b80638588b2c5116100d15780638588b2c51461056d5780638da5cb5b1461058957806391b7f5ed146105b457806395d89b41146105dd576101e3565b80636352211e146104d257806370a082311461050f578063715018a61461054c578063853828b614610563576101e3565b806323b872dd1161017a5780634980e1be116101495780634980e1be1461042a5780634f6ccce71461045557806355367ba91461049257806355f804b3146104a9576101e3565b806323b872dd1461035e5780632f745c591461038757806342842e0e146103c4578063438b6300146103ed576101e3565b80630b74f6ee116101b65780630b74f6ee146102b657806310969523146102df57806318160ddd146103085780631c8b232d14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613141565b610756565b60405161021c9190613738565b60405180910390f35b34801561023157600080fd5b5061023a6107d0565b6040516102479190613753565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131e4565b610862565b60405161028491906136af565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906130b8565b6108e7565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906131e4565b6109ff565b005b3480156102eb57600080fd5b506103066004803603810190610301919061319b565b610a85565b005b34801561031457600080fd5b5061031d610b1b565b60405161032a9190613a55565b60405180910390f35b34801561033f57600080fd5b50610348610b28565b6040516103559190613738565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612fa2565b610b3b565b005b34801561039357600080fd5b506103ae60048036038101906103a991906130b8565b610b9b565b6040516103bb9190613a55565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612fa2565b610c40565b005b3480156103f957600080fd5b50610414600480360381019061040f9190612f35565b610c60565b6040516104219190613716565b60405180910390f35b34801561043657600080fd5b5061043f610d0e565b60405161044c9190613753565b60405180910390f35b34801561046157600080fd5b5061047c600480360381019061047791906131e4565b610d2a565b6040516104899190613a55565b60405180910390f35b34801561049e57600080fd5b506104a7610d9b565b005b3480156104b557600080fd5b506104d060048036038101906104cb919061319b565b610e34565b005b3480156104de57600080fd5b506104f960048036038101906104f491906131e4565b610eca565b60405161050691906136af565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612f35565b610f7c565b6040516105439190613a55565b60405180910390f35b34801561055857600080fd5b50610561611034565b005b61056b6110bc565b005b610587600480360381019061058291906131e4565b611178565b005b34801561059557600080fd5b5061059e61143c565b6040516105ab91906136af565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d691906131e4565b611466565b005b3480156105e957600080fd5b506105f26114ec565b6040516105ff9190613753565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613078565b61157e565b005b34801561063d57600080fd5b506106466116ff565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612ff5565b611798565b005b34801561067d57600080fd5b50610698600480360381019061069391906131e4565b6117fa565b6040516106a59190613753565b60405180910390f35b3480156106ba57600080fd5b506106c36118a1565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612f62565b6119a4565b6040516106f99190613738565b60405180910390f35b34801561070e57600080fd5b50610717611a38565b6040516107249190613753565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612f35565b611ac6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957506107c882611bbe565b5b9050919050565b6060600080546107df90613d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461080b90613d6a565b80156108585780601f1061082d57610100808354040283529160200191610858565b820191906000526020600020905b81548152906001019060200180831161083b57829003601f168201915b5050505050905090565b600061086d82611ca0565b6108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390613915565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f282610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a906139b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610982611d0c565b73ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0816109ab611d0c565b6119a4565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790613895565b60405180910390fd5b6109fa8383611d14565b505050565b610a07611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610a2561143c565b73ffffffffffffffffffffffffffffffffffffffff1614610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290613955565b60405180910390fd5b80600d8190555050565b610a8d611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610aab61143c565b73ffffffffffffffffffffffffffffffffffffffff1614610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613955565b60405180910390fd5b80600f9080519060200190610b17929190612c96565b5050565b6000600880549050905090565b600b60149054906101000a900460ff1681565b610b4c610b46611d0c565b82611dcd565b610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906139d5565b60405180910390fd5b610b96838383611eab565b505050565b6000610ba683610f7c565b8210610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90613775565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c5b83838360405180602001604052806000815250611798565b505050565b60606000610c6d83610f7c565b905060008167ffffffffffffffff811115610c8b57610c8a613f32565b5b604051908082528060200260200182016040528015610cb95781602001602082028036833780820191505090505b50905060005b82811015610d0357610cd18582610b9b565b828281518110610ce457610ce3613f03565b5b6020026020010181815250508080610cfb90613dcd565b915050610cbf565b508092505050919050565b6040518060600160405280602e81526020016145d1602e913981565b6000610d34610b1b565b8210610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613a15565b60405180910390fd5b60088281548110610d8957610d88613f03565b5b90600052602060002001549050919050565b610da3611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610dc161143c565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90613955565b60405180910390fd5b6000600b60146101000a81548160ff021916908315150217905550565b610e3c611d0c565b73ffffffffffffffffffffffffffffffffffffffff16610e5a61143c565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790613955565b60405180910390fd5b80600e9080519060200190610ec6929190612c96565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a906138d5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe4906138b5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103c611d0c565b73ffffffffffffffffffffffffffffffffffffffff1661105a61143c565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613955565b60405180910390fd5b6110ba6000612107565b565b6110c4611d0c565b73ffffffffffffffffffffffffffffffffffffffff166110e261143c565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90613955565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061117657600080fd5b565b6060600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663438b6300336040518263ffffffff1660e01b81526004016111d591906136af565b60006040518083038186803b1580156111ed57600080fd5b505afa158015611201573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061122a91906130f8565b9050600081519050600061123c610b1b565b9050600b60149054906101000a900460ff1661128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613935565b60405180910390fd5b601a84106112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613a35565b60405180910390fd5b6103e984826112df9190613b9f565b1061131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611316906139f5565b60405180910390fd5b60008211156113b15783600d546113369190613c26565b341015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613815565b60405180910390fd5b60005b848110156113ab576113983382846113939190613b9f565b6121cd565b80806113a390613dcd565b91505061137b565b50611436565b83600c546113bf9190613c26565b341015611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890613815565b60405180910390fd5b60005b848110156114345761142133828461141c9190613b9f565b6121cd565b808061142c90613dcd565b915050611404565b505b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61146e611d0c565b73ffffffffffffffffffffffffffffffffffffffff1661148c61143c565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613955565b60405180910390fd5b80600c8190555050565b6060600180546114fb90613d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461152790613d6a565b80156115745780601f1061154957610100808354040283529160200191611574565b820191906000526020600020905b81548152906001019060200180831161155757829003601f168201915b5050505050905090565b611586611d0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613855565b60405180910390fd5b8060056000611601611d0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ae611d0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f39190613738565b60405180910390a35050565b611707611d0c565b73ffffffffffffffffffffffffffffffffffffffff1661172561143c565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613955565b60405180910390fd5b6001600b60146101000a81548160ff021916908315150217905550565b6117a96117a3611d0c565b83611dcd565b6117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906139d5565b60405180910390fd5b6117f4848484846121eb565b50505050565b606061180582611ca0565b611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90613995565b60405180910390fd5b600061184e612247565b9050600081511161186e5760405180602001604052806000815250611899565b80611878846122d9565b60405160200161188992919061368b565b6040516020818303038152906040525b915050919050565b6118a9611d0c565b73ffffffffffffffffffffffffffffffffffffffff166118c761143c565b73ffffffffffffffffffffffffffffffffffffffff161461191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490613955565b60405180910390fd5b6000611927610b1b565b9050600b811061196c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611963906137f5565b60405180910390fd5b60005b600a8110156119a05761198d3382846119889190613b9f565b6121cd565b808061199890613dcd565b91505061196f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f8054611a4590613d6a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7190613d6a565b8015611abe5780601f10611a9357610100808354040283529160200191611abe565b820191906000526020600020905b815481529060010190602001808311611aa157829003601f168201915b505050505081565b611ace611d0c565b73ffffffffffffffffffffffffffffffffffffffff16611aec61143c565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613955565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba9906137b5565b60405180910390fd5b611bbb81612107565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c995750611c988261243a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8783610eca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dd882611ca0565b611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90613875565b60405180910390fd5b6000611e2283610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e9157508373ffffffffffffffffffffffffffffffffffffffff16611e7984610862565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea25750611ea181856119a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ecb82610eca565b73ffffffffffffffffffffffffffffffffffffffff1614611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890613975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890613835565b60405180910390fd5b611f9c8383836124a4565b611fa7600082611d14565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff79190613c80565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204e9190613b9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e78282604051806020016040528060008152506125b8565b5050565b6121f6848484611eab565b61220284848484612613565b612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890613795565b60405180910390fd5b50505050565b6060600e805461225690613d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461228290613d6a565b80156122cf5780601f106122a4576101008083540402835291602001916122cf565b820191906000526020600020905b8154815290600101906020018083116122b257829003601f168201915b5050505050905090565b60606000821415612321576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612435565b600082905060005b6000821461235357808061233c90613dcd565b915050600a8261234c9190613bf5565b9150612329565b60008167ffffffffffffffff81111561236f5761236e613f32565b5b6040519080825280601f01601f1916602001820160405280156123a15781602001600182028036833780820191505090505b5090505b6000851461242e576001826123ba9190613c80565b9150600a856123c99190613e16565b60306123d59190613b9f565b60f81b8183815181106123eb576123ea613f03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124279190613bf5565b94506123a5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124af8383836127aa565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f2576124ed816127af565b612531565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125305761252f83826127f8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125745761256f81612965565b6125b3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125b2576125b18282612a36565b5b5b505050565b6125c28383612ab5565b6125cf6000848484612613565b61260e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260590613795565b60405180910390fd5b505050565b60006126348473ffffffffffffffffffffffffffffffffffffffff16612c83565b1561279d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261265d611d0c565b8786866040518563ffffffff1660e01b815260040161267f94939291906136ca565b602060405180830381600087803b15801561269957600080fd5b505af19250505080156126ca57506040513d601f19601f820116820180604052508101906126c7919061316e565b60015b61274d573d80600081146126fa576040519150601f19603f3d011682016040523d82523d6000602084013e6126ff565b606091505b50600081511415612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c90613795565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127a2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161280584610f7c565b61280f9190613c80565b90506000600760008481526020019081526020016000205490508181146128f4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129799190613c80565b90506000600960008481526020019081526020016000205490506000600883815481106129a9576129a8613f03565b5b9060005260206000200154905080600883815481106129cb576129ca613f03565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a1a57612a19613ed4565b5b6001900381819060005260206000200160009055905550505050565b6000612a4183610f7c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c906138f5565b60405180910390fd5b612b2e81611ca0565b15612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b65906137d5565b60405180910390fd5b612b7a600083836124a4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bca9190613b9f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ca290613d6a565b90600052602060002090601f016020900481019282612cc45760008555612d0b565b82601f10612cdd57805160ff1916838001178555612d0b565b82800160010185558215612d0b579182015b82811115612d0a578251825591602001919060010190612cef565b5b509050612d189190612d1c565b5090565b5b80821115612d35576000816000905550600101612d1d565b5090565b6000612d4c612d4784613a95565b613a70565b90508083825260208201905082856020860282011115612d6f57612d6e613f66565b5b60005b85811015612d9f5781612d858882612f20565b845260208401935060208301925050600181019050612d72565b5050509392505050565b6000612dbc612db784613ac1565b613a70565b905082815260208101848484011115612dd857612dd7613f6b565b5b612de3848285613d28565b509392505050565b6000612dfe612df984613af2565b613a70565b905082815260208101848484011115612e1a57612e19613f6b565b5b612e25848285613d28565b509392505050565b600081359050612e3c81614574565b92915050565b600082601f830112612e5757612e56613f61565b5b8151612e67848260208601612d39565b91505092915050565b600081359050612e7f8161458b565b92915050565b600081359050612e94816145a2565b92915050565b600081519050612ea9816145a2565b92915050565b600082601f830112612ec457612ec3613f61565b5b8135612ed4848260208601612da9565b91505092915050565b600082601f830112612ef257612ef1613f61565b5b8135612f02848260208601612deb565b91505092915050565b600081359050612f1a816145b9565b92915050565b600081519050612f2f816145b9565b92915050565b600060208284031215612f4b57612f4a613f75565b5b6000612f5984828501612e2d565b91505092915050565b60008060408385031215612f7957612f78613f75565b5b6000612f8785828601612e2d565b9250506020612f9885828601612e2d565b9150509250929050565b600080600060608486031215612fbb57612fba613f75565b5b6000612fc986828701612e2d565b9350506020612fda86828701612e2d565b9250506040612feb86828701612f0b565b9150509250925092565b6000806000806080858703121561300f5761300e613f75565b5b600061301d87828801612e2d565b945050602061302e87828801612e2d565b935050604061303f87828801612f0b565b925050606085013567ffffffffffffffff8111156130605761305f613f70565b5b61306c87828801612eaf565b91505092959194509250565b6000806040838503121561308f5761308e613f75565b5b600061309d85828601612e2d565b92505060206130ae85828601612e70565b9150509250929050565b600080604083850312156130cf576130ce613f75565b5b60006130dd85828601612e2d565b92505060206130ee85828601612f0b565b9150509250929050565b60006020828403121561310e5761310d613f75565b5b600082015167ffffffffffffffff81111561312c5761312b613f70565b5b61313884828501612e42565b91505092915050565b60006020828403121561315757613156613f75565b5b600061316584828501612e85565b91505092915050565b60006020828403121561318457613183613f75565b5b600061319284828501612e9a565b91505092915050565b6000602082840312156131b1576131b0613f75565b5b600082013567ffffffffffffffff8111156131cf576131ce613f70565b5b6131db84828501612edd565b91505092915050565b6000602082840312156131fa576131f9613f75565b5b600061320884828501612f0b565b91505092915050565b600061321d838361366d565b60208301905092915050565b61323281613cb4565b82525050565b600061324382613b33565b61324d8185613b61565b935061325883613b23565b8060005b838110156132895781516132708882613211565b975061327b83613b54565b92505060018101905061325c565b5085935050505092915050565b61329f81613cc6565b82525050565b60006132b082613b3e565b6132ba8185613b72565b93506132ca818560208601613d37565b6132d381613f7a565b840191505092915050565b60006132e982613b49565b6132f38185613b83565b9350613303818560208601613d37565b61330c81613f7a565b840191505092915050565b600061332282613b49565b61332c8185613b94565b935061333c818560208601613d37565b80840191505092915050565b6000613355602b83613b83565b915061336082613f8b565b604082019050919050565b6000613378603283613b83565b915061338382613fda565b604082019050919050565b600061339b602683613b83565b91506133a682614029565b604082019050919050565b60006133be601c83613b83565b91506133c982614078565b602082019050919050565b60006133e1601883613b83565b91506133ec826140a1565b602082019050919050565b6000613404602383613b83565b915061340f826140ca565b604082019050919050565b6000613427602483613b83565b915061343282614119565b604082019050919050565b600061344a601983613b83565b915061345582614168565b602082019050919050565b600061346d602c83613b83565b915061347882614191565b604082019050919050565b6000613490603883613b83565b915061349b826141e0565b604082019050919050565b60006134b3602a83613b83565b91506134be8261422f565b604082019050919050565b60006134d6602983613b83565b91506134e18261427e565b604082019050919050565b60006134f9602083613b83565b9150613504826142cd565b602082019050919050565b600061351c602c83613b83565b9150613527826142f6565b604082019050919050565b600061353f600e83613b83565b915061354a82614345565b602082019050919050565b6000613562602083613b83565b915061356d8261436e565b602082019050919050565b6000613585602983613b83565b915061359082614397565b604082019050919050565b60006135a8602f83613b83565b91506135b3826143e6565b604082019050919050565b60006135cb602183613b83565b91506135d682614435565b604082019050919050565b60006135ee603183613b83565b91506135f982614484565b604082019050919050565b6000613611601383613b83565b915061361c826144d3565b602082019050919050565b6000613634602c83613b83565b915061363f826144fc565b604082019050919050565b6000613657601d83613b83565b91506136628261454b565b602082019050919050565b61367681613d1e565b82525050565b61368581613d1e565b82525050565b60006136978285613317565b91506136a38284613317565b91508190509392505050565b60006020820190506136c46000830184613229565b92915050565b60006080820190506136df6000830187613229565b6136ec6020830186613229565b6136f9604083018561367c565b818103606083015261370b81846132a5565b905095945050505050565b600060208201905081810360008301526137308184613238565b905092915050565b600060208201905061374d6000830184613296565b92915050565b6000602082019050818103600083015261376d81846132de565b905092915050565b6000602082019050818103600083015261378e81613348565b9050919050565b600060208201905081810360008301526137ae8161336b565b9050919050565b600060208201905081810360008301526137ce8161338e565b9050919050565b600060208201905081810360008301526137ee816133b1565b9050919050565b6000602082019050818103600083015261380e816133d4565b9050919050565b6000602082019050818103600083015261382e816133f7565b9050919050565b6000602082019050818103600083015261384e8161341a565b9050919050565b6000602082019050818103600083015261386e8161343d565b9050919050565b6000602082019050818103600083015261388e81613460565b9050919050565b600060208201905081810360008301526138ae81613483565b9050919050565b600060208201905081810360008301526138ce816134a6565b9050919050565b600060208201905081810360008301526138ee816134c9565b9050919050565b6000602082019050818103600083015261390e816134ec565b9050919050565b6000602082019050818103600083015261392e8161350f565b9050919050565b6000602082019050818103600083015261394e81613532565b9050919050565b6000602082019050818103600083015261396e81613555565b9050919050565b6000602082019050818103600083015261398e81613578565b9050919050565b600060208201905081810360008301526139ae8161359b565b9050919050565b600060208201905081810360008301526139ce816135be565b9050919050565b600060208201905081810360008301526139ee816135e1565b9050919050565b60006020820190508181036000830152613a0e81613604565b9050919050565b60006020820190508181036000830152613a2e81613627565b9050919050565b60006020820190508181036000830152613a4e8161364a565b9050919050565b6000602082019050613a6a600083018461367c565b92915050565b6000613a7a613a8b565b9050613a868282613d9c565b919050565b6000604051905090565b600067ffffffffffffffff821115613ab057613aaf613f32565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613adc57613adb613f32565b5b613ae582613f7a565b9050602081019050919050565b600067ffffffffffffffff821115613b0d57613b0c613f32565b5b613b1682613f7a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613baa82613d1e565b9150613bb583613d1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bea57613be9613e47565b5b828201905092915050565b6000613c0082613d1e565b9150613c0b83613d1e565b925082613c1b57613c1a613e76565b5b828204905092915050565b6000613c3182613d1e565b9150613c3c83613d1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7557613c74613e47565b5b828202905092915050565b6000613c8b82613d1e565b9150613c9683613d1e565b925082821015613ca957613ca8613e47565b5b828203905092915050565b6000613cbf82613cfe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d55578082015181840152602081019050613d3a565b83811115613d64576000848401525b50505050565b60006002820490506001821680613d8257607f821691505b60208210811415613d9657613d95613ea5565b5b50919050565b613da582613f7a565b810181811067ffffffffffffffff82111715613dc457613dc3613f32565b5b80604052505050565b6000613dd882613d1e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0b57613e0a613e47565b5b600182019050919050565b6000613e2182613d1e565b9150613e2c83613d1e565b925082613e3c57613e3b613e76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f206d6f726520726573657276657320616c6c6f7765640000000000000000600082015250565b7f65746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f73616c6520697320706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f65786365656473206d617820536f706869617300000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6f6e6c7920757020746f20323520536f7068696173206174206f6e6365000000600082015250565b61457d81613cb4565b811461458857600080fd5b50565b61459481613cc6565b811461459f57600080fd5b50565b6145ab81613cd2565b81146145b657600080fd5b50565b6145c281613d1e565b81146145cd57600080fd5b5056fe736f706869616661636573202d20746865206769726c2077697468207468652074686f7573616e64206661636573a2646970667358221220f58cf725fd1199bb4271ebdd3d3c45a2b2e23cac714b9085e280c7aaf89b1a4164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e626c6f636b66616365732e78797a2f736f7068696166616365732f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.blockfaces.xyz/sophiafaces/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [2] : 68747470733a2f2f6170692e626c6f636b66616365732e78797a2f736f706869
Arg [3] : 6166616365732f00000000000000000000000000000000000000000000000000


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.