ETH Price: $2,087.60 (-10.97%)

Token

PxlbotCryo (PXLBOTCRYO)
 

Overview

Max Total Supply

0 PXLBOTCRYO

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 PXLBOTCRYO
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
PxlbotCryo

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : PxlbotCryo.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import './Base64.sol';

contract PxlbotCryo is ERC721, Ownable, Pausable {
  using Base64 for *;
  using Strings for uint256;

  event Requested(address _contract, uint256 tokenId, uint256 requestId);
  event Fulfilled(address _contract, uint256 tokenId, uint256 requestId);

  mapping(address => mapping(uint256 => bool)) fulfilled;
  mapping(address => bool) public approved_contracts;
  mapping(uint256 => string) image_uris;
  address[] requests_contracts;
  uint256[] requests_tokens;
  uint256 public total_requests;
  uint256 public total_tokens;
  string baseURI;

  constructor() ERC721('PxlbotCryo', 'PXLBOTCRYO') {}

  function mint(address owner, string memory image_uri) public onlyOwner {
    total_tokens++;
    uint256 tokenId = total_tokens;
    _safeMint(owner, tokenId);
    image_uris[tokenId] = image_uri;
  }

  function burn(uint256 tokenId) public onlyOwner {
    delete image_uris[tokenId];
    _burn(tokenId);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    string memory metadata = string(
      abi.encodePacked(
        '{"name": "Pxlbot Cryo #',
        tokenId.toString(),
        '", "description": "The robot uprising is smaller than you think.", ',
        '"image": "',
        _baseURI(),
        image_uris[tokenId],
        '"}'
      )
    );

    return
      string(
        abi.encodePacked(
          'data:application/json;base64,',
          Base64.base64(bytes(metadata))
        )
      );
  }

  function setBaseURI(string memory _base) external onlyOwner {
    baseURI = _base;
  }

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

  function request(address _contract, uint256 tokenId) external whenNotPaused {
    require(
      fulfilled[_contract][tokenId] == false,
      'This cryo has already been generated.'
    );
    require(
      IERC721(_contract).ownerOf(tokenId) == _msgSender(),
      'Only token owner can call this function.'
    );
    require(
      approved_contracts[_contract] == true,
      'This contract is not approved'
    );
    requests_contracts.push(_contract);
    requests_tokens.push(tokenId);
    total_requests = requests_contracts.length;
    emit Requested(_contract, tokenId, requests_tokens.length - 1);
  }

  function getNextRequest()
    external
    view
    returns (address _contract, uint256 token_id)
  {
    require(total_requests > 0, 'No requests to process');
    return (requests_contracts[0], requests_tokens[0]);
  }

  function fulfill(uint256 request_id, string memory image_uri)
    external
    onlyOwner
  {
    require(request_id < requests_tokens.length, 'invalid request ID');
    uint256 tokenId = requests_tokens[request_id];
    address _contract = requests_contracts[request_id];
    mint(IERC721(_contract).ownerOf(tokenId), image_uri);
    //add to mapping
    fulfilled[requests_contracts[request_id]][
      requests_tokens[request_id]
    ] = true;
    //remove request from arrays
    requests_tokens[request_id] = requests_tokens[requests_tokens.length - 1];
    requests_tokens.pop();
    requests_contracts[request_id] = requests_contracts[
      requests_contracts.length - 1
    ];
    requests_contracts.pop();
    total_requests = requests_contracts.length;
    emit Fulfilled(_contract, tokenId, request_id);
  }

  function setApprovedContract(address _addr, bool approval)
    external
    onlyOwner
  {
    approved_contracts[_addr] = approval;
  }
}

File 2 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 5 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 13 : Base64.sol
//SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.0;

/** BASE 64 - Written by Brech Devos */
library Base64 {
  string internal constant TABLE =
    'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

  function base64(bytes memory data) public pure returns (string memory) {
    if (data.length == 0) return '';

    // load the table into memory
    string memory table = TABLE;

    // multiply by 4/3 rounded up
    uint256 encodedLen = 4 * ((data.length + 2) / 3);

    // add some extra buffer at the end required for the writing
    string memory result = new string(encodedLen + 32);

    assembly {
      // set the actual output length
      mstore(result, encodedLen)

      // prepare the lookup table
      let tablePtr := add(table, 1)

      // input ptr
      let dataPtr := data
      let endPtr := add(dataPtr, mload(data))

      // result ptr, jump over length
      let resultPtr := add(result, 32)

      // run over the input, 3 bytes at a time
      for {

      } lt(dataPtr, endPtr) {

      } {
        dataPtr := add(dataPtr, 3)

        // read 3 bytes
        let input := mload(dataPtr)

        // write 4 characters
        mstore(
          resultPtr,
          shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))
        )
        resultPtr := add(resultPtr, 1)
        mstore(
          resultPtr,
          shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))
        )
        resultPtr := add(resultPtr, 1)
        mstore(
          resultPtr,
          shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F))))
        )
        resultPtr := add(resultPtr, 1)
        mstore(resultPtr, shl(248, mload(add(tablePtr, and(input, 0x3F)))))
        resultPtr := add(resultPtr, 1)
      }

      // padding with '='
      switch mod(mload(data), 3)
      case 1 {
        mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
      }
      case 2 {
        mstore(sub(resultPtr, 1), shl(248, 0x3d))
      }
    }

    return result;
  }
}

