ETH Price: $3,291.39 (-2.11%)
 

Overview

Max Total Supply

282 NSS

Holders

84

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Bizarre Visions: Deployer
Balance
1 NSS
0x0FF14dAd100343a01CB7599Aa7485C4892378E74
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:
NotSoSuperheroes

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

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

pragma solidity ^0.8.0;

contract NotSoSuperheroes is ERC721Enumerable, Ownable {
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant RESERVES = 101; // 1 higher to avoid lte/gte checks
    uint256 private _saleTime = 1631901600; // Monday, September 17, 2021 2:00:00 PM EST
    uint256 private _price = 7 * 10**16; // Currently .07 ETH
    uint256 private _maxPerTx = 21; // 1 higher to avoid lte/gte checks

    address walletSaveTheChildren = 0x8880d170F87A709F3749c27d60D3F487cAFd1Fc3;
    address walletNSSCommunity = 0xA4b901B66e3dcA25dE2a933De40e97f39303E6FE;
    uint256 communitySplit = 10; // Split total will always equal 100

    uint256 totalDeliveredToSTC;

    string private _baseTokenURI;

    constructor(
        string memory baseURI
    ) ERC721("NotSoSuperheroes", "NSS") {
        setBaseURI(baseURI);
    }

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

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

    function getSaleTime() public view returns (uint256) {
        return _saleTime;
    }

    function isSaleOpen() public view returns (bool) {
        return block.timestamp >= _saleTime;
    }

    function setMaxPerTransaction(uint256 max) public onlyOwner {
        _maxPerTx = max;
    }

    function setSaleTime(uint256 time) public onlyOwner {
        _saleTime = time;
    }

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

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


    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        }

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

    function mint(uint256 _count) public payable {
        uint256 totalSupply = totalSupply();
        require(msg.sender == tx.origin, "Must be called directly.");
        require(block.timestamp >= _saleTime, "The sale has not yet opened.");
        require(_maxPerTx > _count, "Exceeds transaction token limit.");
        require(MAX_SUPPLY >= totalSupply + _count, "Will exceed max supply.");
        require(msg.value == _price * _count, "Transaction value is not correct for this many heroes.");

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    /*
     * Saves the initial reserves to be used for project promotion and giveaways.
     */
    function saveTheCity(uint256 _count) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(totalSupply + _count < RESERVES, "Beyond max limit");
        require(block.timestamp < _saleTime, "The sale has already started.");
        for (uint256 index; index < _count; index++) {
            _safeMint(owner(), totalSupply + index);
        }
    }

    /*
     *  Save The Children will receive the sales proceeds from the first 500 and the last 500 mints. 
     *  This function checks what mint we're at, and how much has been sent to Save The Children so far if the withdraw function has been called previously.
     */
    function getBalanceForSTC() internal returns (uint256 totalForSaveTheChildren) {
        uint256 totalSupply = totalSupply();
        uint256 mintsToSellOut = MAX_SUPPLY - totalSupply;

        if (totalSupply < 500 + RESERVES) {
            totalForSaveTheChildren = ((totalSupply - RESERVES) * _price) - totalDeliveredToSTC;
            totalDeliveredToSTC += totalForSaveTheChildren;
        }
        else if (totalSupply > MAX_SUPPLY - 500) {
            totalForSaveTheChildren = (500 * _price) + ((500 - mintsToSellOut) * _price) - totalDeliveredToSTC;
            totalDeliveredToSTC += totalForSaveTheChildren;
        }
        else {
            totalForSaveTheChildren = (500 * _price) - totalDeliveredToSTC;
            totalDeliveredToSTC += totalForSaveTheChildren;
        }

        return totalForSaveTheChildren;
    } 

    /**
     * The withdrawAll function will always make sure any amount owed to Save The Children is paid first, then the Community, then the contract owner.
     */
    function withdrawAll() public payable onlyOwner {
        uint256 contractBalance = address(this).balance;
        uint256 toSTC = getBalanceForSTC();
        uint256 newBalance = contractBalance - toSTC;

        if (toSTC != 0) {
            require(payable(walletSaveTheChildren).send(toSTC)); // Send STC any proceeds from allocated mints.
        }
        uint256 toCommunity = (newBalance * communitySplit) / 100; // Split post donation proceeds for community.
        require(payable(walletNSSCommunity).send(toCommunity));
        uint256 ownerBalance = newBalance - toCommunity;
        require(payable(msg.sender).send(ownerBalance)); // Finally pay off contract owner the remaining balance.
    }
}

File 2 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 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 : 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 5 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 6 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 7 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 8 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 9 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 10 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 11 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 12 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);
}

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

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

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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"saveTheCity","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":"max","type":"uint256"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setSaleTime","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"}]

