ETH Price: $3,251.62 (+2.17%)
Gas: 1 Gwei

Token

FoodFrogs (FF)
 

Overview

Max Total Supply

880 FF

Holders

404

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
boredsadfezape.eth
Balance
2 FF
0x34e81DC2FD8B18b78bf0C47aE799b8F4BCA0DDE5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10000 UNIQUE FOOD FROGS LIVING ON THE WORLD'S 1ST NFT FOOD AND BEVERAGE MARKETPLACE

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FoodFrogs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.7.0 <0.9.0;

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

contract FoodFrogs is ERC721Enumerable, Ownable {
  using Strings for uint256;

  uint256 public constant MAX_SUPPLY = 10000;
  uint256 public constant MINT_LIMIT = 10;
  uint256 public constant COST_PER_FROG = 60000000000000000; // 0.06 ETH
  uint256 public constant PRESALE_LIMIT_PER_ADDRESS = 10;

  string public _uriPrefix;
  string public _uriSuffix;
  
  bool public _isPresaleActive = false;
  bool public _isPublicSaleActive = false;
  
  mapping(address => bool) public _presaleAddresses;
  
  constructor(string memory name, string memory symbol) ERC721(name, symbol) { }

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

  function mint(uint256 quantity) public payable {
    require(quantity > 0, "quantity must be greater than 0");
    uint256 supply = totalSupply();
    require(supply + quantity <= MAX_SUPPLY, "quantity would exceed total supply");

    if (msg.sender != owner()) {
        require(_isPublicSaleActive || _isPresaleActive, "contract is closed");
        require(quantity <= MINT_LIMIT, "quantity must not be greater than 10");
        require(msg.value >= COST_PER_FROG * quantity, "insufficient funds");

        // Skip presale logic if the sale is public.
        if (!_isPublicSaleActive)
        {
            require(_presaleAddresses[msg.sender] == true, "address is not part of presale");
            uint256 ownerMintedCount = balanceOf(msg.sender);
            require(ownerMintedCount + quantity <= PRESALE_LIMIT_PER_ADDRESS, "per-address presale limit exceeded");
        }
    }

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

  function setSaleState(bool presale, bool publicSale) public onlyOwner {
    require(!presale || !publicSale, "contract cannot simultaneously be in both a pre sale and public sale state");
    _isPresaleActive = presale;
    _isPublicSaleActive = publicSale;
  }

  function setPresaleAddressState(address[] calldata presaleAddresses, bool enable) public onlyOwner {
    for (uint256 i; i < presaleAddresses.length; i++) {
        address addr = presaleAddresses[i];
        _presaleAddresses[addr] = enable;
    }
  }
  
  function setURIPrefix(string memory uriPrefix) public onlyOwner {
    _uriPrefix = uriPrefix;
  }

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(_exists(tokenId), "token does not exist");
    string memory uriPrefix = _uriPrefix;
    if (bytes(uriPrefix).length == 0) {
        return "";
    }
    return string(abi.encodePacked(uriPrefix, tokenId.toString(), _uriSuffix));
  }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 3 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","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":"COST_PER_FROG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setPresaleAddressState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"presale","type":"bool"},{"internalType":"bool","name":"publicSale","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriPrefix","type":"string"}],"name":"setURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriSuffix","type":"string"}],"name":"setURISuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b5060405162004c9a38038062004c9a83398181016040528101906200006d9190620002c7565b818181600090805190602001906200008792919062000199565b508060019080519060200190620000a092919062000199565b505050620000c3620000b7620000cb60201b60201c565b620000d360201b60201c565b5050620004d0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a790620003e1565b90600052602060002090601f016020900481019282620001cb576000855562000217565b82601f10620001e657805160ff191683800117855562000217565b8280016001018555821562000217579182015b8281111562000216578251825591602001919060010190620001f9565b5b5090506200022691906200022a565b5090565b5b80821115620002455760008160009055506001016200022b565b5090565b6000620002606200025a8462000375565b6200034c565b9050828152602081018484840111156200027f576200027e620004b0565b5b6200028c848285620003ab565b509392505050565b600082601f830112620002ac57620002ab620004ab565b5b8151620002be84826020860162000249565b91505092915050565b60008060408385031215620002e157620002e0620004ba565b5b600083015167ffffffffffffffff811115620003025762000301620004b5565b5b620003108582860162000294565b925050602083015167ffffffffffffffff811115620003345762000333620004b5565b5b620003428582860162000294565b9150509250929050565b6000620003586200036b565b905062000366828262000417565b919050565b6000604051905090565b600067ffffffffffffffff8211156200039357620003926200047c565b5b6200039e82620004bf565b9050602081019050919050565b60005b83811015620003cb578082015181840152602081019050620003ae565b83811115620003db576000848401525b50505050565b60006002820490506001821680620003fa57607f821691505b602082108114156200041157620004106200044d565b5b50919050565b6200042282620004bf565b810181811067ffffffffffffffff821117156200044457620004436200047c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6147ba80620004e06000396000f3fe6080604052600436106101f95760003560e01c80636bff2c241161010d578063b6d08cde116100a0578063cc4e96111161006f578063cc4e961114610717578063d41b737514610742578063db23d0ff1461076d578063e985e9c514610798578063f2fde38b146107d5576101f9565b8063b6d08cde1461065d578063b88d4fde14610686578063bb380204146106af578063c87b56dd146106da576101f9565b80638da5cb5b116100dc5780638da5cb5b146105c257806395d89b41146105ed578063a0712d6814610618578063a22cb46514610634576101f9565b80636bff2c241461051c57806370a0823114610545578063715018a61461058257806381b3e57514610599576101f9565b806332cb6b0c116101905780634f6ccce71161015f5780634f6ccce71461040f57806359d39ecf1461044c5780635db37d15146104775780636352211e146104b457806369a72327146104f1576101f9565b806332cb6b0c146103885780633340d62c146103b35780633ccfd60b146103dc57806342842e0e146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe578063027752401461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061315f565b6107fe565b60405161023291906137dc565b60405180910390f35b34801561024757600080fd5b50610250610878565b60405161025d9190613b59565b60405180910390f35b34801561027257600080fd5b5061027b61087d565b60405161028891906137f7565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613202565b61090f565b6040516102c59190613775565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061307f565b610994565b005b34801561030357600080fd5b5061030c610aac565b6040516103199190613b59565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612f69565b610ab9565b005b34801561035757600080fd5b50610372600480360381019061036d919061307f565b610b19565b60405161037f9190613b59565b60405180910390f35b34801561039457600080fd5b5061039d610bbe565b6040516103aa9190613b59565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061311f565b610bc4565b005b6103e4610cc2565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612f69565b610db7565b005b34801561041b57600080fd5b5061043660048036038101906104319190613202565b610dd7565b6040516104439190613b59565b60405180910390f35b34801561045857600080fd5b50610461610e48565b60405161046e9190613b59565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612efc565b610e53565b6040516104ab91906137dc565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190613202565b610e73565b6040516104e89190613775565b60405180910390f35b3480156104fd57600080fd5b50610506610f25565b60405161051391906137f7565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906131b9565b610fb3565b005b34801561055157600080fd5b5061056c60048036038101906105679190612efc565b611049565b6040516105799190613b59565b60405180910390f35b34801561058e57600080fd5b50610597611101565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906131b9565b611189565b005b3480156105ce57600080fd5b506105d761121f565b6040516105e49190613775565b60405180910390f35b3480156105f957600080fd5b50610602611249565b60405161060f91906137f7565b60405180910390f35b610632600480360381019061062d9190613202565b6112db565b005b34801561064057600080fd5b5061065b6004803603810190610656919061303f565b6115f4565b005b34801561066957600080fd5b50610684600480360381019061067f91906130bf565b611775565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612fbc565b61189c565b005b3480156106bb57600080fd5b506106c46118fe565b6040516106d191906137f7565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613202565b61198c565b60405161070e91906137f7565b60405180910390f35b34801561072357600080fd5b5061072c611abd565b60405161073991906137dc565b60405180910390f35b34801561074e57600080fd5b50610757611ad0565b60405161076491906137dc565b60405180910390f35b34801561077957600080fd5b50610782611ae3565b60405161078f9190613b59565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612f29565b611ae8565b6040516107cc91906137dc565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190612efc565b611b7c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610871575061087082611c74565b5b9050919050565b600a81565b60606000805461088c90613e29565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890613e29565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600061091a82611d56565b610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906139b9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099f82610e73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790613a79565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2f611dc2565b73ffffffffffffffffffffffffffffffffffffffff161480610a5e5750610a5d81610a58611dc2565b611ae8565b5b610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490613919565b60405180910390fd5b610aa78383611dca565b505050565b6000600880549050905090565b610aca610ac4611dc2565b82611e83565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090613ab9565b60405180910390fd5b610b14838383611f61565b505050565b6000610b2483611049565b8210610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90613819565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610bcc611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610bea61121f565b73ffffffffffffffffffffffffffffffffffffffff1614610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906139f9565b60405180910390fd5b811580610c4b575080155b610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190613999565b60405180910390fd5b81600d60006101000a81548160ff02191690831515021790555080600d60016101000a81548160ff0219169083151502179055505050565b610cca611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610ce861121f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d35906139f9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6490613760565b60006040518083038185875af1925050503d8060008114610da1576040519150601f19603f3d011682016040523d82523d6000602084013e610da6565b606091505b5050905080610db457600080fd5b50565b610dd28383836040518060200160405280600081525061189c565b505050565b6000610de1610aac565b8210610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613af9565b60405180910390fd5b60088281548110610e3657610e35613fc2565b5b90600052602060002001549050919050565b66d529ae9e86000081565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390613959565b60405180910390fd5b80915050919050565b600b8054610f3290613e29565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5e90613e29565b8015610fab5780601f10610f8057610100808354040283529160200191610fab565b820191906000526020600020905b815481529060010190602001808311610f8e57829003601f168201915b505050505081565b610fbb611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610fd961121f565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906139f9565b60405180910390fd5b80600b9080519060200190611045929190612cba565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613939565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611109611dc2565b73ffffffffffffffffffffffffffffffffffffffff1661112761121f565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611174906139f9565b60405180910390fd5b61118760006121bd565b565b611191611dc2565b73ffffffffffffffffffffffffffffffffffffffff166111af61121f565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906139f9565b60405180910390fd5b80600c908051906020019061121b929190612cba565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125890613e29565b80601f016020809104026020016040519081016040528092919081815260200182805461128490613e29565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905090565b6000811161131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613899565b60405180910390fd5b6000611328610aac565b905061271082826113399190613c5e565b111561137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906139d9565b60405180910390fd5b61138261121f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115b957600d60019054906101000a900460ff16806113db5750600d60009054906101000a900460ff165b61141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613a19565b60405180910390fd5b600a82111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613b39565b60405180910390fd5b8166d529ae9e8600006114719190613ce5565b3410156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613a99565b60405180910390fd5b600d60019054906101000a900460ff166115b85760011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613ad9565b60405180910390fd5b600061156533611049565b9050600a83826115759190613c5e565b11156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613a59565b60405180910390fd5b505b5b6000600190505b8281116115ef576115dc3382846115d79190613c5e565b612283565b80806115e790613e8c565b9150506115c0565b505050565b6115fc611dc2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611661906138d9565b60405180910390fd5b8060056000611677611dc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611724611dc2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176991906137dc565b60405180910390a35050565b61177d611dc2565b73ffffffffffffffffffffffffffffffffffffffff1661179b61121f565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906139f9565b60405180910390fd5b60005b8383905081101561189657600084848381811061181457611813613fc2565b5b90506020020160208101906118299190612efc565b905082600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061188e90613e8c565b9150506117f4565b50505050565b6118ad6118a7611dc2565b83611e83565b6118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613ab9565b60405180910390fd5b6118f8848484846122a1565b50505050565b600c805461190b90613e29565b80601f016020809104026020016040519081016040528092919081815260200182805461193790613e29565b80156119845780601f1061195957610100808354040283529160200191611984565b820191906000526020600020905b81548152906001019060200180831161196757829003601f168201915b505050505081565b606061199782611d56565b6119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613b19565b60405180910390fd5b6000600b80546119e590613e29565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1190613e29565b8015611a5e5780601f10611a3357610100808354040283529160200191611a5e565b820191906000526020600020905b815481529060010190602001808311611a4157829003601f168201915b50505050509050600081511415611a875760405180602001604052806000815250915050611ab8565b80611a91846122fd565b600c604051602001611aa59392919061372f565b6040516020818303038152906040529150505b919050565b600d60009054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b84611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611ba261121f565b73ffffffffffffffffffffffffffffffffffffffff1614611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef906139f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613859565b60405180910390fd5b611c71816121bd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d4f5750611d4e8261245e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e3d83610e73565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e8e82611d56565b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec4906138f9565b60405180910390fd5b6000611ed883610e73565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4757508373ffffffffffffffffffffffffffffffffffffffff16611f2f8461090f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f585750611f578185611ae8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f8182610e73565b73ffffffffffffffffffffffffffffffffffffffff1614611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613a39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e906138b9565b60405180910390fd5b6120528383836124c8565b61205d600082611dca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ad9190613d3f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121049190613c5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61229d8282604051806020016040528060008152506125dc565b5050565b6122ac848484611f61565b6122b884848484612637565b6122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613839565b60405180910390fd5b50505050565b60606000821415612345576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612459565b600082905060005b6000821461237757808061236090613e8c565b915050600a826123709190613cb4565b915061234d565b60008167ffffffffffffffff81111561239357612392613ff1565b5b6040519080825280601f01601f1916602001820160405280156123c55781602001600182028036833780820191505090505b5090505b60008514612452576001826123de9190613d3f565b9150600a856123ed9190613ed5565b60306123f99190613c5e565b60f81b81838151811061240f5761240e613fc2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561244b9190613cb4565b94506123c9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124d38383836127ce565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251657612511816127d3565b612555565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255457612553838261281c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125985761259381612989565b6125d7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125d6576125d58282612a5a565b5b5b505050565b6125e68383612ad9565b6125f36000848484612637565b612632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262990613839565b60405180910390fd5b505050565b60006126588473ffffffffffffffffffffffffffffffffffffffff16612ca7565b156127c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612681611dc2565b8786866040518563ffffffff1660e01b81526004016126a39493929190613790565b602060405180830381600087803b1580156126bd57600080fd5b505af19250505080156126ee57506040513d601f19601f820116820180604052508101906126eb919061318c565b60015b612771573d806000811461271e576040519150601f19603f3d011682016040523d82523d6000602084013e612723565b606091505b50600081511415612769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276090613839565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161282984611049565b6128339190613d3f565b9050600060076000848152602001908152602001600020549050818114612918576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061299d9190613d3f565b90506000600960008481526020019081526020016000205490506000600883815481106129cd576129cc613fc2565b5b9060005260206000200154905080600883815481106129ef576129ee613fc2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3e57612a3d613f93565b5b6001900381819060005260206000200160009055905550505050565b6000612a6583611049565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4090613979565b60405180910390fd5b612b5281611d56565b15612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8990613879565b60405180910390fd5b612b9e600083836124c8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bee9190613c5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612cc690613e29565b90600052602060002090601f016020900481019282612ce85760008555612d2f565b82601f10612d0157805160ff1916838001178555612d2f565b82800160010185558215612d2f579182015b82811115612d2e578251825591602001919060010190612d13565b5b509050612d3c9190612d40565b5090565b5b80821115612d59576000816000905550600101612d41565b5090565b6000612d70612d6b84613b99565b613b74565b905082815260208101848484011115612d8c57612d8b61402f565b5b612d97848285613de7565b509392505050565b6000612db2612dad84613bca565b613b74565b905082815260208101848484011115612dce57612dcd61402f565b5b612dd9848285613de7565b509392505050565b600081359050612df081614728565b92915050565b60008083601f840112612e0c57612e0b614025565b5b8235905067ffffffffffffffff811115612e2957612e28614020565b5b602083019150836020820283011115612e4557612e4461402a565b5b9250929050565b600081359050612e5b8161473f565b92915050565b600081359050612e7081614756565b92915050565b600081519050612e8581614756565b92915050565b600082601f830112612ea057612e9f614025565b5b8135612eb0848260208601612d5d565b91505092915050565b600082601f830112612ece57612ecd614025565b5b8135612ede848260208601612d9f565b91505092915050565b600081359050612ef68161476d565b92915050565b600060208284031215612f1257612f11614039565b5b6000612f2084828501612de1565b91505092915050565b60008060408385031215612f4057612f3f614039565b5b6000612f4e85828601612de1565b9250506020612f5f85828601612de1565b9150509250929050565b600080600060608486031215612f8257612f81614039565b5b6000612f9086828701612de1565b9350506020612fa186828701612de1565b9250506040612fb286828701612ee7565b9150509250925092565b60008060008060808587031215612fd657612fd5614039565b5b6000612fe487828801612de1565b9450506020612ff587828801612de1565b935050604061300687828801612ee7565b925050606085013567ffffffffffffffff81111561302757613026614034565b5b61303387828801612e8b565b91505092959194509250565b6000806040838503121561305657613055614039565b5b600061306485828601612de1565b925050602061307585828601612e4c565b9150509250929050565b6000806040838503121561309657613095614039565b5b60006130a485828601612de1565b92505060206130b585828601612ee7565b9150509250929050565b6000806000604084860312156130d8576130d7614039565b5b600084013567ffffffffffffffff8111156130f6576130f5614034565b5b61310286828701612df6565b9350935050602061311586828701612e4c565b9150509250925092565b6000806040838503121561313657613135614039565b5b600061314485828601612e4c565b925050602061315585828601612e4c565b9150509250929050565b60006020828403121561317557613174614039565b5b600061318384828501612e61565b91505092915050565b6000602082840312156131a2576131a1614039565b5b60006131b084828501612e76565b91505092915050565b6000602082840312156131cf576131ce614039565b5b600082013567ffffffffffffffff8111156131ed576131ec614034565b5b6131f984828501612eb9565b91505092915050565b60006020828403121561321857613217614039565b5b600061322684828501612ee7565b91505092915050565b61323881613d73565b82525050565b61324781613d85565b82525050565b600061325882613c10565b6132628185613c26565b9350613272818560208601613df6565b61327b8161403e565b840191505092915050565b600061329182613c1b565b61329b8185613c42565b93506132ab818560208601613df6565b6132b48161403e565b840191505092915050565b60006132ca82613c1b565b6132d48185613c53565b93506132e4818560208601613df6565b80840191505092915050565b600081546132fd81613e29565b6133078186613c53565b94506001821660008114613322576001811461333357613366565b60ff19831686528186019350613366565b61333c85613bfb565b60005b8381101561335e5781548189015260018201915060208101905061333f565b838801955050505b50505092915050565b600061337c602b83613c42565b91506133878261404f565b604082019050919050565b600061339f603283613c42565b91506133aa8261409e565b604082019050919050565b60006133c2602683613c42565b91506133cd826140ed565b604082019050919050565b60006133e5601c83613c42565b91506133f08261413c565b602082019050919050565b6000613408601f83613c42565b915061341382614165565b602082019050919050565b600061342b602483613c42565b91506134368261418e565b604082019050919050565b600061344e601983613c42565b9150613459826141dd565b602082019050919050565b6000613471602c83613c42565b915061347c82614206565b604082019050919050565b6000613494603883613c42565b915061349f82614255565b604082019050919050565b60006134b7602a83613c42565b91506134c2826142a4565b604082019050919050565b60006134da602983613c42565b91506134e5826142f3565b604082019050919050565b60006134fd602083613c42565b915061350882614342565b602082019050919050565b6000613520604a83613c42565b915061352b8261436b565b606082019050919050565b6000613543602c83613c42565b915061354e826143e0565b604082019050919050565b6000613566602283613c42565b91506135718261442f565b604082019050919050565b6000613589602083613c42565b91506135948261447e565b602082019050919050565b60006135ac601283613c42565b91506135b7826144a7565b602082019050919050565b60006135cf602983613c42565b91506135da826144d0565b604082019050919050565b60006135f2602283613c42565b91506135fd8261451f565b604082019050919050565b6000613615602183613c42565b91506136208261456e565b604082019050919050565b6000613638600083613c37565b9150613643826145bd565b600082019050919050565b600061365b601283613c42565b9150613666826145c0565b602082019050919050565b600061367e603183613c42565b9150613689826145e9565b604082019050919050565b60006136a1601e83613c42565b91506136ac82614638565b602082019050919050565b60006136c4602c83613c42565b91506136cf82614661565b604082019050919050565b60006136e7601483613c42565b91506136f2826146b0565b602082019050919050565b600061370a602483613c42565b9150613715826146d9565b604082019050919050565b61372981613ddd565b82525050565b600061373b82866132bf565b915061374782856132bf565b915061375382846132f0565b9150819050949350505050565b600061376b8261362b565b9150819050919050565b600060208201905061378a600083018461322f565b92915050565b60006080820190506137a5600083018761322f565b6137b2602083018661322f565b6137bf6040830185613720565b81810360608301526137d1818461324d565b905095945050505050565b60006020820190506137f1600083018461323e565b92915050565b600060208201905081810360008301526138118184613286565b905092915050565b600060208201905081810360008301526138328161336f565b9050919050565b6000602082019050818103600083015261385281613392565b9050919050565b60006020820190508181036000830152613872816133b5565b9050919050565b60006020820190508181036000830152613892816133d8565b9050919050565b600060208201905081810360008301526138b2816133fb565b9050919050565b600060208201905081810360008301526138d28161341e565b9050919050565b600060208201905081810360008301526138f281613441565b9050919050565b6000602082019050818103600083015261391281613464565b9050919050565b6000602082019050818103600083015261393281613487565b9050919050565b60006020820190508181036000830152613952816134aa565b9050919050565b60006020820190508181036000830152613972816134cd565b9050919050565b60006020820190508181036000830152613992816134f0565b9050919050565b600060208201905081810360008301526139b281613513565b9050919050565b600060208201905081810360008301526139d281613536565b9050919050565b600060208201905081810360008301526139f281613559565b9050919050565b60006020820190508181036000830152613a128161357c565b9050919050565b60006020820190508181036000830152613a328161359f565b9050919050565b60006020820190508181036000830152613a52816135c2565b9050919050565b60006020820190508181036000830152613a72816135e5565b9050919050565b60006020820190508181036000830152613a9281613608565b9050919050565b60006020820190508181036000830152613ab28161364e565b9050919050565b60006020820190508181036000830152613ad281613671565b9050919050565b60006020820190508181036000830152613af281613694565b9050919050565b60006020820190508181036000830152613b12816136b7565b9050919050565b60006020820190508181036000830152613b32816136da565b9050919050565b60006020820190508181036000830152613b52816136fd565b9050919050565b6000602082019050613b6e6000830184613720565b92915050565b6000613b7e613b8f565b9050613b8a8282613e5b565b919050565b6000604051905090565b600067ffffffffffffffff821115613bb457613bb3613ff1565b5b613bbd8261403e565b9050602081019050919050565b600067ffffffffffffffff821115613be557613be4613ff1565b5b613bee8261403e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6982613ddd565b9150613c7483613ddd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca957613ca8613f06565b5b828201905092915050565b6000613cbf82613ddd565b9150613cca83613ddd565b925082613cda57613cd9613f35565b5b828204905092915050565b6000613cf082613ddd565b9150613cfb83613ddd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3457613d33613f06565b5b828202905092915050565b6000613d4a82613ddd565b9150613d5583613ddd565b925082821015613d6857613d67613f06565b5b828203905092915050565b6000613d7e82613dbd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e14578082015181840152602081019050613df9565b83811115613e23576000848401525b50505050565b60006002820490506001821680613e4157607f821691505b60208210811415613e5557613e54613f64565b5b50919050565b613e648261403e565b810181811067ffffffffffffffff82111715613e8357613e82613ff1565b5b80604052505050565b6000613e9782613ddd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eca57613ec9613f06565b5b600182019050919050565b6000613ee082613ddd565b9150613eeb83613ddd565b925082613efb57613efa613f35565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7175616e74697479206d7573742062652067726561746572207468616e203000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f636f6e74726163742063616e6e6f742073696d756c74616e656f75736c79206260008201527f6520696e20626f74682061207072652073616c6520616e64207075626c69632060208201527f73616c6520737461746500000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7175616e7469747920776f756c642065786365656420746f74616c207375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f636f6e747261637420697320636c6f7365640000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7065722d616464726573732070726573616c65206c696d69742065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f61646472657373206973206e6f742070617274206f662070726573616c650000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f7175616e74697479206d757374206e6f7420626520677265617465722074686160008201527f6e20313000000000000000000000000000000000000000000000000000000000602082015250565b61473181613d73565b811461473c57600080fd5b50565b61474881613d85565b811461475357600080fd5b50565b61475f81613d91565b811461476a57600080fd5b50565b61477681613ddd565b811461478157600080fd5b5056fea26469706673582212205598d4c12ae28c064a0dd7a81ffbbc4bc90acd542fa10ba8517ee584592f69b964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009466f6f6446726f6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024646000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636bff2c241161010d578063b6d08cde116100a0578063cc4e96111161006f578063cc4e961114610717578063d41b737514610742578063db23d0ff1461076d578063e985e9c514610798578063f2fde38b146107d5576101f9565b8063b6d08cde1461065d578063b88d4fde14610686578063bb380204146106af578063c87b56dd146106da576101f9565b80638da5cb5b116100dc5780638da5cb5b146105c257806395d89b41146105ed578063a0712d6814610618578063a22cb46514610634576101f9565b80636bff2c241461051c57806370a0823114610545578063715018a61461058257806381b3e57514610599576101f9565b806332cb6b0c116101905780634f6ccce71161015f5780634f6ccce71461040f57806359d39ecf1461044c5780635db37d15146104775780636352211e146104b457806369a72327146104f1576101f9565b806332cb6b0c146103885780633340d62c146103b35780633ccfd60b146103dc57806342842e0e146103e6576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe578063027752401461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061315f565b6107fe565b60405161023291906137dc565b60405180910390f35b34801561024757600080fd5b50610250610878565b60405161025d9190613b59565b60405180910390f35b34801561027257600080fd5b5061027b61087d565b60405161028891906137f7565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613202565b61090f565b6040516102c59190613775565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061307f565b610994565b005b34801561030357600080fd5b5061030c610aac565b6040516103199190613b59565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612f69565b610ab9565b005b34801561035757600080fd5b50610372600480360381019061036d919061307f565b610b19565b60405161037f9190613b59565b60405180910390f35b34801561039457600080fd5b5061039d610bbe565b6040516103aa9190613b59565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d5919061311f565b610bc4565b005b6103e4610cc2565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612f69565b610db7565b005b34801561041b57600080fd5b5061043660048036038101906104319190613202565b610dd7565b6040516104439190613b59565b60405180910390f35b34801561045857600080fd5b50610461610e48565b60405161046e9190613b59565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612efc565b610e53565b6040516104ab91906137dc565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d69190613202565b610e73565b6040516104e89190613775565b60405180910390f35b3480156104fd57600080fd5b50610506610f25565b60405161051391906137f7565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906131b9565b610fb3565b005b34801561055157600080fd5b5061056c60048036038101906105679190612efc565b611049565b6040516105799190613b59565b60405180910390f35b34801561058e57600080fd5b50610597611101565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906131b9565b611189565b005b3480156105ce57600080fd5b506105d761121f565b6040516105e49190613775565b60405180910390f35b3480156105f957600080fd5b50610602611249565b60405161060f91906137f7565b60405180910390f35b610632600480360381019061062d9190613202565b6112db565b005b34801561064057600080fd5b5061065b6004803603810190610656919061303f565b6115f4565b005b34801561066957600080fd5b50610684600480360381019061067f91906130bf565b611775565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612fbc565b61189c565b005b3480156106bb57600080fd5b506106c46118fe565b6040516106d191906137f7565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613202565b61198c565b60405161070e91906137f7565b60405180910390f35b34801561072357600080fd5b5061072c611abd565b60405161073991906137dc565b60405180910390f35b34801561074e57600080fd5b50610757611ad0565b60405161076491906137dc565b60405180910390f35b34801561077957600080fd5b50610782611ae3565b60405161078f9190613b59565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612f29565b611ae8565b6040516107cc91906137dc565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190612efc565b611b7c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610871575061087082611c74565b5b9050919050565b600a81565b60606000805461088c90613e29565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890613e29565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600061091a82611d56565b610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906139b9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099f82610e73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790613a79565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2f611dc2565b73ffffffffffffffffffffffffffffffffffffffff161480610a5e5750610a5d81610a58611dc2565b611ae8565b5b610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490613919565b60405180910390fd5b610aa78383611dca565b505050565b6000600880549050905090565b610aca610ac4611dc2565b82611e83565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090613ab9565b60405180910390fd5b610b14838383611f61565b505050565b6000610b2483611049565b8210610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90613819565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610bcc611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610bea61121f565b73ffffffffffffffffffffffffffffffffffffffff1614610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906139f9565b60405180910390fd5b811580610c4b575080155b610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190613999565b60405180910390fd5b81600d60006101000a81548160ff02191690831515021790555080600d60016101000a81548160ff0219169083151502179055505050565b610cca611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610ce861121f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d35906139f9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6490613760565b60006040518083038185875af1925050503d8060008114610da1576040519150601f19603f3d011682016040523d82523d6000602084013e610da6565b606091505b5050905080610db457600080fd5b50565b610dd28383836040518060200160405280600081525061189c565b505050565b6000610de1610aac565b8210610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613af9565b60405180910390fd5b60088281548110610e3657610e35613fc2565b5b90600052602060002001549050919050565b66d529ae9e86000081565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390613959565b60405180910390fd5b80915050919050565b600b8054610f3290613e29565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5e90613e29565b8015610fab5780601f10610f8057610100808354040283529160200191610fab565b820191906000526020600020905b815481529060010190602001808311610f8e57829003601f168201915b505050505081565b610fbb611dc2565b73ffffffffffffffffffffffffffffffffffffffff16610fd961121f565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906139f9565b60405180910390fd5b80600b9080519060200190611045929190612cba565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613939565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611109611dc2565b73ffffffffffffffffffffffffffffffffffffffff1661112761121f565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611174906139f9565b60405180910390fd5b61118760006121bd565b565b611191611dc2565b73ffffffffffffffffffffffffffffffffffffffff166111af61121f565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906139f9565b60405180910390fd5b80600c908051906020019061121b929190612cba565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125890613e29565b80601f016020809104026020016040519081016040528092919081815260200182805461128490613e29565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905090565b6000811161131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613899565b60405180910390fd5b6000611328610aac565b905061271082826113399190613c5e565b111561137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906139d9565b60405180910390fd5b61138261121f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115b957600d60019054906101000a900460ff16806113db5750600d60009054906101000a900460ff165b61141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190613a19565b60405180910390fd5b600a82111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613b39565b60405180910390fd5b8166d529ae9e8600006114719190613ce5565b3410156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613a99565b60405180910390fd5b600d60019054906101000a900460ff166115b85760011515600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613ad9565b60405180910390fd5b600061156533611049565b9050600a83826115759190613c5e565b11156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613a59565b60405180910390fd5b505b5b6000600190505b8281116115ef576115dc3382846115d79190613c5e565b612283565b80806115e790613e8c565b9150506115c0565b505050565b6115fc611dc2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611661906138d9565b60405180910390fd5b8060056000611677611dc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611724611dc2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176991906137dc565b60405180910390a35050565b61177d611dc2565b73ffffffffffffffffffffffffffffffffffffffff1661179b61121f565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906139f9565b60405180910390fd5b60005b8383905081101561189657600084848381811061181457611813613fc2565b5b90506020020160208101906118299190612efc565b905082600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061188e90613e8c565b9150506117f4565b50505050565b6118ad6118a7611dc2565b83611e83565b6118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613ab9565b60405180910390fd5b6118f8848484846122a1565b50505050565b600c805461190b90613e29565b80601f016020809104026020016040519081016040528092919081815260200182805461193790613e29565b80156119845780601f1061195957610100808354040283529160200191611984565b820191906000526020600020905b81548152906001019060200180831161196757829003601f168201915b505050505081565b606061199782611d56565b6119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613b19565b60405180910390fd5b6000600b80546119e590613e29565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1190613e29565b8015611a5e5780601f10611a3357610100808354040283529160200191611a5e565b820191906000526020600020905b815481529060010190602001808311611a4157829003601f168201915b50505050509050600081511415611a875760405180602001604052806000815250915050611ab8565b80611a91846122fd565b600c604051602001611aa59392919061372f565b6040516020818303038152906040529150505b919050565b600d60009054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b84611dc2565b73ffffffffffffffffffffffffffffffffffffffff16611ba261121f565b73ffffffffffffffffffffffffffffffffffffffff1614611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef906139f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613859565b60405180910390fd5b611c71816121bd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d4f5750611d4e8261245e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e3d83610e73565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e8e82611d56565b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec4906138f9565b60405180910390fd5b6000611ed883610e73565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4757508373ffffffffffffffffffffffffffffffffffffffff16611f2f8461090f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f585750611f578185611ae8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f8182610e73565b73ffffffffffffffffffffffffffffffffffffffff1614611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613a39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e906138b9565b60405180910390fd5b6120528383836124c8565b61205d600082611dca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ad9190613d3f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121049190613c5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61229d8282604051806020016040528060008152506125dc565b5050565b6122ac848484611f61565b6122b884848484612637565b6122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613839565b60405180910390fd5b50505050565b60606000821415612345576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612459565b600082905060005b6000821461237757808061236090613e8c565b915050600a826123709190613cb4565b915061234d565b60008167ffffffffffffffff81111561239357612392613ff1565b5b6040519080825280601f01601f1916602001820160405280156123c55781602001600182028036833780820191505090505b5090505b60008514612452576001826123de9190613d3f565b9150600a856123ed9190613ed5565b60306123f99190613c5e565b60f81b81838151811061240f5761240e613fc2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561244b9190613cb4565b94506123c9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124d38383836127ce565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251657612511816127d3565b612555565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255457612553838261281c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125985761259381612989565b6125d7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125d6576125d58282612a5a565b5b5b505050565b6125e68383612ad9565b6125f36000848484612637565b612632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262990613839565b60405180910390fd5b505050565b60006126588473ffffffffffffffffffffffffffffffffffffffff16612ca7565b156127c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612681611dc2565b8786866040518563ffffffff1660e01b81526004016126a39493929190613790565b602060405180830381600087803b1580156126bd57600080fd5b505af19250505080156126ee57506040513d601f19601f820116820180604052508101906126eb919061318c565b60015b612771573d806000811461271e576040519150601f19603f3d011682016040523d82523d6000602084013e612723565b606091505b50600081511415612769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276090613839565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161282984611049565b6128339190613d3f565b9050600060076000848152602001908152602001600020549050818114612918576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061299d9190613d3f565b90506000600960008481526020019081526020016000205490506000600883815481106129cd576129cc613fc2565b5b9060005260206000200154905080600883815481106129ef576129ee613fc2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3e57612a3d613f93565b5b6001900381819060005260206000200160009055905550505050565b6000612a6583611049565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4090613979565b60405180910390fd5b612b5281611d56565b15612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8990613879565b60405180910390fd5b612b9e600083836124c8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bee9190613c5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612cc690613e29565b90600052602060002090601f016020900481019282612ce85760008555612d2f565b82601f10612d0157805160ff1916838001178555612d2f565b82800160010185558215612d2f579182015b82811115612d2e578251825591602001919060010190612d13565b5b509050612d3c9190612d40565b5090565b5b80821115612d59576000816000905550600101612d41565b5090565b6000612d70612d6b84613b99565b613b74565b905082815260208101848484011115612d8c57612d8b61402f565b5b612d97848285613de7565b509392505050565b6000612db2612dad84613bca565b613b74565b905082815260208101848484011115612dce57612dcd61402f565b5b612dd9848285613de7565b509392505050565b600081359050612df081614728565b92915050565b60008083601f840112612e0c57612e0b614025565b5b8235905067ffffffffffffffff811115612e2957612e28614020565b5b602083019150836020820283011115612e4557612e4461402a565b5b9250929050565b600081359050612e5b8161473f565b92915050565b600081359050612e7081614756565b92915050565b600081519050612e8581614756565b92915050565b600082601f830112612ea057612e9f614025565b5b8135612eb0848260208601612d5d565b91505092915050565b600082601f830112612ece57612ecd614025565b5b8135612ede848260208601612d9f565b91505092915050565b600081359050612ef68161476d565b92915050565b600060208284031215612f1257612f11614039565b5b6000612f2084828501612de1565b91505092915050565b60008060408385031215612f4057612f3f614039565b5b6000612f4e85828601612de1565b9250506020612f5f85828601612de1565b9150509250929050565b600080600060608486031215612f8257612f81614039565b5b6000612f9086828701612de1565b9350506020612fa186828701612de1565b9250506040612fb286828701612ee7565b9150509250925092565b60008060008060808587031215612fd657612fd5614039565b5b6000612fe487828801612de1565b9450506020612ff587828801612de1565b935050604061300687828801612ee7565b925050606085013567ffffffffffffffff81111561302757613026614034565b5b61303387828801612e8b565b91505092959194509250565b6000806040838503121561305657613055614039565b5b600061306485828601612de1565b925050602061307585828601612e4c565b9150509250929050565b6000806040838503121561309657613095614039565b5b60006130a485828601612de1565b92505060206130b585828601612ee7565b9150509250929050565b6000806000604084860312156130d8576130d7614039565b5b600084013567ffffffffffffffff8111156130f6576130f5614034565b5b61310286828701612df6565b9350935050602061311586828701612e4c565b9150509250925092565b6000806040838503121561313657613135614039565b5b600061314485828601612e4c565b925050602061315585828601612e4c565b9150509250929050565b60006020828403121561317557613174614039565b5b600061318384828501612e61565b91505092915050565b6000602082840312156131a2576131a1614039565b5b60006131b084828501612e76565b91505092915050565b6000602082840312156131cf576131ce614039565b5b600082013567ffffffffffffffff8111156131ed576131ec614034565b5b6131f984828501612eb9565b91505092915050565b60006020828403121561321857613217614039565b5b600061322684828501612ee7565b91505092915050565b61323881613d73565b82525050565b61324781613d85565b82525050565b600061325882613c10565b6132628185613c26565b9350613272818560208601613df6565b61327b8161403e565b840191505092915050565b600061329182613c1b565b61329b8185613c42565b93506132ab818560208601613df6565b6132b48161403e565b840191505092915050565b60006132ca82613c1b565b6132d48185613c53565b93506132e4818560208601613df6565b80840191505092915050565b600081546132fd81613e29565b6133078186613c53565b94506001821660008114613322576001811461333357613366565b60ff19831686528186019350613366565b61333c85613bfb565b60005b8381101561335e5781548189015260018201915060208101905061333f565b838801955050505b50505092915050565b600061337c602b83613c42565b91506133878261404f565b604082019050919050565b600061339f603283613c42565b91506133aa8261409e565b604082019050919050565b60006133c2602683613c42565b91506133cd826140ed565b604082019050919050565b60006133e5601c83613c42565b91506133f08261413c565b602082019050919050565b6000613408601f83613c42565b915061341382614165565b602082019050919050565b600061342b602483613c42565b91506134368261418e565b604082019050919050565b600061344e601983613c42565b9150613459826141dd565b602082019050919050565b6000613471602c83613c42565b915061347c82614206565b604082019050919050565b6000613494603883613c42565b915061349f82614255565b604082019050919050565b60006134b7602a83613c42565b91506134c2826142a4565b604082019050919050565b60006134da602983613c42565b91506134e5826142f3565b604082019050919050565b60006134fd602083613c42565b915061350882614342565b602082019050919050565b6000613520604a83613c42565b915061352b8261436b565b606082019050919050565b6000613543602c83613c42565b915061354e826143e0565b604082019050919050565b6000613566602283613c42565b91506135718261442f565b604082019050919050565b6000613589602083613c42565b91506135948261447e565b602082019050919050565b60006135ac601283613c42565b91506135b7826144a7565b602082019050919050565b60006135cf602983613c42565b91506135da826144d0565b604082019050919050565b60006135f2602283613c42565b91506135fd8261451f565b604082019050919050565b6000613615602183613c42565b91506136208261456e565b604082019050919050565b6000613638600083613c37565b9150613643826145bd565b600082019050919050565b600061365b601283613c42565b9150613666826145c0565b602082019050919050565b600061367e603183613c42565b9150613689826145e9565b604082019050919050565b60006136a1601e83613c42565b91506136ac82614638565b602082019050919050565b60006136c4602c83613c42565b91506136cf82614661565b604082019050919050565b60006136e7601483613c42565b91506136f2826146b0565b602082019050919050565b600061370a602483613c42565b9150613715826146d9565b604082019050919050565b61372981613ddd565b82525050565b600061373b82866132bf565b915061374782856132bf565b915061375382846132f0565b9150819050949350505050565b600061376b8261362b565b9150819050919050565b600060208201905061378a600083018461322f565b92915050565b60006080820190506137a5600083018761322f565b6137b2602083018661322f565b6137bf6040830185613720565b81810360608301526137d1818461324d565b905095945050505050565b60006020820190506137f1600083018461323e565b92915050565b600060208201905081810360008301526138118184613286565b905092915050565b600060208201905081810360008301526138328161336f565b9050919050565b6000602082019050818103600083015261385281613392565b9050919050565b60006020820190508181036000830152613872816133b5565b9050919050565b60006020820190508181036000830152613892816133d8565b9050919050565b600060208201905081810360008301526138b2816133fb565b9050919050565b600060208201905081810360008301526138d28161341e565b9050919050565b600060208201905081810360008301526138f281613441565b9050919050565b6000602082019050818103600083015261391281613464565b9050919050565b6000602082019050818103600083015261393281613487565b9050919050565b60006020820190508181036000830152613952816134aa565b9050919050565b60006020820190508181036000830152613972816134cd565b9050919050565b60006020820190508181036000830152613992816134f0565b9050919050565b600060208201905081810360008301526139b281613513565b9050919050565b600060208201905081810360008301526139d281613536565b9050919050565b600060208201905081810360008301526139f281613559565b9050919050565b60006020820190508181036000830152613a128161357c565b9050919050565b60006020820190508181036000830152613a328161359f565b9050919050565b60006020820190508181036000830152613a52816135c2565b9050919050565b60006020820190508181036000830152613a72816135e5565b9050919050565b60006020820190508181036000830152613a9281613608565b9050919050565b60006020820190508181036000830152613ab28161364e565b9050919050565b60006020820190508181036000830152613ad281613671565b9050919050565b60006020820190508181036000830152613af281613694565b9050919050565b60006020820190508181036000830152613b12816136b7565b9050919050565b60006020820190508181036000830152613b32816136da565b9050919050565b60006020820190508181036000830152613b52816136fd565b9050919050565b6000602082019050613b6e6000830184613720565b92915050565b6000613b7e613b8f565b9050613b8a8282613e5b565b919050565b6000604051905090565b600067ffffffffffffffff821115613bb457613bb3613ff1565b5b613bbd8261403e565b9050602081019050919050565b600067ffffffffffffffff821115613be557613be4613ff1565b5b613bee8261403e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6982613ddd565b9150613c7483613ddd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca957613ca8613f06565b5b828201905092915050565b6000613cbf82613ddd565b9150613cca83613ddd565b925082613cda57613cd9613f35565b5b828204905092915050565b6000613cf082613ddd565b9150613cfb83613ddd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3457613d33613f06565b5b828202905092915050565b6000613d4a82613ddd565b9150613d5583613ddd565b925082821015613d6857613d67613f06565b5b828203905092915050565b6000613d7e82613dbd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e14578082015181840152602081019050613df9565b83811115613e23576000848401525b50505050565b60006002820490506001821680613e4157607f821691505b60208210811415613e5557613e54613f64565b5b50919050565b613e648261403e565b810181811067ffffffffffffffff82111715613e8357613e82613ff1565b5b80604052505050565b6000613e9782613ddd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eca57613ec9613f06565b5b600182019050919050565b6000613ee082613ddd565b9150613eeb83613ddd565b925082613efb57613efa613f35565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7175616e74697479206d7573742062652067726561746572207468616e203000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f636f6e74726163742063616e6e6f742073696d756c74616e656f75736c79206260008201527f6520696e20626f74682061207072652073616c6520616e64207075626c69632060208201527f73616c6520737461746500000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7175616e7469747920776f756c642065786365656420746f74616c207375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f636f6e747261637420697320636c6f7365640000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7065722d616464726573732070726573616c65206c696d69742065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f61646472657373206973206e6f742070617274206f662070726573616c650000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f7175616e74697479206d757374206e6f7420626520677265617465722074686160008201527f6e20313000000000000000000000000000000000000000000000000000000000602082015250565b61473181613d73565b811461473c57600080fd5b50565b61474881613d85565b811461475357600080fd5b50565b61475f81613d91565b811461476a57600080fd5b50565b61477681613ddd565b811461478157600080fd5b5056fea26469706673582212205598d4c12ae28c064a0dd7a81ffbbc4bc90acd542fa10ba8517ee584592f69b964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009466f6f6446726f6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024646000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): FoodFrogs
Arg [1] : symbol (string): FF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 466f6f6446726f67730000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4646000000000000000000000000000000000000000000000000000000000000


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.