File 8 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 9 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 12 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 13 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {
    "contracts/Base64.sol": {
      "Base64": "0x3397c4c5a8db1bc318efb89ad28eaf9eb2fca604"
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":false,"internalType":"address","name":"_contract","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"Fulfilled","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_contract","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"Requested","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approved_contracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"request_id","type":"uint256"},{"internalType":"string","name":"image_uri","type":"string"}],"name":"fulfill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextRequest","outputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"uint256","name":"token_id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"image_uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"request","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":"_addr","type":"address"},{"internalType":"bool","name":"approval","type":"bool"}],"name":"setApprovedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total_requests","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total_tokens","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f50786c626f744372796f000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f50584c424f544352594f00000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001c1565b508060019080519060200190620000af929190620001c1565b505050620000d2620000c6620000f360201b60201c565b620000fb60201b60201c565b6000600660146101000a81548160ff021916908315150217905550620002d6565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf90620002a0565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b957607f821691505b60208210811415620002d057620002cf62000271565b5b50919050565b613fa580620002e66000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b88d4fde11610097578063c8c01a5511610071578063c8c01a55146104a7578063d0def521146104c3578063e985e9c5146104df578063f2fde38b1461050f576101a9565b8063b88d4fde1461043d578063c649083514610459578063c87b56dd14610477576101a9565b806395d89b41116100d357806395d89b41146103c857806395dfb896146103e6578063a22cb46514610405578063b2ce007914610421576101a9565b806370a0823114610370578063715018a6146103a05780638da5cb5b146103aa576101a9565b806326611b5a1161016657806355f804b31161014057806355f804b3146102ea5780635c975abb146103065780635ffd993b146103245780636352211e14610340576101a9565b806326611b5a1461029457806342842e0e146102b257806342966c68146102ce576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c5780631d37a3231461024857806323b872dd14610278575b600080fd5b6101c860048036038101906101c391906126e3565b61052b565b6040516101d5919061272b565b60405180910390f35b6101e661060d565b6040516101f391906127df565b60405180910390f35b61021660048036038101906102119190612837565b61069f565b60405161022391906128a5565b60405180910390f35b610246600480360381019061024191906128ec565b6106e5565b005b610262600480360381019061025d919061292c565b6107fd565b60405161026f919061272b565b60405180910390f35b610292600480360381019061028d9190612959565b61081d565b005b61029c61087d565b6040516102a991906129bb565b60405180910390f35b6102cc60048036038101906102c79190612959565b610883565b005b6102e860048036038101906102e39190612837565b6108a3565b005b61030460048036038101906102ff9190612b0b565b6108d6565b005b61030e6108f8565b60405161031b919061272b565b60405180910390f35b61033e60048036038101906103399190612b80565b61090f565b005b61035a60048036038101906103559190612837565b610972565b60405161036791906128a5565b60405180910390f35b61038a6004803603810190610385919061292c565b610a24565b60405161039791906129bb565b60405180910390f35b6103a8610adc565b005b6103b2610af0565b6040516103bf91906128a5565b60405180910390f35b6103d0610b1a565b6040516103dd91906127df565b60405180910390f35b6103ee610bac565b6040516103fc929190612bc0565b60405180910390f35b61041f600480360381019061041a9190612b80565b610c5c565b005b61043b60048036038101906104369190612be9565b610c72565b005b61045760048036038101906104529190612ce6565b611038565b005b61046161109a565b60405161046e91906129bb565b60405180910390f35b610491600480360381019061048c9190612837565b6110a0565b60405161049e91906127df565b60405180910390f35b6104c160048036038101906104bc91906128ec565b61119e565b005b6104dd60048036038101906104d89190612d69565b6114c2565b005b6104f960048036038101906104f49190612dc5565b611520565b604051610506919061272b565b60405180910390f35b6105296004803603810190610524919061292c565b6115b4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610606575061060582611638565b5b9050919050565b60606000805461061c90612e34565b80601f016020809104026020016040519081016040528092919081815260200182805461064890612e34565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106aa826116a2565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106f082610972565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890612ed8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107806116ed565b73ffffffffffffffffffffffffffffffffffffffff1614806107af57506107ae816107a96116ed565b611520565b5b6107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590612f6a565b60405180910390fd5b6107f883836116f5565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b61082e6108286116ed565b826117ae565b61086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490612ffc565b60405180910390fd5b610878838383611843565b505050565b600c5481565b61089e83838360405180602001604052806000815250611038565b505050565b6108ab611aaa565b6009600082815260200190815260200160002060006108ca9190612594565b6108d381611b28565b50565b6108de611aaa565b80600e90805190602001906108f49291906125d4565b5050565b6000600660149054906101000a900460ff16905090565b610917611aaa565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290613068565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c906130fa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae4611aaa565b610aee6000611c45565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b2990612e34565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5590612e34565b8015610ba25780601f10610b7757610100808354040283529160200191610ba2565b820191906000526020600020905b815481529060010190602001808311610b8557829003601f168201915b5050505050905090565b6000806000600c5411610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90613166565b60405180910390fd5b600a600081548110610c0957610c08613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b600081548110610c4957610c48613186565b5b9060005260206000200154915091509091565b610c6e610c676116ed565b8383611d0b565b5050565b610c7a611aaa565b600b805490508210610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890613201565b60405180910390fd5b6000600b8381548110610cd757610cd6613186565b5b906000526020600020015490506000600a8481548110610cfa57610cf9613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050610db98173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610d6391906129bb565b60206040518083038186803b158015610d7b57600080fd5b505afa158015610d8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db39190613236565b846114c2565b600160076000600a8781548110610dd357610dd2613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600b8781548110610e4e57610e4d613186565b5b9060005260206000200154815260200190815260200160002060006101000a81548160ff021916908315150217905550600b6001600b80549050610e929190613292565b81548110610ea357610ea2613186565b5b9060005260206000200154600b8581548110610ec257610ec1613186565b5b9060005260206000200181905550600b805480610ee257610ee16132c6565b5b60019003818190600052602060002001600090559055600a6001600a80549050610f0c9190613292565b81548110610f1d57610f1c613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a8581548110610f5c57610f5b613186565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a805480610fb657610fb56132c6565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600a80549050600c819055507f9fbd02fee182b5c51fdcdfbedd9b96716a141141d0cf550a8922f4f4350cd4b181838660405161102a939291906132f5565b60405180910390a150505050565b6110496110436116ed565b836117ae565b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90612ffc565b60405180910390fd5b61109484848484611e78565b50505050565b600d5481565b606060006110ad83611ed4565b6110b5612035565b600960008681526020019081526020016000206040516020016110da93929190613578565b6040516020818303038152906040529050733397c4c5a8db1bc318efb89ad28eaf9eb2fca60463daa68c21826040518263ffffffff1660e01b8152600401611122919061362a565b60006040518083038186803b15801561113a57600080fd5b505af415801561114e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061117791906136bc565b6040516020016111879190613751565b604051602081830303815290604052915050919050565b6111a66120c7565b60001515600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615151461124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906137e5565b60405180910390fd5b6112526116ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016112a191906129bb565b60206040518083038186803b1580156112b957600080fd5b505afa1580156112cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f19190613236565b73ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90613877565b60405180910390fd5b60011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906138e3565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b819080600181540180825580915050600190039060005260206000200160009091909190915055600a80549050600c819055507f2ea88857aaf5a09da335056adf5216caea1b3f94664a7f7344eb0468fa6b326282826001600b805490506114a79190613292565b6040516114b6939291906132f5565b60405180910390a15050565b6114ca611aaa565b600d60008154809291906114dd90613903565b91905055506000600d5490506114f38382612111565b8160096000838152602001908152602001600020908051906020019061151a9291906125d4565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115bc611aaa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611623906139be565b60405180910390fd5b61163581611c45565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116ab8161212f565b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190613068565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661176883610972565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117ba83610972565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117fc57506117fb8185611520565b5b8061183a57508373ffffffffffffffffffffffffffffffffffffffff166118228461069f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661186382610972565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613a50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613ae2565b60405180910390fd5b61193483838361219b565b61193f6000826116f5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198f9190613292565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e69190613b02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aa58383836121a0565b505050565b611ab26116ed565b73ffffffffffffffffffffffffffffffffffffffff16611ad0610af0565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613ba4565b60405180910390fd5b565b6000611b3382610972565b9050611b418160008461219b565b611b4c6000836116f5565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9c9190613292565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c41816000846121a0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190613c10565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6b919061272b565b60405180910390a3505050565b611e83848484611843565b611e8f848484846121a5565b611ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec590613ca2565b60405180910390fd5b50505050565b60606000821415611f1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612030565b600082905060005b60008214611f4e578080611f3790613903565b915050600a82611f479190613cf1565b9150611f24565b60008167ffffffffffffffff811115611f6a57611f696129e0565b5b6040519080825280601f01601f191660200182016040528015611f9c5781602001600182028036833780820191505090505b5090505b6000851461202957600182611fb59190613292565b9150600a85611fc49190613d22565b6030611fd09190613b02565b60f81b818381518110611fe657611fe5613186565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120229190613cf1565b9450611fa0565b8093505050505b919050565b6060600e805461204490612e34565b80601f016020809104026020016040519081016040528092919081815260200182805461207090612e34565b80156120bd5780601f10612092576101008083540402835291602001916120bd565b820191906000526020600020905b8154815290600101906020018083116120a057829003601f168201915b5050505050905090565b6120cf6108f8565b1561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690613d9f565b60405180910390fd5b565b61212b82826040518060200160405280600081525061233c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006121c68473ffffffffffffffffffffffffffffffffffffffff16612397565b1561232f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ef6116ed565b8786866040518563ffffffff1660e01b81526004016122119493929190613e09565b602060405180830381600087803b15801561222b57600080fd5b505af192505050801561225c57506040513d601f19601f820116820180604052508101906122599190613e6a565b60015b6122df573d806000811461228c576040519150601f19603f3d011682016040523d82523d6000602084013e612291565b606091505b506000815114156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90613ca2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612334565b600190505b949350505050565b61234683836123ba565b61235360008484846121a5565b612392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238990613ca2565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190613ee3565b60405180910390fd5b6124338161212f565b15612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90613f4f565b60405180910390fd5b61247f6000838361219b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124cf9190613b02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612590600083836121a0565b5050565b5080546125a090612e34565b6000825580601f106125b257506125d1565b601f0160209004906000526020600020908101906125d0919061265a565b5b50565b8280546125e090612e34565b90600052602060002090601f0160209004810192826126025760008555612649565b82601f1061261b57805160ff1916838001178555612649565b82800160010185558215612649579182015b8281111561264857825182559160200191906001019061262d565b5b509050612656919061265a565b5090565b5b8082111561267357600081600090555060010161265b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126c08161268b565b81146126cb57600080fd5b50565b6000813590506126dd816126b7565b92915050565b6000602082840312156126f9576126f8612681565b5b6000612707848285016126ce565b91505092915050565b60008115159050919050565b61272581612710565b82525050565b6000602082019050612740600083018461271c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612780578082015181840152602081019050612765565b8381111561278f576000848401525b50505050565b6000601f19601f8301169050919050565b60006127b182612746565b6127bb8185612751565b93506127cb818560208601612762565b6127d481612795565b840191505092915050565b600060208201905081810360008301526127f981846127a6565b905092915050565b6000819050919050565b61281481612801565b811461281f57600080fd5b50565b6000813590506128318161280b565b92915050565b60006020828403121561284d5761284c612681565b5b600061285b84828501612822565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061288f82612864565b9050919050565b61289f81612884565b82525050565b60006020820190506128ba6000830184612896565b92915050565b6128c981612884565b81146128d457600080fd5b50565b6000813590506128e6816128c0565b92915050565b6000806040838503121561290357612902612681565b5b6000612911858286016128d7565b925050602061292285828601612822565b9150509250929050565b60006020828403121561294257612941612681565b5b6000612950848285016128d7565b91505092915050565b60008060006060848603121561297257612971612681565b5b6000612980868287016128d7565b9350506020612991868287016128d7565b92505060406129a286828701612822565b9150509250925092565b6129b581612801565b82525050565b60006020820190506129d060008301846129ac565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a1882612795565b810181811067ffffffffffffffff82111715612a3757612a366129e0565b5b80604052505050565b6000612a4a612677565b9050612a568282612a0f565b919050565b600067ffffffffffffffff821115612a7657612a756129e0565b5b612a7f82612795565b9050602081019050919050565b82818337600083830152505050565b6000612aae612aa984612a5b565b612a40565b905082815260208101848484011115612aca57612ac96129db565b5b612ad5848285612a8c565b509392505050565b600082601f830112612af257612af16129d6565b5b8135612b02848260208601612a9b565b91505092915050565b600060208284031215612b2157612b20612681565b5b600082013567ffffffffffffffff811115612b3f57612b3e612686565b5b612b4b84828501612add565b91505092915050565b612b5d81612710565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b60008060408385031215612b9757612b96612681565b5b6000612ba5858286016128d7565b9250506020612bb685828601612b6b565b9150509250929050565b6000604082019050612bd56000830185612896565b612be260208301846129ac565b9392505050565b60008060408385031215612c0057612bff612681565b5b6000612c0e85828601612822565b925050602083013567ffffffffffffffff811115612c2f57612c2e612686565b5b612c3b85828601612add565b9150509250929050565b600067ffffffffffffffff821115612c6057612c5f6129e0565b5b612c6982612795565b9050602081019050919050565b6000612c89612c8484612c45565b612a40565b905082815260208101848484011115612ca557612ca46129db565b5b612cb0848285612a8c565b509392505050565b600082601f830112612ccd57612ccc6129d6565b5b8135612cdd848260208601612c76565b91505092915050565b60008060008060808587031215612d0057612cff612681565b5b6000612d0e878288016128d7565b9450506020612d1f878288016128d7565b9350506040612d3087828801612822565b925050606085013567ffffffffffffffff811115612d5157612d50612686565b5b612d5d87828801612cb8565b91505092959194509250565b60008060408385031215612d8057612d7f612681565b5b6000612d8e858286016128d7565b925050602083013567ffffffffffffffff811115612daf57612dae612686565b5b612dbb85828601612add565b9150509250929050565b60008060408385031215612ddc57612ddb612681565b5b6000612dea858286016128d7565b9250506020612dfb858286016128d7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4c57607f821691505b60208210811415612e6057612e5f612e05565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec2602183612751565b9150612ecd82612e66565b604082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f54603e83612751565b9150612f5f82612ef8565b604082019050919050565b60006020820190508181036000830152612f8381612f47565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612fe6602e83612751565b9150612ff182612f8a565b604082019050919050565b6000602082019050818103600083015261301581612fd9565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613052601883612751565b915061305d8261301c565b602082019050919050565b6000602082019050818103600083015261308181613045565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006130e4602983612751565b91506130ef82613088565b604082019050919050565b60006020820190508181036000830152613113816130d7565b9050919050565b7f4e6f20726571756573747320746f2070726f6365737300000000000000000000600082015250565b6000613150601683612751565b915061315b8261311a565b602082019050919050565b6000602082019050818103600083015261317f81613143565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e76616c696420726571756573742049440000000000000000000000000000600082015250565b60006131eb601283612751565b91506131f6826131b5565b602082019050919050565b6000602082019050818103600083015261321a816131de565b9050919050565b600081519050613230816128c0565b92915050565b60006020828403121561324c5761324b612681565b5b600061325a84828501613221565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329d82612801565b91506132a883612801565b9250828210156132bb576132ba613263565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060608201905061330a6000830186612896565b61331760208301856129ac565b61332460408301846129ac565b949350505050565b600081905092915050565b7f7b226e616d65223a202250786c626f74204372796f2023000000000000000000600082015250565b600061336d60178361332c565b915061337882613337565b601782019050919050565b600061338e82612746565b613398818561332c565b93506133a8818560208601612762565b80840191505092915050565b7f222c20226465736372697074696f6e223a202254686520726f626f742075707260008201527f6973696e6720697320736d616c6c6572207468616e20796f75207468696e6b2e60208201527f222c200000000000000000000000000000000000000000000000000000000000604082015250565b600061343660438361332c565b9150613441826133b4565b604382019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b6000613482600a8361332c565b915061348d8261344c565b600a82019050919050565b60008190508160005260206000209050919050565b600081546134ba81612e34565b6134c4818661332c565b945060018216600081146134df57600181146134f057613523565b60ff19831686528186019350613523565b6134f985613498565b60005b8381101561351b578154818901526001820191506020810190506134fc565b838801955050505b50505092915050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b600061356260028361332c565b915061356d8261352c565b600282019050919050565b600061358382613360565b915061358f8286613383565b915061359a82613429565b91506135a582613475565b91506135b18285613383565b91506135bd82846134ad565b91506135c882613555565b9150819050949350505050565b600081519050919050565b600082825260208201905092915050565b60006135fc826135d5565b61360681856135e0565b9350613616818560208601612762565b61361f81612795565b840191505092915050565b6000602082019050818103600083015261364481846135f1565b905092915050565b600061365f61365a84612a5b565b612a40565b90508281526020810184848401111561367b5761367a6129db565b5b613686848285612762565b509392505050565b600082601f8301126136a3576136a26129d6565b5b81516136b384826020860161364c565b91505092915050565b6000602082840312156136d2576136d1612681565b5b600082015167ffffffffffffffff8111156136f0576136ef612686565b5b6136fc8482850161368e565b91505092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061373b601d8361332c565b915061374682613705565b601d82019050919050565b600061375c8261372e565b91506137688284613383565b915081905092915050565b7f54686973206372796f2068617320616c7265616479206265656e2067656e657260008201527f617465642e000000000000000000000000000000000000000000000000000000602082015250565b60006137cf602583612751565b91506137da82613773565b604082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f4f6e6c7920746f6b656e206f776e65722063616e2063616c6c2074686973206660008201527f756e6374696f6e2e000000000000000000000000000000000000000000000000602082015250565b6000613861602883612751565b915061386c82613805565b604082019050919050565b6000602082019050818103600083015261389081613854565b9050919050565b7f5468697320636f6e7472616374206973206e6f7420617070726f766564000000600082015250565b60006138cd601d83612751565b91506138d882613897565b602082019050919050565b600060208201905081810360008301526138fc816138c0565b9050919050565b600061390e82612801565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394157613940613263565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139a8602683612751565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613a3a602583612751565b9150613a45826139de565b604082019050919050565b60006020820190508181036000830152613a6981613a2d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613acc602483612751565b9150613ad782613a70565b604082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b6000613b0d82612801565b9150613b1883612801565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b4d57613b4c613263565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b8e602083612751565b9150613b9982613b58565b602082019050919050565b60006020820190508181036000830152613bbd81613b81565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bfa601983612751565b9150613c0582613bc4565b602082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c8c603283612751565b9150613c9782613c30565b604082019050919050565b60006020820190508181036000830152613cbb81613c7f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cfc82612801565b9150613d0783612801565b925082613d1757613d16613cc2565b5b828204905092915050565b6000613d2d82612801565b9150613d3883612801565b925082613d4857613d47613cc2565b5b828206905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613d89601083612751565b9150613d9482613d53565b602082019050919050565b60006020820190508181036000830152613db881613d7c565b9050919050565b600082825260208201905092915050565b6000613ddb826135d5565b613de58185613dbf565b9350613df5818560208601612762565b613dfe81612795565b840191505092915050565b6000608082019050613e1e6000830187612896565b613e2b6020830186612896565b613e3860408301856129ac565b8181036060830152613e4a8184613dd0565b905095945050505050565b600081519050613e64816126b7565b92915050565b600060208284031215613e8057613e7f612681565b5b6000613e8e84828501613e55565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ecd602083612751565b9150613ed882613e97565b602082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f39601c83612751565b9150613f4482613f03565b602082019050919050565b60006020820190508181036000830152613f6881613f2c565b905091905056fea264697066735822122048643c925502a56e2c06f5c701ee1944e7631d4a2f7cf536748d3ab9ae9f509e64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b88d4fde11610097578063c8c01a5511610071578063c8c01a55146104a7578063d0def521146104c3578063e985e9c5146104df578063f2fde38b1461050f576101a9565b8063b88d4fde1461043d578063c649083514610459578063c87b56dd14610477576101a9565b806395d89b41116100d357806395d89b41146103c857806395dfb896146103e6578063a22cb46514610405578063b2ce007914610421576101a9565b806370a0823114610370578063715018a6146103a05780638da5cb5b146103aa576101a9565b806326611b5a1161016657806355f804b31161014057806355f804b3146102ea5780635c975abb146103065780635ffd993b146103245780636352211e14610340576101a9565b806326611b5a1461029457806342842e0e146102b257806342966c68146102ce576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c5780631d37a3231461024857806323b872dd14610278575b600080fd5b6101c860048036038101906101c391906126e3565b61052b565b6040516101d5919061272b565b60405180910390f35b6101e661060d565b6040516101f391906127df565b60405180910390f35b61021660048036038101906102119190612837565b61069f565b60405161022391906128a5565b60405180910390f35b610246600480360381019061024191906128ec565b6106e5565b005b610262600480360381019061025d919061292c565b6107fd565b60405161026f919061272b565b60405180910390f35b610292600480360381019061028d9190612959565b61081d565b005b61029c61087d565b6040516102a991906129bb565b60405180910390f35b6102cc60048036038101906102c79190612959565b610883565b005b6102e860048036038101906102e39190612837565b6108a3565b005b61030460048036038101906102ff9190612b0b565b6108d6565b005b61030e6108f8565b60405161031b919061272b565b60405180910390f35b61033e60048036038101906103399190612b80565b61090f565b005b61035a60048036038101906103559190612837565b610972565b60405161036791906128a5565b60405180910390f35b61038a6004803603810190610385919061292c565b610a24565b60405161039791906129bb565b60405180910390f35b6103a8610adc565b005b6103b2610af0565b6040516103bf91906128a5565b60405180910390f35b6103d0610b1a565b6040516103dd91906127df565b60405180910390f35b6103ee610bac565b6040516103fc929190612bc0565b60405180910390f35b61041f600480360381019061041a9190612b80565b610c5c565b005b61043b60048036038101906104369190612be9565b610c72565b005b61045760048036038101906104529190612ce6565b611038565b005b61046161109a565b60405161046e91906129bb565b60405180910390f35b610491600480360381019061048c9190612837565b6110a0565b60405161049e91906127df565b60405180910390f35b6104c160048036038101906104bc91906128ec565b61119e565b005b6104dd60048036038101906104d89190612d69565b6114c2565b005b6104f960048036038101906104f49190612dc5565b611520565b604051610506919061272b565b60405180910390f35b6105296004803603810190610524919061292c565b6115b4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610606575061060582611638565b5b9050919050565b60606000805461061c90612e34565b80601f016020809104026020016040519081016040528092919081815260200182805461064890612e34565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106aa826116a2565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106f082610972565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890612ed8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107806116ed565b73ffffffffffffffffffffffffffffffffffffffff1614806107af57506107ae816107a96116ed565b611520565b5b6107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590612f6a565b60405180910390fd5b6107f883836116f5565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b61082e6108286116ed565b826117ae565b61086d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086490612ffc565b60405180910390fd5b610878838383611843565b505050565b600c5481565b61089e83838360405180602001604052806000815250611038565b505050565b6108ab611aaa565b6009600082815260200190815260200160002060006108ca9190612594565b6108d381611b28565b50565b6108de611aaa565b80600e90805190602001906108f49291906125d4565b5050565b6000600660149054906101000a900460ff16905090565b610917611aaa565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290613068565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c906130fa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae4611aaa565b610aee6000611c45565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b2990612e34565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5590612e34565b8015610ba25780601f10610b7757610100808354040283529160200191610ba2565b820191906000526020600020905b815481529060010190602001808311610b8557829003601f168201915b5050505050905090565b6000806000600c5411610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90613166565b60405180910390fd5b600a600081548110610c0957610c08613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b600081548110610c4957610c48613186565b5b9060005260206000200154915091509091565b610c6e610c676116ed565b8383611d0b565b5050565b610c7a611aaa565b600b805490508210610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890613201565b60405180910390fd5b6000600b8381548110610cd757610cd6613186565b5b906000526020600020015490506000600a8481548110610cfa57610cf9613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050610db98173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610d6391906129bb565b60206040518083038186803b158015610d7b57600080fd5b505afa158015610d8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db39190613236565b846114c2565b600160076000600a8781548110610dd357610dd2613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600b8781548110610e4e57610e4d613186565b5b9060005260206000200154815260200190815260200160002060006101000a81548160ff021916908315150217905550600b6001600b80549050610e929190613292565b81548110610ea357610ea2613186565b5b9060005260206000200154600b8581548110610ec257610ec1613186565b5b9060005260206000200181905550600b805480610ee257610ee16132c6565b5b60019003818190600052602060002001600090559055600a6001600a80549050610f0c9190613292565b81548110610f1d57610f1c613186565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a8581548110610f5c57610f5b613186565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a805480610fb657610fb56132c6565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600a80549050600c819055507f9fbd02fee182b5c51fdcdfbedd9b96716a141141d0cf550a8922f4f4350cd4b181838660405161102a939291906132f5565b60405180910390a150505050565b6110496110436116ed565b836117ae565b611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90612ffc565b60405180910390fd5b61109484848484611e78565b50505050565b600d5481565b606060006110ad83611ed4565b6110b5612035565b600960008681526020019081526020016000206040516020016110da93929190613578565b6040516020818303038152906040529050733397c4c5a8db1bc318efb89ad28eaf9eb2fca60463daa68c21826040518263ffffffff1660e01b8152600401611122919061362a565b60006040518083038186803b15801561113a57600080fd5b505af415801561114e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061117791906136bc565b6040516020016111879190613751565b604051602081830303815290604052915050919050565b6111a66120c7565b60001515600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff1615151461124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906137e5565b60405180910390fd5b6112526116ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016112a191906129bb565b60206040518083038186803b1580156112b957600080fd5b505afa1580156112cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f19190613236565b73ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90613877565b60405180910390fd5b60011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906138e3565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b819080600181540180825580915050600190039060005260206000200160009091909190915055600a80549050600c819055507f2ea88857aaf5a09da335056adf5216caea1b3f94664a7f7344eb0468fa6b326282826001600b805490506114a79190613292565b6040516114b6939291906132f5565b60405180910390a15050565b6114ca611aaa565b600d60008154809291906114dd90613903565b91905055506000600d5490506114f38382612111565b8160096000838152602001908152602001600020908051906020019061151a9291906125d4565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115bc611aaa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611623906139be565b60405180910390fd5b61163581611c45565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116ab8161212f565b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190613068565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661176883610972565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117ba83610972565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117fc57506117fb8185611520565b5b8061183a57508373ffffffffffffffffffffffffffffffffffffffff166118228461069f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661186382610972565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613a50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613ae2565b60405180910390fd5b61193483838361219b565b61193f6000826116f5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198f9190613292565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e69190613b02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aa58383836121a0565b505050565b611ab26116ed565b73ffffffffffffffffffffffffffffffffffffffff16611ad0610af0565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613ba4565b60405180910390fd5b565b6000611b3382610972565b9050611b418160008461219b565b611b4c6000836116f5565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9c9190613292565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c41816000846121a0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190613c10565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6b919061272b565b60405180910390a3505050565b611e83848484611843565b611e8f848484846121a5565b611ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec590613ca2565b60405180910390fd5b50505050565b60606000821415611f1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612030565b600082905060005b60008214611f4e578080611f3790613903565b915050600a82611f479190613cf1565b9150611f24565b60008167ffffffffffffffff811115611f6a57611f696129e0565b5b6040519080825280601f01601f191660200182016040528015611f9c5781602001600182028036833780820191505090505b5090505b6000851461202957600182611fb59190613292565b9150600a85611fc49190613d22565b6030611fd09190613b02565b60f81b818381518110611fe657611fe5613186565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120229190613cf1565b9450611fa0565b8093505050505b919050565b6060600e805461204490612e34565b80601f016020809104026020016040519081016040528092919081815260200182805461207090612e34565b80156120bd5780601f10612092576101008083540402835291602001916120bd565b820191906000526020600020905b8154815290600101906020018083116120a057829003601f168201915b5050505050905090565b6120cf6108f8565b1561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690613d9f565b60405180910390fd5b565b61212b82826040518060200160405280600081525061233c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006121c68473ffffffffffffffffffffffffffffffffffffffff16612397565b1561232f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ef6116ed565b8786866040518563ffffffff1660e01b81526004016122119493929190613e09565b602060405180830381600087803b15801561222b57600080fd5b505af192505050801561225c57506040513d601f19601f820116820180604052508101906122599190613e6a565b60015b6122df573d806000811461228c576040519150601f19603f3d011682016040523d82523d6000602084013e612291565b606091505b506000815114156122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90613ca2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612334565b600190505b949350505050565b61234683836123ba565b61235360008484846121a5565b612392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238990613ca2565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561242a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242190613ee3565b60405180910390fd5b6124338161212f565b15612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90613f4f565b60405180910390fd5b61247f6000838361219b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124cf9190613b02565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612590600083836121a0565b5050565b5080546125a090612e34565b6000825580601f106125b257506125d1565b601f0160209004906000526020600020908101906125d0919061265a565b5b50565b8280546125e090612e34565b90600052602060002090601f0160209004810192826126025760008555612649565b82601f1061261b57805160ff1916838001178555612649565b82800160010185558215612649579182015b8281111561264857825182559160200191906001019061262d565b5b509050612656919061265a565b5090565b5b8082111561267357600081600090555060010161265b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126c08161268b565b81146126cb57600080fd5b50565b6000813590506126dd816126b7565b92915050565b6000602082840312156126f9576126f8612681565b5b6000612707848285016126ce565b91505092915050565b60008115159050919050565b61272581612710565b82525050565b6000602082019050612740600083018461271c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612780578082015181840152602081019050612765565b8381111561278f576000848401525b50505050565b6000601f19601f8301169050919050565b60006127b182612746565b6127bb8185612751565b93506127cb818560208601612762565b6127d481612795565b840191505092915050565b600060208201905081810360008301526127f981846127a6565b905092915050565b6000819050919050565b61281481612801565b811461281f57600080fd5b50565b6000813590506128318161280b565b92915050565b60006020828403121561284d5761284c612681565b5b600061285b84828501612822565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061288f82612864565b9050919050565b61289f81612884565b82525050565b60006020820190506128ba6000830184612896565b92915050565b6128c981612884565b81146128d457600080fd5b50565b6000813590506128e6816128c0565b92915050565b6000806040838503121561290357612902612681565b5b6000612911858286016128d7565b925050602061292285828601612822565b9150509250929050565b60006020828403121561294257612941612681565b5b6000612950848285016128d7565b91505092915050565b60008060006060848603121561297257612971612681565b5b6000612980868287016128d7565b9350506020612991868287016128d7565b92505060406129a286828701612822565b9150509250925092565b6129b581612801565b82525050565b60006020820190506129d060008301846129ac565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a1882612795565b810181811067ffffffffffffffff82111715612a3757612a366129e0565b5b80604052505050565b6000612a4a612677565b9050612a568282612a0f565b919050565b600067ffffffffffffffff821115612a7657612a756129e0565b5b612a7f82612795565b9050602081019050919050565b82818337600083830152505050565b6000612aae612aa984612a5b565b612a40565b905082815260208101848484011115612aca57612ac96129db565b5b612ad5848285612a8c565b509392505050565b600082601f830112612af257612af16129d6565b5b8135612b02848260208601612a9b565b91505092915050565b600060208284031215612b2157612b20612681565b5b600082013567ffffffffffffffff811115612b3f57612b3e612686565b5b612b4b84828501612add565b91505092915050565b612b5d81612710565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b60008060408385031215612b9757612b96612681565b5b6000612ba5858286016128d7565b9250506020612bb685828601612b6b565b9150509250929050565b6000604082019050612bd56000830185612896565b612be260208301846129ac565b9392505050565b60008060408385031215612c0057612bff612681565b5b6000612c0e85828601612822565b925050602083013567ffffffffffffffff811115612c2f57612c2e612686565b5b612c3b85828601612add565b9150509250929050565b600067ffffffffffffffff821115612c6057612c5f6129e0565b5b612c6982612795565b9050602081019050919050565b6000612c89612c8484612c45565b612a40565b905082815260208101848484011115612ca557612ca46129db565b5b612cb0848285612a8c565b509392505050565b600082601f830112612ccd57612ccc6129d6565b5b8135612cdd848260208601612c76565b91505092915050565b60008060008060808587031215612d0057612cff612681565b5b6000612d0e878288016128d7565b9450506020612d1f878288016128d7565b9350506040612d3087828801612822565b925050606085013567ffffffffffffffff811115612d5157612d50612686565b5b612d5d87828801612cb8565b91505092959194509250565b60008060408385031215612d8057612d7f612681565b5b6000612d8e858286016128d7565b925050602083013567ffffffffffffffff811115612daf57612dae612686565b5b612dbb85828601612add565b9150509250929050565b60008060408385031215612ddc57612ddb612681565b5b6000612dea858286016128d7565b9250506020612dfb858286016128d7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4c57607f821691505b60208210811415612e6057612e5f612e05565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec2602183612751565b9150612ecd82612e66565b604082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f54603e83612751565b9150612f5f82612ef8565b604082019050919050565b60006020820190508181036000830152612f8381612f47565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612fe6602e83612751565b9150612ff182612f8a565b604082019050919050565b6000602082019050818103600083015261301581612fd9565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613052601883612751565b915061305d8261301c565b602082019050919050565b6000602082019050818103600083015261308181613045565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006130e4602983612751565b91506130ef82613088565b604082019050919050565b60006020820190508181036000830152613113816130d7565b9050919050565b7f4e6f20726571756573747320746f2070726f6365737300000000000000000000600082015250565b6000613150601683612751565b915061315b8261311a565b602082019050919050565b6000602082019050818103600083015261317f81613143565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e76616c696420726571756573742049440000000000000000000000000000600082015250565b60006131eb601283612751565b91506131f6826131b5565b602082019050919050565b6000602082019050818103600083015261321a816131de565b9050919050565b600081519050613230816128c0565b92915050565b60006020828403121561324c5761324b612681565b5b600061325a84828501613221565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061329d82612801565b91506132a883612801565b9250828210156132bb576132ba613263565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060608201905061330a6000830186612896565b61331760208301856129ac565b61332460408301846129ac565b949350505050565b600081905092915050565b7f7b226e616d65223a202250786c626f74204372796f2023000000000000000000600082015250565b600061336d60178361332c565b915061337882613337565b601782019050919050565b600061338e82612746565b613398818561332c565b93506133a8818560208601612762565b80840191505092915050565b7f222c20226465736372697074696f6e223a202254686520726f626f742075707260008201527f6973696e6720697320736d616c6c6572207468616e20796f75207468696e6b2e60208201527f222c200000000000000000000000000000000000000000000000000000000000604082015250565b600061343660438361332c565b9150613441826133b4565b604382019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b6000613482600a8361332c565b915061348d8261344c565b600a82019050919050565b60008190508160005260206000209050919050565b600081546134ba81612e34565b6134c4818661332c565b945060018216600081146134df57600181146134f057613523565b60ff19831686528186019350613523565b6134f985613498565b60005b8381101561351b578154818901526001820191506020810190506134fc565b838801955050505b50505092915050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b600061356260028361332c565b915061356d8261352c565b600282019050919050565b600061358382613360565b915061358f8286613383565b915061359a82613429565b91506135a582613475565b91506135b18285613383565b91506135bd82846134ad565b91506135c882613555565b9150819050949350505050565b600081519050919050565b600082825260208201905092915050565b60006135fc826135d5565b61360681856135e0565b9350613616818560208601612762565b61361f81612795565b840191505092915050565b6000602082019050818103600083015261364481846135f1565b905092915050565b600061365f61365a84612a5b565b612a40565b90508281526020810184848401111561367b5761367a6129db565b5b613686848285612762565b509392505050565b600082601f8301126136a3576136a26129d6565b5b81516136b384826020860161364c565b91505092915050565b6000602082840312156136d2576136d1612681565b5b600082015167ffffffffffffffff8111156136f0576136ef612686565b5b6136fc8482850161368e565b91505092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061373b601d8361332c565b915061374682613705565b601d82019050919050565b600061375c8261372e565b91506137688284613383565b915081905092915050565b7f54686973206372796f2068617320616c7265616479206265656e2067656e657260008201527f617465642e000000000000000000000000000000000000000000000000000000602082015250565b60006137cf602583612751565b91506137da82613773565b604082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f4f6e6c7920746f6b656e206f776e65722063616e2063616c6c2074686973206660008201527f756e6374696f6e2e000000000000000000000000000000000000000000000000602082015250565b6000613861602883612751565b915061386c82613805565b604082019050919050565b6000602082019050818103600083015261389081613854565b9050919050565b7f5468697320636f6e7472616374206973206e6f7420617070726f766564000000600082015250565b60006138cd601d83612751565b91506138d882613897565b602082019050919050565b600060208201905081810360008301526138fc816138c0565b9050919050565b600061390e82612801565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394157613940613263565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139a8602683612751565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613a3a602583612751565b9150613a45826139de565b604082019050919050565b60006020820190508181036000830152613a6981613a2d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613acc602483612751565b9150613ad782613a70565b604082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b6000613b0d82612801565b9150613b1883612801565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b4d57613b4c613263565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b8e602083612751565b9150613b9982613b58565b602082019050919050565b60006020820190508181036000830152613bbd81613b81565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bfa601983612751565b9150613c0582613bc4565b602082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c8c603283612751565b9150613c9782613c30565b604082019050919050565b60006020820190508181036000830152613cbb81613c7f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cfc82612801565b9150613d0783612801565b925082613d1757613d16613cc2565b5b828204905092915050565b6000613d2d82612801565b9150613d3883612801565b925082613d4857613d47613cc2565b5b828206905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613d89601083612751565b9150613d9482613d53565b602082019050919050565b60006020820190508181036000830152613db881613d7c565b9050919050565b600082825260208201905092915050565b6000613ddb826135d5565b613de58185613dbf565b9350613df5818560208601612762565b613dfe81612795565b840191505092915050565b6000608082019050613e1e6000830187612896565b613e2b6020830186612896565b613e3860408301856129ac565b8181036060830152613e4a8184613dd0565b905095945050505050565b600081519050613e64816126b7565b92915050565b600060208284031215613e8057613e7f612681565b5b6000613e8e84828501613e55565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ecd602083612751565b9150613ed882613e97565b602082019050919050565b60006020820190508181036000830152613efc81613ec0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f39601c83612751565b9150613f4482613f03565b602082019050919050565b60006020820190508181036000830152613f6881613f2c565b905091905056fea264697066735822122048643c925502a56e2c06f5c701ee1944e7631d4a2f7cf536748d3ab9ae9f509e64736f6c63430008090033

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.