6080604052636144d7a0600b5566f8b0a10e470000600c556015600d55738880d170f87a709f3749c27d60d3f487cafd1fc3600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a4b901b66e3dca25de2a933de40e97f39303e6fe600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a601055348015620000d857600080fd5b5060405162004c1838038062004c188339818101604052810190620000fe91906200049b565b6040518060400160405280601081526020017f4e6f74536f53757065726865726f6573000000000000000000000000000000008152506040518060400160405280600381526020017f4e5353000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200018292919062000379565b5080600190805190602001906200019b92919062000379565b505050620001be620001b2620001d660201b60201c565b620001de60201b60201c565b620001cf81620002a460201b60201c565b5062000686565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b4620001d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002da6200034f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000333576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032a9062000522565b60405180910390fd5b80601290805190602001906200034b92919062000379565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038790620005f2565b90600052602060002090601f016020900481019282620003ab5760008555620003f7565b82601f10620003c657805160ff1916838001178555620003f7565b82800160010185558215620003f7579182015b82811115620003f6578251825591602001919060010190620003d9565b5b5090506200040691906200040a565b5090565b5b80821115620004255760008160009055506001016200040b565b5090565b6000620004406200043a8462000578565b62000544565b9050828152602081018484840111156200045957600080fd5b62000466848285620005bc565b509392505050565b600082601f8301126200048057600080fd5b81516200049284826020860162000429565b91505092915050565b600060208284031215620004ae57600080fd5b600082015167ffffffffffffffff811115620004c957600080fd5b620004d7848285016200046e565b91505092915050565b6000620004ef602083620005ab565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200053d81620004e0565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200056e576200056d62000657565b5b8060405250919050565b600067ffffffffffffffff82111562000596576200059562000657565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005dc578082015181840152602081019050620005bf565b83811115620005ec576000848401525b50505050565b600060028204905060018216806200060b57607f821691505b6020821081141562000622576200062162000628565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61458280620006966000396000f3fe6080604052600436106101e35760003560e01c8063688cf12c11610102578063a0712d6811610095578063cbf21fe411610064578063cbf21fe4146106d6578063ccfdd2f814610701578063e985e9c51461072a578063f2fde38b14610767576101e3565b8063a0712d681461062b578063a22cb46514610647578063b88d4fde14610670578063c87b56dd14610699576101e3565b80638da5cb5b116100d15780638da5cb5b1461058157806391b7f5ed146105ac57806395d89b41146105d557806398d5fdca14610600576101e3565b8063688cf12c146104fa57806370a0823114610523578063715018a614610560578063853828b614610577576101e3565b80632f745c591161017a578063438b630011610149578063438b63001461041a5780634f6ccce71461045757806355f804b3146104945780636352211e146104bd576101e3565b80632f745c591461036057806332cb6b0c1461039d5780633bd2b67d146103c857806342842e0e146103f1576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631a0813301461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc146102505780630922f9c51461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906131ef565b610790565b60405161021c9190613d27565b60405180910390f35b34801561023157600080fd5b5061023a61080a565b6040516102479190613d42565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613282565b61089c565b6040516102849190613c9e565b60405180910390f35b34801561029957600080fd5b506102a2610921565b6040516102af9190614084565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906131b3565b610926565b005b3480156102ed57600080fd5b506102f6610a3e565b6040516103039190614084565b60405180910390f35b34801561031857600080fd5b50610321610a4b565b60405161032e9190613d27565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906130ad565b610a58565b005b34801561036c57600080fd5b50610387600480360381019061038291906131b3565b610ab8565b6040516103949190614084565b60405180910390f35b3480156103a957600080fd5b506103b2610b5d565b6040516103bf9190614084565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613282565b610b63565b005b3480156103fd57600080fd5b50610418600480360381019061041391906130ad565b610be9565b005b34801561042657600080fd5b50610441600480360381019061043c9190613048565b610c09565b60405161044e9190613d05565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190613282565b610d85565b60405161048b9190614084565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190613241565b610e1c565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613282565b610eb2565b6040516104f19190613c9e565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613282565b610f64565b005b34801561052f57600080fd5b5061054a60048036038101906105459190613048565b6110bd565b6040516105579190614084565b60405180910390f35b34801561056c57600080fd5b50610575611175565b005b61057f6111fd565b005b34801561058d57600080fd5b506105966113d6565b6040516105a39190613c9e565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613282565b611400565b005b3480156105e157600080fd5b506105ea611486565b6040516105f79190613d42565b60405180910390f35b34801561060c57600080fd5b50610615611518565b6040516106229190614084565b60405180910390f35b61064560048036038101906106409190613282565b611522565b005b34801561065357600080fd5b5061066e60048036038101906106699190613177565b6116fc565b005b34801561067c57600080fd5b50610697600480360381019061069291906130fc565b61187d565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613282565b6118df565b6040516106cd9190613d42565b60405180910390f35b3480156106e257600080fd5b506106eb611986565b6040516106f89190614084565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190613282565b611990565b005b34801561073657600080fd5b50610751600480360381019061074c9190613071565b611a16565b60405161075e9190613d27565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613048565b611aaa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610803575061080282611ba2565b5b9050919050565b60606000805461081990614377565b80601f016020809104026020016040519081016040528092919081815260200182805461084590614377565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a782611c84565b6108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90613f44565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b606581565b600061093182610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990613fc4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109c1611cf0565b73ffffffffffffffffffffffffffffffffffffffff1614806109f057506109ef816109ea611cf0565b611a16565b5b610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613e84565b60405180910390fd5b610a398383611cf8565b505050565b6000600880549050905090565b6000600b54421015905090565b610a69610a63611cf0565b82611db1565b610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90613fe4565b60405180910390fd5b610ab3838383611e8f565b505050565b6000610ac3836110bd565b8210610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90613d84565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610b6b611cf0565b73ffffffffffffffffffffffffffffffffffffffff16610b896113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613f64565b60405180910390fd5b80600b8190555050565b610c048383836040518060200160405280600081525061187d565b505050565b60606000610c16836110bd565b90506000811415610c9957600067ffffffffffffffff811115610c62577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c905781602001602082028036833780820191505090505b50915050610d80565b60008167ffffffffffffffff811115610cdb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d095781602001602082028036833780820191505090505b50905060005b82811015610d7957610d218582610ab8565b828281518110610d5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d71906143a9565b915050610d0f565b5080925050505b919050565b6000610d8f610a3e565b8210610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614004565b60405180910390fd5b60088281548110610e0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e24611cf0565b73ffffffffffffffffffffffffffffffffffffffff16610e426113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613f64565b60405180910390fd5b8060129080519060200190610eae929190612e6c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613ec4565b60405180910390fd5b80915050919050565b610f6c611cf0565b73ffffffffffffffffffffffffffffffffffffffff16610f8a6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613f64565b60405180910390fd5b6000610fea610a3e565b905060658282610ffa91906141ac565b1061103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190614064565b60405180910390fd5b600b54421061107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590613ee4565b60405180910390fd5b60005b828110156110b8576110a56110946113d6565b82846110a091906141ac565b6120eb565b80806110b0906143a9565b915050611081565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590613ea4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61117d611cf0565b73ffffffffffffffffffffffffffffffffffffffff1661119b6113d6565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613f64565b60405180910390fd5b6111fb6000612109565b565b611205611cf0565b73ffffffffffffffffffffffffffffffffffffffff166112236113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613f64565b60405180910390fd5b600047905060006112886121cf565b905060008183611298919061428d565b90506000821461130357600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061130257600080fd5b5b60006064601054836113159190614233565b61131f9190614202565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061138157600080fd5b6000818361138f919061428d565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113cf57600080fd5b5050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611408611cf0565b73ffffffffffffffffffffffffffffffffffffffff166114266113d6565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613f64565b60405180910390fd5b80600c8190555050565b60606001805461149590614377565b80601f01602080910402602001604051908101604052809291908181526020018280546114c190614377565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b5050505050905090565b6000600c54905090565b600061152c610a3e565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390614024565b60405180910390fd5b600b544210156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613d64565b60405180910390fd5b81600d5411611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613f24565b60405180910390fd5b818161163191906141ac565b6127101015611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614044565b60405180910390fd5b81600c546116839190614233565b34146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb90613e04565b60405180910390fd5b60005b828110156116f7576116e43382846116df91906141ac565b6120eb565b80806116ef906143a9565b9150506116c7565b505050565b611704611cf0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613e44565b60405180910390fd5b806005600061177f611cf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182c611cf0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118719190613d27565b60405180910390a35050565b61188e611888611cf0565b83611db1565b6118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613fe4565b60405180910390fd5b6118d984848484612303565b50505050565b60606118ea82611c84565b611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613fa4565b60405180910390fd5b600061193361235f565b90506000815111611953576040518060200160405280600081525061197e565b8061195d846123f1565b60405160200161196e929190613c7a565b6040516020818303038152906040525b915050919050565b6000600b54905090565b611998611cf0565b73ffffffffffffffffffffffffffffffffffffffff166119b66113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613f64565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab2611cf0565b73ffffffffffffffffffffffffffffffffffffffff16611ad06113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613f64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613dc4565b60405180910390fd5b611b9f81612109565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c6d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c7d5750611c7c8261259e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6b83610eb2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dbc82611c84565b611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290613e64565b60405180910390fd5b6000611e0683610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7557508373ffffffffffffffffffffffffffffffffffffffff16611e5d8461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e865750611e858185611a16565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eaf82610eb2565b73ffffffffffffffffffffffffffffffffffffffff1614611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90613f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613e24565b60405180910390fd5b611f80838383612608565b611f8b600082611cf8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fdb919061428d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203291906141ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210582826040518060200160405280600081525061271c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806121da610a3e565b90506000816127106121ec919061428d565b905060656101f46121fd91906141ac565b82101561224b57601154600c54606584612217919061428d565b6122219190614233565b61222b919061428d565b9250826011600082825461223f91906141ac565b925050819055506122fe565b6101f461271061225b919061428d565b8211156122c457601154600c54826101f4612276919061428d565b6122809190614233565b600c546101f46122909190614233565b61229a91906141ac565b6122a4919061428d565b925082601160008282546122b891906141ac565b925050819055506122fd565b601154600c546101f46122d79190614233565b6122e1919061428d565b925082601160008282546122f591906141ac565b925050819055505b5b505090565b61230e848484611e8f565b61231a84848484612777565b612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613da4565b60405180910390fd5b50505050565b60606012805461236e90614377565b80601f016020809104026020016040519081016040528092919081815260200182805461239a90614377565b80156123e75780601f106123bc576101008083540402835291602001916123e7565b820191906000526020600020905b8154815290600101906020018083116123ca57829003601f168201915b5050505050905090565b60606000821415612439576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612599565b600082905060005b6000821461246b578080612454906143a9565b915050600a826124649190614202565b9150612441565b60008167ffffffffffffffff8111156124ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124df5781602001600182028036833780820191505090505b5090505b60008514612592576001826124f8919061428d565b9150600a8561250791906143f2565b603061251391906141ac565b60f81b81838151811061254f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561258b9190614202565b94506124e3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61261383838361290e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126565761265181612913565b612695565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461269457612693838261295c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d8576126d381612ac9565b612717565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612716576127158282612c0c565b5b5b505050565b6127268383612c8b565b6127336000848484612777565b612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276990613da4565b60405180910390fd5b505050565b60006127988473ffffffffffffffffffffffffffffffffffffffff16612e59565b15612901578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127c1611cf0565b8786866040518563ffffffff1660e01b81526004016127e39493929190613cb9565b602060405180830381600087803b1580156127fd57600080fd5b505af192505050801561282e57506040513d601f19601f8201168201806040525081019061282b9190613218565b60015b6128b1573d806000811461285e576040519150601f19603f3d011682016040523d82523d6000602084013e612863565b606091505b506000815114156128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a090613da4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612906565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612969846110bd565b612973919061428d565b9050600060076000848152602001908152602001600020549050818114612a58576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612add919061428d565b9050600060096000848152602001908152602001600020549050600060088381548110612b33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c17836110bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf290613f04565b60405180910390fd5b612d0481611c84565b15612d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90613de4565b60405180910390fd5b612d5060008383612608565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da091906141ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e7890614377565b90600052602060002090601f016020900481019282612e9a5760008555612ee1565b82601f10612eb357805160ff1916838001178555612ee1565b82800160010185558215612ee1579182015b82811115612ee0578251825591602001919060010190612ec5565b5b509050612eee9190612ef2565b5090565b5b80821115612f0b576000816000905550600101612ef3565b5090565b6000612f22612f1d846140d0565b61409f565b905082815260208101848484011115612f3a57600080fd5b612f45848285614335565b509392505050565b6000612f60612f5b84614100565b61409f565b905082815260208101848484011115612f7857600080fd5b612f83848285614335565b509392505050565b600081359050612f9a816144f0565b92915050565b600081359050612faf81614507565b92915050565b600081359050612fc48161451e565b92915050565b600081519050612fd98161451e565b92915050565b600082601f830112612ff057600080fd5b8135613000848260208601612f0f565b91505092915050565b600082601f83011261301a57600080fd5b813561302a848260208601612f4d565b91505092915050565b60008135905061304281614535565b92915050565b60006020828403121561305a57600080fd5b600061306884828501612f8b565b91505092915050565b6000806040838503121561308457600080fd5b600061309285828601612f8b565b92505060206130a385828601612f8b565b9150509250929050565b6000806000606084860312156130c257600080fd5b60006130d086828701612f8b565b93505060206130e186828701612f8b565b92505060406130f286828701613033565b9150509250925092565b6000806000806080858703121561311257600080fd5b600061312087828801612f8b565b945050602061313187828801612f8b565b935050604061314287828801613033565b925050606085013567ffffffffffffffff81111561315f57600080fd5b61316b87828801612fdf565b91505092959194509250565b6000806040838503121561318a57600080fd5b600061319885828601612f8b565b92505060206131a985828601612fa0565b9150509250929050565b600080604083850312156131c657600080fd5b60006131d485828601612f8b565b92505060206131e585828601613033565b9150509250929050565b60006020828403121561320157600080fd5b600061320f84828501612fb5565b91505092915050565b60006020828403121561322a57600080fd5b600061323884828501612fca565b91505092915050565b60006020828403121561325357600080fd5b600082013567ffffffffffffffff81111561326d57600080fd5b61327984828501613009565b91505092915050565b60006020828403121561329457600080fd5b60006132a284828501613033565b91505092915050565b60006132b78383613c5c565b60208301905092915050565b6132cc816142c1565b82525050565b60006132dd82614140565b6132e7818561416e565b93506132f283614130565b8060005b8381101561332357815161330a88826132ab565b975061331583614161565b9250506001810190506132f6565b5085935050505092915050565b613339816142d3565b82525050565b600061334a8261414b565b613354818561417f565b9350613364818560208601614344565b61336d816144df565b840191505092915050565b600061338382614156565b61338d8185614190565b935061339d818560208601614344565b6133a6816144df565b840191505092915050565b60006133bc82614156565b6133c681856141a1565b93506133d6818560208601614344565b80840191505092915050565b60006133ef601c83614190565b91507f5468652073616c6520686173206e6f7420796574206f70656e65642e000000006000830152602082019050919050565b600061342f602b83614190565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613495603283614190565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134fb602683614190565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613561601c83614190565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135a1603683614190565b91507f5472616e73616374696f6e2076616c7565206973206e6f7420636f727265637460008301527f20666f722074686973206d616e79206865726f65732e000000000000000000006020830152604082019050919050565b6000613607602483614190565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061366d601983614190565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136ad602c83614190565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613713603883614190565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613779602a83614190565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137df602983614190565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613845601d83614190565b91507f5468652073616c652068617320616c726561647920737461727465642e0000006000830152602082019050919050565b6000613885602083614190565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006138c5602083614190565b91507f45786365656473207472616e73616374696f6e20746f6b656e206c696d69742e6000830152602082019050919050565b6000613905602c83614190565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061396b602083614190565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139ab602983614190565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a11602f83614190565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a77602183614190565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613add603183614190565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b43602c83614190565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613ba9601883614190565b91507f4d7573742062652063616c6c6564206469726563746c792e00000000000000006000830152602082019050919050565b6000613be9601783614190565b91507f57696c6c20657863656564206d617820737570706c792e0000000000000000006000830152602082019050919050565b6000613c29601083614190565b91507f4265796f6e64206d6178206c696d6974000000000000000000000000000000006000830152602082019050919050565b613c658161432b565b82525050565b613c748161432b565b82525050565b6000613c8682856133b1565b9150613c9282846133b1565b91508190509392505050565b6000602082019050613cb360008301846132c3565b92915050565b6000608082019050613cce60008301876132c3565b613cdb60208301866132c3565b613ce86040830185613c6b565b8181036060830152613cfa818461333f565b905095945050505050565b60006020820190508181036000830152613d1f81846132d2565b905092915050565b6000602082019050613d3c6000830184613330565b92915050565b60006020820190508181036000830152613d5c8184613378565b905092915050565b60006020820190508181036000830152613d7d816133e2565b9050919050565b60006020820190508181036000830152613d9d81613422565b9050919050565b60006020820190508181036000830152613dbd81613488565b9050919050565b60006020820190508181036000830152613ddd816134ee565b9050919050565b60006020820190508181036000830152613dfd81613554565b9050919050565b60006020820190508181036000830152613e1d81613594565b9050919050565b60006020820190508181036000830152613e3d816135fa565b9050919050565b60006020820190508181036000830152613e5d81613660565b9050919050565b60006020820190508181036000830152613e7d816136a0565b9050919050565b60006020820190508181036000830152613e9d81613706565b9050919050565b60006020820190508181036000830152613ebd8161376c565b9050919050565b60006020820190508181036000830152613edd816137d2565b9050919050565b60006020820190508181036000830152613efd81613838565b9050919050565b60006020820190508181036000830152613f1d81613878565b9050919050565b60006020820190508181036000830152613f3d816138b8565b9050919050565b60006020820190508181036000830152613f5d816138f8565b9050919050565b60006020820190508181036000830152613f7d8161395e565b9050919050565b60006020820190508181036000830152613f9d8161399e565b9050919050565b60006020820190508181036000830152613fbd81613a04565b9050919050565b60006020820190508181036000830152613fdd81613a6a565b9050919050565b60006020820190508181036000830152613ffd81613ad0565b9050919050565b6000602082019050818103600083015261401d81613b36565b9050919050565b6000602082019050818103600083015261403d81613b9c565b9050919050565b6000602082019050818103600083015261405d81613bdc565b9050919050565b6000602082019050818103600083015261407d81613c1c565b9050919050565b60006020820190506140996000830184613c6b565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140c6576140c56144b0565b5b8060405250919050565b600067ffffffffffffffff8211156140eb576140ea6144b0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561411b5761411a6144b0565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141b78261432b565b91506141c28361432b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141f7576141f6614423565b5b828201905092915050565b600061420d8261432b565b91506142188361432b565b92508261422857614227614452565b5b828204905092915050565b600061423e8261432b565b91506142498361432b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428257614281614423565b5b828202905092915050565b60006142988261432b565b91506142a38361432b565b9250828210156142b6576142b5614423565b5b828203905092915050565b60006142cc8261430b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614362578082015181840152602081019050614347565b83811115614371576000848401525b50505050565b6000600282049050600182168061438f57607f821691505b602082108114156143a3576143a2614481565b5b50919050565b60006143b48261432b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143e7576143e6614423565b5b600182019050919050565b60006143fd8261432b565b91506144088361432b565b92508261441857614417614452565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6144f9816142c1565b811461450457600080fd5b50565b614510816142d3565b811461451b57600080fd5b50565b614527816142df565b811461453257600080fd5b50565b61453e8161432b565b811461454957600080fd5b5056fea26469706673582212208289196fd8e7edab9d8be79ba84db6f261426c7a9a136093498813f4781877af64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d687474703a2f2f777777772e6e6f74736f73757065726865726f65732e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063688cf12c11610102578063a0712d6811610095578063cbf21fe411610064578063cbf21fe4146106d6578063ccfdd2f814610701578063e985e9c51461072a578063f2fde38b14610767576101e3565b8063a0712d681461062b578063a22cb46514610647578063b88d4fde14610670578063c87b56dd14610699576101e3565b80638da5cb5b116100d15780638da5cb5b1461058157806391b7f5ed146105ac57806395d89b41146105d557806398d5fdca14610600576101e3565b8063688cf12c146104fa57806370a0823114610523578063715018a614610560578063853828b614610577576101e3565b80632f745c591161017a578063438b630011610149578063438b63001461041a5780634f6ccce71461045757806355f804b3146104945780636352211e146104bd576101e3565b80632f745c591461036057806332cb6b0c1461039d5780633bd2b67d146103c857806342842e0e146103f1576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631a0813301461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc146102505780630922f9c51461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906131ef565b610790565b60405161021c9190613d27565b60405180910390f35b34801561023157600080fd5b5061023a61080a565b6040516102479190613d42565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613282565b61089c565b6040516102849190613c9e565b60405180910390f35b34801561029957600080fd5b506102a2610921565b6040516102af9190614084565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906131b3565b610926565b005b3480156102ed57600080fd5b506102f6610a3e565b6040516103039190614084565b60405180910390f35b34801561031857600080fd5b50610321610a4b565b60405161032e9190613d27565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906130ad565b610a58565b005b34801561036c57600080fd5b50610387600480360381019061038291906131b3565b610ab8565b6040516103949190614084565b60405180910390f35b3480156103a957600080fd5b506103b2610b5d565b6040516103bf9190614084565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613282565b610b63565b005b3480156103fd57600080fd5b50610418600480360381019061041391906130ad565b610be9565b005b34801561042657600080fd5b50610441600480360381019061043c9190613048565b610c09565b60405161044e9190613d05565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190613282565b610d85565b60405161048b9190614084565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190613241565b610e1c565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613282565b610eb2565b6040516104f19190613c9e565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613282565b610f64565b005b34801561052f57600080fd5b5061054a60048036038101906105459190613048565b6110bd565b6040516105579190614084565b60405180910390f35b34801561056c57600080fd5b50610575611175565b005b61057f6111fd565b005b34801561058d57600080fd5b506105966113d6565b6040516105a39190613c9e565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613282565b611400565b005b3480156105e157600080fd5b506105ea611486565b6040516105f79190613d42565b60405180910390f35b34801561060c57600080fd5b50610615611518565b6040516106229190614084565b60405180910390f35b61064560048036038101906106409190613282565b611522565b005b34801561065357600080fd5b5061066e60048036038101906106699190613177565b6116fc565b005b34801561067c57600080fd5b50610697600480360381019061069291906130fc565b61187d565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613282565b6118df565b6040516106cd9190613d42565b60405180910390f35b3480156106e257600080fd5b506106eb611986565b6040516106f89190614084565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190613282565b611990565b005b34801561073657600080fd5b50610751600480360381019061074c9190613071565b611a16565b60405161075e9190613d27565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613048565b611aaa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610803575061080282611ba2565b5b9050919050565b60606000805461081990614377565b80601f016020809104026020016040519081016040528092919081815260200182805461084590614377565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a782611c84565b6108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90613f44565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b606581565b600061093182610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990613fc4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109c1611cf0565b73ffffffffffffffffffffffffffffffffffffffff1614806109f057506109ef816109ea611cf0565b611a16565b5b610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613e84565b60405180910390fd5b610a398383611cf8565b505050565b6000600880549050905090565b6000600b54421015905090565b610a69610a63611cf0565b82611db1565b610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90613fe4565b60405180910390fd5b610ab3838383611e8f565b505050565b6000610ac3836110bd565b8210610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90613d84565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610b6b611cf0565b73ffffffffffffffffffffffffffffffffffffffff16610b896113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613f64565b60405180910390fd5b80600b8190555050565b610c048383836040518060200160405280600081525061187d565b505050565b60606000610c16836110bd565b90506000811415610c9957600067ffffffffffffffff811115610c62577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610c905781602001602082028036833780820191505090505b50915050610d80565b60008167ffffffffffffffff811115610cdb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d095781602001602082028036833780820191505090505b50905060005b82811015610d7957610d218582610ab8565b828281518110610d5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d71906143a9565b915050610d0f565b5080925050505b919050565b6000610d8f610a3e565b8210610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614004565b60405180910390fd5b60088281548110610e0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e24611cf0565b73ffffffffffffffffffffffffffffffffffffffff16610e426113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613f64565b60405180910390fd5b8060129080519060200190610eae929190612e6c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613ec4565b60405180910390fd5b80915050919050565b610f6c611cf0565b73ffffffffffffffffffffffffffffffffffffffff16610f8a6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613f64565b60405180910390fd5b6000610fea610a3e565b905060658282610ffa91906141ac565b1061103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190614064565b60405180910390fd5b600b54421061107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590613ee4565b60405180910390fd5b60005b828110156110b8576110a56110946113d6565b82846110a091906141ac565b6120eb565b80806110b0906143a9565b915050611081565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590613ea4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61117d611cf0565b73ffffffffffffffffffffffffffffffffffffffff1661119b6113d6565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613f64565b60405180910390fd5b6111fb6000612109565b565b611205611cf0565b73ffffffffffffffffffffffffffffffffffffffff166112236113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090613f64565b60405180910390fd5b600047905060006112886121cf565b905060008183611298919061428d565b90506000821461130357600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061130257600080fd5b5b60006064601054836113159190614233565b61131f9190614202565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061138157600080fd5b6000818361138f919061428d565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113cf57600080fd5b5050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611408611cf0565b73ffffffffffffffffffffffffffffffffffffffff166114266113d6565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613f64565b60405180910390fd5b80600c8190555050565b60606001805461149590614377565b80601f01602080910402602001604051908101604052809291908181526020018280546114c190614377565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b5050505050905090565b6000600c54905090565b600061152c610a3e565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390614024565b60405180910390fd5b600b544210156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613d64565b60405180910390fd5b81600d5411611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613f24565b60405180910390fd5b818161163191906141ac565b6127101015611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614044565b60405180910390fd5b81600c546116839190614233565b34146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb90613e04565b60405180910390fd5b60005b828110156116f7576116e43382846116df91906141ac565b6120eb565b80806116ef906143a9565b9150506116c7565b505050565b611704611cf0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613e44565b60405180910390fd5b806005600061177f611cf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182c611cf0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118719190613d27565b60405180910390a35050565b61188e611888611cf0565b83611db1565b6118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613fe4565b60405180910390fd5b6118d984848484612303565b50505050565b60606118ea82611c84565b611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613fa4565b60405180910390fd5b600061193361235f565b90506000815111611953576040518060200160405280600081525061197e565b8061195d846123f1565b60405160200161196e929190613c7a565b6040516020818303038152906040525b915050919050565b6000600b54905090565b611998611cf0565b73ffffffffffffffffffffffffffffffffffffffff166119b66113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613f64565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab2611cf0565b73ffffffffffffffffffffffffffffffffffffffff16611ad06113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613f64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613dc4565b60405180910390fd5b611b9f81612109565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c6d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c7d5750611c7c8261259e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6b83610eb2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dbc82611c84565b611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290613e64565b60405180910390fd5b6000611e0683610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7557508373ffffffffffffffffffffffffffffffffffffffff16611e5d8461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e865750611e858185611a16565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eaf82610eb2565b73ffffffffffffffffffffffffffffffffffffffff1614611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90613f84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613e24565b60405180910390fd5b611f80838383612608565b611f8b600082611cf8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fdb919061428d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203291906141ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61210582826040518060200160405280600081525061271c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806121da610a3e565b90506000816127106121ec919061428d565b905060656101f46121fd91906141ac565b82101561224b57601154600c54606584612217919061428d565b6122219190614233565b61222b919061428d565b9250826011600082825461223f91906141ac565b925050819055506122fe565b6101f461271061225b919061428d565b8211156122c457601154600c54826101f4612276919061428d565b6122809190614233565b600c546101f46122909190614233565b61229a91906141ac565b6122a4919061428d565b925082601160008282546122b891906141ac565b925050819055506122fd565b601154600c546101f46122d79190614233565b6122e1919061428d565b925082601160008282546122f591906141ac565b925050819055505b5b505090565b61230e848484611e8f565b61231a84848484612777565b612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613da4565b60405180910390fd5b50505050565b60606012805461236e90614377565b80601f016020809104026020016040519081016040528092919081815260200182805461239a90614377565b80156123e75780601f106123bc576101008083540402835291602001916123e7565b820191906000526020600020905b8154815290600101906020018083116123ca57829003601f168201915b5050505050905090565b60606000821415612439576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612599565b600082905060005b6000821461246b578080612454906143a9565b915050600a826124649190614202565b9150612441565b60008167ffffffffffffffff8111156124ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124df5781602001600182028036833780820191505090505b5090505b60008514612592576001826124f8919061428d565b9150600a8561250791906143f2565b603061251391906141ac565b60f81b81838151811061254f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561258b9190614202565b94506124e3565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61261383838361290e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126565761265181612913565b612695565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461269457612693838261295c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d8576126d381612ac9565b612717565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612716576127158282612c0c565b5b5b505050565b6127268383612c8b565b6127336000848484612777565b612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276990613da4565b60405180910390fd5b505050565b60006127988473ffffffffffffffffffffffffffffffffffffffff16612e59565b15612901578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127c1611cf0565b8786866040518563ffffffff1660e01b81526004016127e39493929190613cb9565b602060405180830381600087803b1580156127fd57600080fd5b505af192505050801561282e57506040513d601f19601f8201168201806040525081019061282b9190613218565b60015b6128b1573d806000811461285e576040519150601f19603f3d011682016040523d82523d6000602084013e612863565b606091505b506000815114156128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a090613da4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612906565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612969846110bd565b612973919061428d565b9050600060076000848152602001908152602001600020549050818114612a58576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612add919061428d565b9050600060096000848152602001908152602001600020549050600060088381548110612b33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c17836110bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf290613f04565b60405180910390fd5b612d0481611c84565b15612d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90613de4565b60405180910390fd5b612d5060008383612608565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da091906141ac565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e7890614377565b90600052602060002090601f016020900481019282612e9a5760008555612ee1565b82601f10612eb357805160ff1916838001178555612ee1565b82800160010185558215612ee1579182015b82811115612ee0578251825591602001919060010190612ec5565b5b509050612eee9190612ef2565b5090565b5b80821115612f0b576000816000905550600101612ef3565b5090565b6000612f22612f1d846140d0565b61409f565b905082815260208101848484011115612f3a57600080fd5b612f45848285614335565b509392505050565b6000612f60612f5b84614100565b61409f565b905082815260208101848484011115612f7857600080fd5b612f83848285614335565b509392505050565b600081359050612f9a816144f0565b92915050565b600081359050612faf81614507565b92915050565b600081359050612fc48161451e565b92915050565b600081519050612fd98161451e565b92915050565b600082601f830112612ff057600080fd5b8135613000848260208601612f0f565b91505092915050565b600082601f83011261301a57600080fd5b813561302a848260208601612f4d565b91505092915050565b60008135905061304281614535565b92915050565b60006020828403121561305a57600080fd5b600061306884828501612f8b565b91505092915050565b6000806040838503121561308457600080fd5b600061309285828601612f8b565b92505060206130a385828601612f8b565b9150509250929050565b6000806000606084860312156130c257600080fd5b60006130d086828701612f8b565b93505060206130e186828701612f8b565b92505060406130f286828701613033565b9150509250925092565b6000806000806080858703121561311257600080fd5b600061312087828801612f8b565b945050602061313187828801612f8b565b935050604061314287828801613033565b925050606085013567ffffffffffffffff81111561315f57600080fd5b61316b87828801612fdf565b91505092959194509250565b6000806040838503121561318a57600080fd5b600061319885828601612f8b565b92505060206131a985828601612fa0565b9150509250929050565b600080604083850312156131c657600080fd5b60006131d485828601612f8b565b92505060206131e585828601613033565b9150509250929050565b60006020828403121561320157600080fd5b600061320f84828501612fb5565b91505092915050565b60006020828403121561322a57600080fd5b600061323884828501612fca565b91505092915050565b60006020828403121561325357600080fd5b600082013567ffffffffffffffff81111561326d57600080fd5b61327984828501613009565b91505092915050565b60006020828403121561329457600080fd5b60006132a284828501613033565b91505092915050565b60006132b78383613c5c565b60208301905092915050565b6132cc816142c1565b82525050565b60006132dd82614140565b6132e7818561416e565b93506132f283614130565b8060005b8381101561332357815161330a88826132ab565b975061331583614161565b9250506001810190506132f6565b5085935050505092915050565b613339816142d3565b82525050565b600061334a8261414b565b613354818561417f565b9350613364818560208601614344565b61336d816144df565b840191505092915050565b600061338382614156565b61338d8185614190565b935061339d818560208601614344565b6133a6816144df565b840191505092915050565b60006133bc82614156565b6133c681856141a1565b93506133d6818560208601614344565b80840191505092915050565b60006133ef601c83614190565b91507f5468652073616c6520686173206e6f7420796574206f70656e65642e000000006000830152602082019050919050565b600061342f602b83614190565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613495603283614190565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134fb602683614190565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613561601c83614190565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006135a1603683614190565b91507f5472616e73616374696f6e2076616c7565206973206e6f7420636f727265637460008301527f20666f722074686973206d616e79206865726f65732e000000000000000000006020830152604082019050919050565b6000613607602483614190565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061366d601983614190565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136ad602c83614190565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613713603883614190565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613779602a83614190565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137df602983614190565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613845601d83614190565b91507f5468652073616c652068617320616c726561647920737461727465642e0000006000830152602082019050919050565b6000613885602083614190565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006138c5602083614190565b91507f45786365656473207472616e73616374696f6e20746f6b656e206c696d69742e6000830152602082019050919050565b6000613905602c83614190565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061396b602083614190565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139ab602983614190565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a11602f83614190565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a77602183614190565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613add603183614190565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b43602c83614190565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613ba9601883614190565b91507f4d7573742062652063616c6c6564206469726563746c792e00000000000000006000830152602082019050919050565b6000613be9601783614190565b91507f57696c6c20657863656564206d617820737570706c792e0000000000000000006000830152602082019050919050565b6000613c29601083614190565b91507f4265796f6e64206d6178206c696d6974000000000000000000000000000000006000830152602082019050919050565b613c658161432b565b82525050565b613c748161432b565b82525050565b6000613c8682856133b1565b9150613c9282846133b1565b91508190509392505050565b6000602082019050613cb360008301846132c3565b92915050565b6000608082019050613cce60008301876132c3565b613cdb60208301866132c3565b613ce86040830185613c6b565b8181036060830152613cfa818461333f565b905095945050505050565b60006020820190508181036000830152613d1f81846132d2565b905092915050565b6000602082019050613d3c6000830184613330565b92915050565b60006020820190508181036000830152613d5c8184613378565b905092915050565b60006020820190508181036000830152613d7d816133e2565b9050919050565b60006020820190508181036000830152613d9d81613422565b9050919050565b60006020820190508181036000830152613dbd81613488565b9050919050565b60006020820190508181036000830152613ddd816134ee565b9050919050565b60006020820190508181036000830152613dfd81613554565b9050919050565b60006020820190508181036000830152613e1d81613594565b9050919050565b60006020820190508181036000830152613e3d816135fa565b9050919050565b60006020820190508181036000830152613e5d81613660565b9050919050565b60006020820190508181036000830152613e7d816136a0565b9050919050565b60006020820190508181036000830152613e9d81613706565b9050919050565b60006020820190508181036000830152613ebd8161376c565b9050919050565b60006020820190508181036000830152613edd816137d2565b9050919050565b60006020820190508181036000830152613efd81613838565b9050919050565b60006020820190508181036000830152613f1d81613878565b9050919050565b60006020820190508181036000830152613f3d816138b8565b9050919050565b60006020820190508181036000830152613f5d816138f8565b9050919050565b60006020820190508181036000830152613f7d8161395e565b9050919050565b60006020820190508181036000830152613f9d8161399e565b9050919050565b60006020820190508181036000830152613fbd81613a04565b9050919050565b60006020820190508181036000830152613fdd81613a6a565b9050919050565b60006020820190508181036000830152613ffd81613ad0565b9050919050565b6000602082019050818103600083015261401d81613b36565b9050919050565b6000602082019050818103600083015261403d81613b9c565b9050919050565b6000602082019050818103600083015261405d81613bdc565b9050919050565b6000602082019050818103600083015261407d81613c1c565b9050919050565b60006020820190506140996000830184613c6b565b92915050565b6000604051905081810181811067ffffffffffffffff821117156140c6576140c56144b0565b5b8060405250919050565b600067ffffffffffffffff8211156140eb576140ea6144b0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561411b5761411a6144b0565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141b78261432b565b91506141c28361432b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141f7576141f6614423565b5b828201905092915050565b600061420d8261432b565b91506142188361432b565b92508261422857614227614452565b5b828204905092915050565b600061423e8261432b565b91506142498361432b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428257614281614423565b5b828202905092915050565b60006142988261432b565b91506142a38361432b565b9250828210156142b6576142b5614423565b5b828203905092915050565b60006142cc8261430b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614362578082015181840152602081019050614347565b83811115614371576000848401525b50505050565b6000600282049050600182168061438f57607f821691505b602082108114156143a3576143a2614481565b5b50919050565b60006143b48261432b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143e7576143e6614423565b5b600182019050919050565b60006143fd8261432b565b91506144088361432b565b92508261441857614417614452565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6144f9816142c1565b811461450457600080fd5b50565b614510816142d3565b811461451b57600080fd5b50565b614527816142df565b811461453257600080fd5b50565b61453e8161432b565b811461454957600080fd5b5056fea26469706673582212208289196fd8e7edab9d8be79ba84db6f261426c7a9a136093498813f4781877af64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d687474703a2f2f777777772e6e6f74736f73757065726865726f65732e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): http://wwww.notsosuperheroes.io/api/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [2] : 687474703a2f2f777777772e6e6f74736f73757065726865726f65732e696f2f
Arg [3] : 6170692f6d657461646174612f00000000000000000000000000000000000000


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.