ETH Price: $3,249.77 (+0.27%)

Token

Proof of Love Goodies (LOVE)
 

Overview

Max Total Supply

0 LOVE

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 LOVE
0x7a9834b293c8f003f923b033955658aa4797d7a8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Condoms

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Condoms.sol
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWNKOkdolo0WMMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNOdolcc:::cll,:XMMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWNX0kxddxkKKl..cdxkkOOOOkl,xWMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMMMMMMMMMWWNNWWWXklc:::::cc:::'.''oOkkkkkkkkd,:XMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMWWWWKkdllcccclc;;ldxkkkOOOOkkl''.:kkkkkkkkkkc,kMMMMMMMMMM
// MMMMMMMMMWWXKOkdolc:::::cldxxxxoclkOkkkkkkkkkkkk:..'okkkkkkkkkd,cXMMMMMMMMM
// MMMMMMW0olcc:::clodl:lxOOkOkkOkkkkkkkkkkkkkkkkkko'..;xkkkkkkkkx:,kMMMMMMMMM
// MMMMMNx..cxxkOOOOOOkkkkkkkkkkkkkkkkkxxxkkkkkkkkkx:..'okkxkkxxxxo'cNMMMMMMMM
// MMMMXo;:':kOOkkkkkkkkkkkkkkkkkkkkkd:..,okkkkkkkkko'..;xxxxxxxxxx:,kMMMMMMMM
// MMMKc;x0c'okkkkkkkkkkxoldkkkkkkkkkd,  .:xkkxxxxxxx;..'oxxxxxxxxxo'lNMMMMMMM
// MWO::OKKx':kkkkkkkkkkc. ,dkkkkkxxxxc.  'oxxxxxxxxxl...:xxxxxxxxxd;,OMMMMMMM
// MK:;OKKK0:'okkkkkkkkko. .lxxxxxxxxxd,  .:xxxxxxxxxd;..'lxxxddddddl'lNMMMMMM
// MXc;OKKKKd':xkkxxxxxxx;  ,dxxxxxxxxxc'. 'oxxxxxxxxxc...;ddddolc:;,.,0MMMMMM
// MMk,o0K00O;'oxxxxxxxxxl. .lxxxxxxxxxoc' .:dddddddddo,. .,,'.........oWMMMMM
// MMXc;k0000o':xxxxxxxxxd;  ,dxxxxxddddd:. 'ldddddddddc.  .',;:cllooo,,0MMMMM
// MMWx,o0000k;'oxxxxxxxxxl. .lxdddddddddo' .;dddddddddo' .'lddddoooooc'oWMMMM
// MMMX:;kOOOOl.:dxdddddddd,  ,ddddddddddd;. 'ldddddddoo:...;oooooooool';0MMMM
// MMMWx,oOOOOx,'odddddddddc. .lddddddddddl. .;oddooooool'..'looooolc:;..xWMMM
// MMMMK:;xOOOkc.:dddddddddo,  ;oddddddoodo;. 'looooooooo;...';,'........:KMMM
// MMMMWd,lkkkkd''lddddddddd:. .cooooooooooc. .;oooooooool'.....'',;:ccl;'dWMM
// MMMMMK;;xkkkx:.:oddooooool'  ;ooooooooll:. .'loooooooolc::cllllllllllc';KMM
// MMMMMWd'lkxkxo''looooooooo:. .::;;,,',''..;,.;ollollllllllllllllllllll;'dWM
// MMMMMM0;;dxxxx:.:ooollc:;,'. .'',,;;:c:'.:xo''cllllllllllllllllllllcc:,.cNM
// MMMMMMWo'lxxxx:..,,,'''''. .,cllllll:;''cxxl..;lllllllllllcc:;;,'''''..;OWM
// MMMMMMM0;;dddc..,;;:clll,..;lllllll;. .cddl',;'';::::;,,'''''',,;::c;'lXMMM
// MMMMMMMWo'lo;.,cllllllc'..:cc:;,,;;:;,';o:':kOxl:;'..',,;:cclllllll,'dNMMMM
// MMMMMMMM0,',.;lllllc:;...,::cloxk0KNX0c.''ckOOOOkd,.:llllllllllllc',kWMMMMM
// MMMMMMMMNl..';,,;;:clox00KXNWMMMMMMMMWk..lkkkkkxl''clllllc:;;,,;;:l0WMMMMMM
// MMMMMMMMMKl:lodk0KNWMMMMMMMMMMMMMMMMMMNl':odxdd:..;;;,,;::cldxO0XNWMMMMMMMM
// MMMMMMMMMMWWMMMMMMMMMMMMMMMMMMMMMMMMMMMNkl:::;;',:lodkOKXWWMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWX0kxk0XWMMMMMMMMMMMMMMMMMMMMMMM69

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "base64-sol/base64.sol";

// import "hardhat/console.sol";

contract Condoms is ERC721, Ownable {

  constructor() ERC721("Proof of Love Goodies", "LOVE") {}
  
  uint256 tokenCounter = 0;

  mapping(uint8 => uint256) mintWindows;
  mapping(uint8 => uint256) episodeSerialCounters;
  mapping(uint256 => uint8) episodeNumbers;
  mapping(uint256 => uint256) serialNumbers;
  mapping(uint256 => uint8) sizes;
  mapping(uint256 => bool) golden;

  string mediaBaseUrl = "https://mr-condoms.s3.amazonaws.com/";

  function setMediaBase(string calldata newUrl)
    onlyOwner
    public
  {
    mediaBaseUrl = newUrl;
  }

  function setMintWindow(uint8 newEpisodeNumber, uint256 startTime)
    onlyOwner
    public
  {
    mintWindows[newEpisodeNumber] = startTime;
  }

  function episodeNumber()
    private
    view
    returns(uint8)
  {
    uint8 i;

    for (i = 0; i < 6; i++) {
      if(mintWindows[i] > 0 && mintWindows[i] < block.timestamp + 10 && (mintWindows[i] + (5 * 60)) > block.timestamp + 10) {
        return i;
      }
    }

    return 0;
  }

  function mint()
    public
    returns (uint256)
  {
    uint8 episode = episodeNumber();

    // Must have enough ETH attached
    require(episode > 0, "You cannot mint at this time.");
    
    tokenCounter += 1;

    episodeSerialCounters[episode] += 1;

    episodeNumbers[tokenCounter] = episode;
    serialNumbers[tokenCounter] = episodeSerialCounters[episode];

    golden[tokenCounter] = (uint(keccak256(abi.encodePacked(block.timestamp, tokenCounter, msg.sender))) % 15) + 1 == 10;

    _safeMint(msg.sender, tokenCounter);

    return tokenCounter;
  }

  function mintMultiple(uint8 mintCount)
    public
  {
    require(mintCount <= 20, "You can mint up to 20 at a time.");
    uint i;
    for(i = 0; i < mintCount; i++) {
      mint();
    }
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId)
      internal
      override
  {
      super._beforeTokenTransfer(from, to, tokenId);
  }

  function rollSize(uint256 tokenId) public {
    require(ownerOf(tokenId) == msg.sender, "It must be a condom in your wallet.");
    require(sizes[tokenId] == 0, "You can only roll for size once.");
    uint randomNumber = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, tokenCounter, tokenId))) % 5;
    randomNumber = randomNumber + 1;
    sizes[tokenId] = uint8(randomNumber);
  }

  function sizeString(uint8 size) private pure returns (string memory) {
    if(size == 1) {
      return "X-Small";
    } else if(size == 2) {
      return "Small";
    } else if(size == 3) {
      return "Average";
    } else if(size == 4) {
      return "Large";
    } else if(size == 5) {
      return "X-Large";
    }

    return "Legendary";
  }

  function colorString(uint8 episodeId, uint256 tokenId) private view returns (string memory) {
    if(uint256(episodeId) == serialNumbers[tokenId]) {
      return "Rainbow";
    } else if(golden[tokenId]) {
      return "Golden";
    } else {
      return "Silver";
    }
  }

  function tokenURI(uint256 tokenId) override(ERC721) public view returns (string memory) {

    string memory sizeTrait = "";
    string memory episodeId = Strings.toString(episodeNumbers[tokenId]);
    if(sizes[tokenId] > 0) {
      sizeTrait = string(abi.encodePacked('{"trait_type": "Size", "value": "', sizeString(sizes[tokenId]),'"},'));
    }

    string memory jsonText = string(abi.encodePacked(
      '{"name": "Episode ', episodeId,' - #', Strings.toString(serialNumbers[tokenId]), '",',
      '"description": "Episode ', episodeId,' of Proof of Love", ',
      '"external_url": "https://madrealities.xyz", ',
      '"image": "', mediaBaseUrl, colorString(episodeNumbers[tokenId], tokenId), '.gif",',
      '"animation_url": "', mediaBaseUrl, colorString(episodeNumbers[tokenId], tokenId), '.mp4", "attributes": [',
      '{"trait_type": "Serial", "value": ', Strings.toString(serialNumbers[tokenId]),'},',
      '{"trait_type": "Type", "value": "', colorString(episodeNumbers[tokenId], tokenId), '"},',
      sizeTrait,
      '{"trait_type": "Episode", "value": ', episodeId,'}]}'
    ));

    string memory json = Base64.encode(bytes(jsonText));

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

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 12 : base64.sol
// SPDX-License-Identifier: MIT

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal 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 6 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 7 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 12 : 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 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintCount","type":"uint8"}],"name":"mintMultiple","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"rollSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUrl","type":"string"}],"name":"setMediaBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newEpisodeNumber","type":"uint8"},{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setMintWindow","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":[{"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"}]

608060405260006007556040518060600160405280602481526020016200463860249139600e90805190602001906200003a929190620001dd565b503480156200004857600080fd5b506040518060400160405280601581526020017f50726f6f66206f66204c6f766520476f6f6469657300000000000000000000008152506040518060400160405280600481526020017f4c4f5645000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000cd929190620001dd565b508060019080519060200190620000e6929190620001dd565b50505062000109620000fd6200010f60201b60201c565b6200011760201b60201c565b620002f2565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001eb906200028d565b90600052602060002090601f0160209004810192826200020f57600085556200025b565b82601f106200022a57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025a5782518255916020019190600101906200023d565b5b5090506200026a91906200026e565b5090565b5b80821115620002895760008160009055506001016200026f565b5090565b60006002820490506001821680620002a657607f821691505b60208210811415620002bd57620002bc620002c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61433680620003026000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb46514610326578063b789f20114610342578063b88d4fde1461035e578063c87b56dd1461037a578063e985e9c5146103aa578063f2fde38b146103da57610137565b80636352211e1461028057806370a08231146102b0578063715018a6146102e05780638da5cb5b146102ea57806395d89b411461030857610137565b80631249c58b116100ff5780631249c58b146101f257806323b872dd1461021057806333a3713b1461022c57806337399f661461024857806342842e0e1461026457610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780630c433853146101d6575b600080fd5b61015660048036038101906101519190612852565b6103f6565b604051610163919061328d565b60405180910390f35b6101746104d8565b60405161018191906132a8565b60405180910390f35b6101a4600480360381019061019f91906128e9565b61056a565b6040516101b19190613226565b60405180910390f35b6101d460048036038101906101cf9190612816565b6105ef565b005b6101f060048036038101906101eb91906128e9565b610707565b005b6101fa610864565b604051610207919061352a565b60405180910390f35b61022a60048036038101906102259190612710565b6109ef565b005b61024660048036038101906102419190612912565b610a4f565b005b610262600480360381019061025d91906128a4565b610ac4565b005b61027e60048036038101906102799190612710565b610b56565b005b61029a600480360381019061029591906128e9565b610b76565b6040516102a79190613226565b60405180910390f35b6102ca60048036038101906102c591906126ab565b610c28565b6040516102d7919061352a565b60405180910390f35b6102e8610ce0565b005b6102f2610d68565b6040516102ff9190613226565b60405180910390f35b610310610d92565b60405161031d91906132a8565b60405180910390f35b610340600480360381019061033b91906127da565b610e24565b005b61035c6004803603810190610357919061293b565b610e3a565b005b6103786004803603810190610373919061275f565b610ed8565b005b610394600480360381019061038f91906128e9565b610f3a565b6040516103a191906132a8565b60405180910390f35b6103c460048036038101906103bf91906126d4565b61111a565b6040516103d1919061328d565b60405180910390f35b6103f460048036038101906103ef91906126ab565b6111ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d157506104d0826112a6565b5b9050919050565b6060600080546104e7906137cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610513906137cb565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600061057582611310565b6105b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ab9061340a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fa82610b76565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106629061348a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068a61137c565b73ffffffffffffffffffffffffffffffffffffffff1614806106b957506106b8816106b361137c565b61111a565b5b6106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef9061338a565b60405180910390fd5b6107028383611384565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661072782610b76565b73ffffffffffffffffffffffffffffffffffffffff161461077d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610774906134aa565b60405180910390fd5b6000600c600083815260200190815260200160002060009054906101000a900460ff1660ff16146107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da906134ca565b60405180910390fd5b60006005423360075485604051602001610800949392919061319b565b6040516020818303038152906040528051906020012060001c61082391906138cf565b905060018161083291906135f3565b905080600c600084815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b60008061086f61143d565b905060008160ff16116108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae9061346a565b60405180910390fd5b6001600760008282546108ca91906135f3565b925050819055506001600960008360ff1660ff16815260200190815260200160002060008282546108fb91906135f3565b9250508190555080600a6000600754815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600960008260ff1660ff16815260200190815260200160002054600b6000600754815260200190815260200160002081905550600a6001600f4260075433604051602001610980939291906131e9565b6040516020818303038152906040528051906020012060001c6109a391906138cf565b6109ad91906135f3565b14600d6000600754815260200190815260200160002060006101000a81548160ff0219169083151502179055506109e633600754611505565b60075491505090565b610a006109fa61137c565b82611523565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a36906134ea565b60405180910390fd5b610a4a838383611601565b505050565b60148160ff161115610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d9061350a565b60405180910390fd5b60005b8160ff16811015610ac057610aac610864565b508080610ab89061382e565b915050610a99565b5050565b610acc61137c565b73ffffffffffffffffffffffffffffffffffffffff16610aea610d68565b73ffffffffffffffffffffffffffffffffffffffff1614610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061342a565b60405180910390fd5b8181600e9190610b519291906124d8565b505050565b610b7183838360405180602001604052806000815250610ed8565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906133ca565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906133aa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce861137c565b73ffffffffffffffffffffffffffffffffffffffff16610d06610d68565b73ffffffffffffffffffffffffffffffffffffffff1614610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d539061342a565b60405180910390fd5b610d66600061185d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610da1906137cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcd906137cb565b8015610e1a5780601f10610def57610100808354040283529160200191610e1a565b820191906000526020600020905b815481529060010190602001808311610dfd57829003601f168201915b5050505050905090565b610e36610e2f61137c565b8383611923565b5050565b610e4261137c565b73ffffffffffffffffffffffffffffffffffffffff16610e60610d68565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead9061342a565b60405180910390fd5b80600860008460ff1660ff168152602001908152602001600020819055505050565b610ee9610ee361137c565b83611523565b610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906134ea565b60405180910390fd5b610f3484848484611a90565b50505050565b606060006040518060200160405280600081525090506000610f7e600a600086815260200190815260200160002060009054906101000a900460ff1660ff16611aec565b90506000600c600086815260200190815260200160002060009054906101000a900460ff1660ff161115610ff757610fd5600c600086815260200190815260200160002060009054906101000a900460ff16611c99565b604051602001610fe5919061316e565b60405160208183030381529060405291505b600081611016600b600088815260200190815260200160002054611aec565b83600e611043600a60008b815260200190815260200160002060009054906101000a900460ff168a611e46565b600e61106f600a60008d815260200190815260200160002060009054906101000a900460ff168c611e46565b61108b600b60008e815260200190815260200160002054611aec565b6110b5600a60008f815260200190815260200160002060009054906101000a900460ff168e611e46565b8b8b6040516020016110d19b9a99989796959493929190613003565b604051602081830303815290604052905060006110ed82611f45565b905080604051602001611100919061314c565b604051602081830303815290604052945050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111b661137c565b73ffffffffffffffffffffffffffffffffffffffff166111d4610d68565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061342a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611291906132ea565b60405180910390fd5b6112a38161185d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113f783610b76565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600090505b60068160ff1610156114fc576000600860008360ff1660ff1681526020019081526020016000205411801561149e5750600a4261148291906135f3565b600860008360ff1660ff16815260200190815260200160002054105b80156114db5750600a426114b291906135f3565b61012c600860008460ff1660ff168152602001908152602001600020546114d991906135f3565b115b156114e95780915050611502565b80806114f490613877565b915050611445565b60009150505b90565b61151f8282604051806020016040528060008152506120f0565b5050565b600061152e82611310565b61156d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115649061336a565b60405180910390fd5b600061157883610b76565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115e757508373ffffffffffffffffffffffffffffffffffffffff166115cf8461056a565b73ffffffffffffffffffffffffffffffffffffffff16145b806115f857506115f7818561111a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661162182610b76565b73ffffffffffffffffffffffffffffffffffffffff1614611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e9061344a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de9061332a565b60405180910390fd5b6116f283838361214b565b6116fd600082611384565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174d91906136d4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a491906135f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119899061334a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a83919061328d565b60405180910390a3505050565b611a9b848484611601565b611aa78484848461215b565b611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906132ca565b60405180910390fd5b50505050565b60606000821415611b34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c94565b600082905060005b60008214611b66578080611b4f9061382e565b915050600a82611b5f9190613649565b9150611b3c565b60008167ffffffffffffffff811115611ba8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bda5781602001600182028036833780820191505090505b5090505b60008514611c8d57600182611bf391906136d4565b9150600a85611c0291906138cf565b6030611c0e91906135f3565b60f81b818381518110611c4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c869190613649565b9450611bde565b8093505050505b919050565b606060018260ff161415611ce4576040518060400160405280600781526020017f582d536d616c6c000000000000000000000000000000000000000000000000008152509050611e41565b60028260ff161415611d2d576040518060400160405280600581526020017f536d616c6c0000000000000000000000000000000000000000000000000000008152509050611e41565b60038260ff161415611d76576040518060400160405280600781526020017f41766572616765000000000000000000000000000000000000000000000000008152509050611e41565b60048260ff161415611dbf576040518060400160405280600581526020017f4c617267650000000000000000000000000000000000000000000000000000008152509050611e41565b60058260ff161415611e08576040518060400160405280600781526020017f582d4c61726765000000000000000000000000000000000000000000000000008152509050611e41565b6040518060400160405280600981526020017f4c6567656e64617279000000000000000000000000000000000000000000000081525090505b919050565b6060600b6000838152602001908152602001600020548360ff161415611ea3576040518060400160405280600781526020017f5261696e626f77000000000000000000000000000000000000000000000000008152509050611f3f565b600d600083815260200190815260200160002060009054906101000a900460ff1615611f06576040518060400160405280600681526020017f476f6c64656e00000000000000000000000000000000000000000000000000008152509050611f3f565b6040518060400160405280600681526020017f53696c766572000000000000000000000000000000000000000000000000000081525090505b92915050565b6060600082511415611f68576040518060200160405280600081525090506120eb565b60006040518060600160405280604081526020016142c16040913990506000600360028551611f9791906135f3565b611fa19190613649565b6004611fad919061367a565b90506000602082611fbe91906135f3565b67ffffffffffffffff811115611ffd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561202f5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156120aa576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050612043565b6003895106600181146120c457600281146120d4576120df565b613d3d60f01b60028303526120df565b603d60f81b60018303525b50505050508093505050505b919050565b6120fa83836122f2565b612107600084848461215b565b612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d906132ca565b60405180910390fd5b505050565b6121568383836124c0565b505050565b600061217c8473ffffffffffffffffffffffffffffffffffffffff166124c5565b156122e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a561137c565b8786866040518563ffffffff1660e01b81526004016121c79493929190613241565b602060405180830381600087803b1580156121e157600080fd5b505af192505050801561221257506040513d601f19601f8201168201806040525081019061220f919061287b565b60015b612295573d8060008114612242576040519150601f19603f3d011682016040523d82523d6000602084013e612247565b606091505b5060008151141561228d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612284906132ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ea565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612359906133ea565b60405180910390fd5b61236b81611310565b156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a29061330a565b60405180910390fd5b6123b76000838361214b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240791906135f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600080823b905060008111915050919050565b8280546124e4906137cb565b90600052602060002090601f016020900481019282612506576000855561254d565b82601f1061251f57803560ff191683800117855561254d565b8280016001018555821561254d579182015b8281111561254c578235825591602001919060010190612531565b5b50905061255a919061255e565b5090565b5b8082111561257757600081600090555060010161255f565b5090565b600061258e6125898461356a565b613545565b9050828152602081018484840111156125a657600080fd5b6125b1848285613789565b509392505050565b6000813590506125c88161424d565b92915050565b6000813590506125dd81614264565b92915050565b6000813590506125f28161427b565b92915050565b6000815190506126078161427b565b92915050565b600082601f83011261261e57600080fd5b813561262e84826020860161257b565b91505092915050565b60008083601f84011261264957600080fd5b8235905067ffffffffffffffff81111561266257600080fd5b60208301915083600182028301111561267a57600080fd5b9250929050565b60008135905061269081614292565b92915050565b6000813590506126a5816142a9565b92915050565b6000602082840312156126bd57600080fd5b60006126cb848285016125b9565b91505092915050565b600080604083850312156126e757600080fd5b60006126f5858286016125b9565b9250506020612706858286016125b9565b9150509250929050565b60008060006060848603121561272557600080fd5b6000612733868287016125b9565b9350506020612744868287016125b9565b925050604061275586828701612681565b9150509250925092565b6000806000806080858703121561277557600080fd5b6000612783878288016125b9565b9450506020612794878288016125b9565b93505060406127a587828801612681565b925050606085013567ffffffffffffffff8111156127c257600080fd5b6127ce8782880161260d565b91505092959194509250565b600080604083850312156127ed57600080fd5b60006127fb858286016125b9565b925050602061280c858286016125ce565b9150509250929050565b6000806040838503121561282957600080fd5b6000612837858286016125b9565b925050602061284885828601612681565b9150509250929050565b60006020828403121561286457600080fd5b6000612872848285016125e3565b91505092915050565b60006020828403121561288d57600080fd5b600061289b848285016125f8565b91505092915050565b600080602083850312156128b757600080fd5b600083013567ffffffffffffffff8111156128d157600080fd5b6128dd85828601612637565b92509250509250929050565b6000602082840312156128fb57600080fd5b600061290984828501612681565b91505092915050565b60006020828403121561292457600080fd5b600061293284828501612696565b91505092915050565b6000806040838503121561294e57600080fd5b600061295c85828601612696565b925050602061296d85828601612681565b9150509250929050565b61298081613708565b82525050565b61299761299282613708565b6138a1565b82525050565b6129a68161371a565b82525050565b60006129b7826135b0565b6129c181856135c6565b93506129d1818560208601613798565b6129da816139bc565b840191505092915050565b60006129f0826135bb565b6129fa81856135d7565b9350612a0a818560208601613798565b612a13816139bc565b840191505092915050565b6000612a29826135bb565b612a3381856135e8565b9350612a43818560208601613798565b80840191505092915050565b60008154612a5c816137cb565b612a6681866135e8565b94506001821660008114612a815760018114612a9257612ac5565b60ff19831686528186019350612ac5565b612a9b8561359b565b60005b83811015612abd57815481890152600182019150602081019050612a9e565b838801955050505b50505092915050565b6000612adb6002836135e8565b9150612ae6826139da565b600282019050919050565b6000612afe6014836135e8565b9150612b0982613a03565b601482019050919050565b6000612b216018836135e8565b9150612b2c82613a2c565b601882019050919050565b6000612b446032836135d7565b9150612b4f82613a55565b604082019050919050565b6000612b676026836135d7565b9150612b7282613aa4565b604082019050919050565b6000612b8a6002836135e8565b9150612b9582613af3565b600282019050919050565b6000612bad601c836135d7565b9150612bb882613b1c565b602082019050919050565b6000612bd06003836135e8565b9150612bdb82613b45565b600382019050919050565b6000612bf36024836135d7565b9150612bfe82613b6e565b604082019050919050565b6000612c166019836135d7565b9150612c2182613bbd565b602082019050919050565b6000612c39602c836135d7565b9150612c4482613be6565b604082019050919050565b6000612c5c6038836135d7565b9150612c6782613c35565b604082019050919050565b6000612c7f602a836135d7565b9150612c8a82613c84565b604082019050919050565b6000612ca26029836135d7565b9150612cad82613cd3565b604082019050919050565b6000612cc56012836135e8565b9150612cd082613d22565b601282019050919050565b6000612ce86004836135e8565b9150612cf382613d4b565b600482019050919050565b6000612d0b6020836135d7565b9150612d1682613d74565b602082019050919050565b6000612d2e6003836135e8565b9150612d3982613d9d565b600382019050919050565b6000612d51602c836135d7565b9150612d5c82613dc6565b604082019050919050565b6000612d746020836135d7565b9150612d7f82613e15565b602082019050919050565b6000612d976016836135e8565b9150612da282613e3e565b601682019050919050565b6000612dba6029836135d7565b9150612dc582613e67565b604082019050919050565b6000612ddd6021836135e8565b9150612de882613eb6565b602182019050919050565b6000612e00601d836135d7565b9150612e0b82613f05565b602082019050919050565b6000612e236021836135d7565b9150612e2e82613f2e565b604082019050919050565b6000612e466023836135e8565b9150612e5182613f7d565b602382019050919050565b6000612e696012836135e8565b9150612e7482613fcc565b601282019050919050565b6000612e8c601d836135e8565b9150612e9782613ff5565b601d82019050919050565b6000612eaf6023836135d7565b9150612eba8261401e565b604082019050919050565b6000612ed26020836135d7565b9150612edd8261406d565b602082019050919050565b6000612ef56031836135d7565b9150612f0082614096565b604082019050919050565b6000612f18602c836135e8565b9150612f23826140e5565b602c82019050919050565b6000612f3b6022836135e8565b9150612f4682614134565b602282019050919050565b6000612f5e6006836135e8565b9150612f6982614183565b600682019050919050565b6000612f81600a836135e8565b9150612f8c826141ac565b600a82019050919050565b6000612fa46020836135d7565b9150612faf826141d5565b602082019050919050565b6000612fc76021836135e8565b9150612fd2826141fe565b602182019050919050565b612fe681613772565b82525050565b612ffd612ff882613772565b6138c5565b82525050565b600061300e82612cb8565b915061301a828e612a1e565b915061302582612cdb565b9150613031828d612a1e565b915061303c82612b7d565b915061304782612b14565b9150613053828c612a1e565b915061305e82612af1565b915061306982612f0b565b915061307482612f74565b9150613080828b612a4f565b915061308c828a612a1e565b915061309782612f51565b91506130a282612e5c565b91506130ae8289612a4f565b91506130ba8288612a1e565b91506130c582612d8a565b91506130d082612f2e565b91506130dc8287612a1e565b91506130e782612ace565b91506130f282612dd0565b91506130fe8286612a1e565b915061310982612bc3565b91506131158285612a1e565b915061312082612e39565b915061312c8284612a1e565b915061313782612d21565b91508190509c9b505050505050505050505050565b600061315782612e7f565b91506131638284612a1e565b915081905092915050565b600061317982612fba565b91506131858284612a1e565b915061319082612bc3565b915081905092915050565b60006131a78287612fec565b6020820191506131b78286612986565b6014820191506131c78285612fec565b6020820191506131d78284612fec565b60208201915081905095945050505050565b60006131f58286612fec565b6020820191506132058285612fec565b6020820191506132158284612986565b601482019150819050949350505050565b600060208201905061323b6000830184612977565b92915050565b60006080820190506132566000830187612977565b6132636020830186612977565b6132706040830185612fdd565b818103606083015261328281846129ac565b905095945050505050565b60006020820190506132a2600083018461299d565b92915050565b600060208201905081810360008301526132c281846129e5565b905092915050565b600060208201905081810360008301526132e381612b37565b9050919050565b6000602082019050818103600083015261330381612b5a565b9050919050565b6000602082019050818103600083015261332381612ba0565b9050919050565b6000602082019050818103600083015261334381612be6565b9050919050565b6000602082019050818103600083015261336381612c09565b9050919050565b6000602082019050818103600083015261338381612c2c565b9050919050565b600060208201905081810360008301526133a381612c4f565b9050919050565b600060208201905081810360008301526133c381612c72565b9050919050565b600060208201905081810360008301526133e381612c95565b9050919050565b6000602082019050818103600083015261340381612cfe565b9050919050565b6000602082019050818103600083015261342381612d44565b9050919050565b6000602082019050818103600083015261344381612d67565b9050919050565b6000602082019050818103600083015261346381612dad565b9050919050565b6000602082019050818103600083015261348381612df3565b9050919050565b600060208201905081810360008301526134a381612e16565b9050919050565b600060208201905081810360008301526134c381612ea2565b9050919050565b600060208201905081810360008301526134e381612ec5565b9050919050565b6000602082019050818103600083015261350381612ee8565b9050919050565b6000602082019050818103600083015261352381612f97565b9050919050565b600060208201905061353f6000830184612fdd565b92915050565b600061354f613560565b905061355b82826137fd565b919050565b6000604051905090565b600067ffffffffffffffff8211156135855761358461398d565b5b61358e826139bc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135fe82613772565b915061360983613772565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561363e5761363d613900565b5b828201905092915050565b600061365482613772565b915061365f83613772565b92508261366f5761366e61392f565b5b828204905092915050565b600061368582613772565b915061369083613772565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136c9576136c8613900565b5b828202905092915050565b60006136df82613772565b91506136ea83613772565b9250828210156136fd576136fc613900565b5b828203905092915050565b600061371382613752565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156137b657808201518184015260208101905061379b565b838111156137c5576000848401525b50505050565b600060028204905060018216806137e357607f821691505b602082108114156137f7576137f661395e565b5b50919050565b613806826139bc565b810181811067ffffffffffffffff821117156138255761382461398d565b5b80604052505050565b600061383982613772565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561386c5761386b613900565b5b600182019050919050565b60006138828261377c565b915060ff82141561389657613895613900565b5b600182019050919050565b60006138ac826138b3565b9050919050565b60006138be826139cd565b9050919050565b6000819050919050565b60006138da82613772565b91506138e583613772565b9250826138f5576138f461392f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f7d2c000000000000000000000000000000000000000000000000000000000000600082015250565b7f206f662050726f6f66206f66204c6f7665222c20000000000000000000000000600082015250565b7f226465736372697074696f6e223a2022457069736f6465200000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f227d2c0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a2022457069736f6465200000000000000000000000000000600082015250565b7f202d202300000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d5d7d0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2e6d7034222c202261747472696275746573223a205b00000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a202254797065222c202276616c7565223a2060008201527f2200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e7420617420746869732074696d652e000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a2022457069736f6465222c202276616c756560008201527f223a200000000000000000000000000000000000000000000000000000000000602082015250565b7f22616e696d6174696f6e5f75726c223a20220000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4974206d757374206265206120636f6e646f6d20696e20796f75722077616c6c60008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c7920726f6c6c20666f722073697a65206f6e63652e600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2265787465726e616c5f75726c223a202268747470733a2f2f6d61647265616c60008201527f69746965732e78797a222c200000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a202253657269616c222c202276616c75652260008201527f3a20000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e676966222c0000000000000000000000000000000000000000000000000000600082015250565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b7f596f752063616e206d696e7420757020746f20323020617420612074696d652e600082015250565b7f7b2274726169745f74797065223a202253697a65222c202276616c7565223a2060008201527f2200000000000000000000000000000000000000000000000000000000000000602082015250565b61425681613708565b811461426157600080fd5b50565b61426d8161371a565b811461427857600080fd5b50565b61428481613726565b811461428f57600080fd5b50565b61429b81613772565b81146142a657600080fd5b50565b6142b28161377c565b81146142bd57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220bbc651bdb96f85751c5b8e6ac0fc5ba92b3c248ffebafaf4de86f87ff4078fd564736f6c6343000802003368747470733a2f2f6d722d636f6e646f6d732e73332e616d617a6f6e6177732e636f6d2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb46514610326578063b789f20114610342578063b88d4fde1461035e578063c87b56dd1461037a578063e985e9c5146103aa578063f2fde38b146103da57610137565b80636352211e1461028057806370a08231146102b0578063715018a6146102e05780638da5cb5b146102ea57806395d89b411461030857610137565b80631249c58b116100ff5780631249c58b146101f257806323b872dd1461021057806333a3713b1461022c57806337399f661461024857806342842e0e1461026457610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780630c433853146101d6575b600080fd5b61015660048036038101906101519190612852565b6103f6565b604051610163919061328d565b60405180910390f35b6101746104d8565b60405161018191906132a8565b60405180910390f35b6101a4600480360381019061019f91906128e9565b61056a565b6040516101b19190613226565b60405180910390f35b6101d460048036038101906101cf9190612816565b6105ef565b005b6101f060048036038101906101eb91906128e9565b610707565b005b6101fa610864565b604051610207919061352a565b60405180910390f35b61022a60048036038101906102259190612710565b6109ef565b005b61024660048036038101906102419190612912565b610a4f565b005b610262600480360381019061025d91906128a4565b610ac4565b005b61027e60048036038101906102799190612710565b610b56565b005b61029a600480360381019061029591906128e9565b610b76565b6040516102a79190613226565b60405180910390f35b6102ca60048036038101906102c591906126ab565b610c28565b6040516102d7919061352a565b60405180910390f35b6102e8610ce0565b005b6102f2610d68565b6040516102ff9190613226565b60405180910390f35b610310610d92565b60405161031d91906132a8565b60405180910390f35b610340600480360381019061033b91906127da565b610e24565b005b61035c6004803603810190610357919061293b565b610e3a565b005b6103786004803603810190610373919061275f565b610ed8565b005b610394600480360381019061038f91906128e9565b610f3a565b6040516103a191906132a8565b60405180910390f35b6103c460048036038101906103bf91906126d4565b61111a565b6040516103d1919061328d565b60405180910390f35b6103f460048036038101906103ef91906126ab565b6111ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d157506104d0826112a6565b5b9050919050565b6060600080546104e7906137cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610513906137cb565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600061057582611310565b6105b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ab9061340a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fa82610b76565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106629061348a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068a61137c565b73ffffffffffffffffffffffffffffffffffffffff1614806106b957506106b8816106b361137c565b61111a565b5b6106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef9061338a565b60405180910390fd5b6107028383611384565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661072782610b76565b73ffffffffffffffffffffffffffffffffffffffff161461077d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610774906134aa565b60405180910390fd5b6000600c600083815260200190815260200160002060009054906101000a900460ff1660ff16146107e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107da906134ca565b60405180910390fd5b60006005423360075485604051602001610800949392919061319b565b6040516020818303038152906040528051906020012060001c61082391906138cf565b905060018161083291906135f3565b905080600c600084815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b60008061086f61143d565b905060008160ff16116108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae9061346a565b60405180910390fd5b6001600760008282546108ca91906135f3565b925050819055506001600960008360ff1660ff16815260200190815260200160002060008282546108fb91906135f3565b9250508190555080600a6000600754815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600960008260ff1660ff16815260200190815260200160002054600b6000600754815260200190815260200160002081905550600a6001600f4260075433604051602001610980939291906131e9565b6040516020818303038152906040528051906020012060001c6109a391906138cf565b6109ad91906135f3565b14600d6000600754815260200190815260200160002060006101000a81548160ff0219169083151502179055506109e633600754611505565b60075491505090565b610a006109fa61137c565b82611523565b610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a36906134ea565b60405180910390fd5b610a4a838383611601565b505050565b60148160ff161115610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d9061350a565b60405180910390fd5b60005b8160ff16811015610ac057610aac610864565b508080610ab89061382e565b915050610a99565b5050565b610acc61137c565b73ffffffffffffffffffffffffffffffffffffffff16610aea610d68565b73ffffffffffffffffffffffffffffffffffffffff1614610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061342a565b60405180910390fd5b8181600e9190610b519291906124d8565b505050565b610b7183838360405180602001604052806000815250610ed8565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906133ca565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906133aa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce861137c565b73ffffffffffffffffffffffffffffffffffffffff16610d06610d68565b73ffffffffffffffffffffffffffffffffffffffff1614610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d539061342a565b60405180910390fd5b610d66600061185d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610da1906137cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcd906137cb565b8015610e1a5780601f10610def57610100808354040283529160200191610e1a565b820191906000526020600020905b815481529060010190602001808311610dfd57829003601f168201915b5050505050905090565b610e36610e2f61137c565b8383611923565b5050565b610e4261137c565b73ffffffffffffffffffffffffffffffffffffffff16610e60610d68565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead9061342a565b60405180910390fd5b80600860008460ff1660ff168152602001908152602001600020819055505050565b610ee9610ee361137c565b83611523565b610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906134ea565b60405180910390fd5b610f3484848484611a90565b50505050565b606060006040518060200160405280600081525090506000610f7e600a600086815260200190815260200160002060009054906101000a900460ff1660ff16611aec565b90506000600c600086815260200190815260200160002060009054906101000a900460ff1660ff161115610ff757610fd5600c600086815260200190815260200160002060009054906101000a900460ff16611c99565b604051602001610fe5919061316e565b60405160208183030381529060405291505b600081611016600b600088815260200190815260200160002054611aec565b83600e611043600a60008b815260200190815260200160002060009054906101000a900460ff168a611e46565b600e61106f600a60008d815260200190815260200160002060009054906101000a900460ff168c611e46565b61108b600b60008e815260200190815260200160002054611aec565b6110b5600a60008f815260200190815260200160002060009054906101000a900460ff168e611e46565b8b8b6040516020016110d19b9a99989796959493929190613003565b604051602081830303815290604052905060006110ed82611f45565b905080604051602001611100919061314c565b604051602081830303815290604052945050505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111b661137c565b73ffffffffffffffffffffffffffffffffffffffff166111d4610d68565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061342a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611291906132ea565b60405180910390fd5b6112a38161185d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113f783610b76565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600090505b60068160ff1610156114fc576000600860008360ff1660ff1681526020019081526020016000205411801561149e5750600a4261148291906135f3565b600860008360ff1660ff16815260200190815260200160002054105b80156114db5750600a426114b291906135f3565b61012c600860008460ff1660ff168152602001908152602001600020546114d991906135f3565b115b156114e95780915050611502565b80806114f490613877565b915050611445565b60009150505b90565b61151f8282604051806020016040528060008152506120f0565b5050565b600061152e82611310565b61156d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115649061336a565b60405180910390fd5b600061157883610b76565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115e757508373ffffffffffffffffffffffffffffffffffffffff166115cf8461056a565b73ffffffffffffffffffffffffffffffffffffffff16145b806115f857506115f7818561111a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661162182610b76565b73ffffffffffffffffffffffffffffffffffffffff1614611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e9061344a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de9061332a565b60405180910390fd5b6116f283838361214b565b6116fd600082611384565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174d91906136d4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a491906135f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119899061334a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a83919061328d565b60405180910390a3505050565b611a9b848484611601565b611aa78484848461215b565b611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add906132ca565b60405180910390fd5b50505050565b60606000821415611b34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c94565b600082905060005b60008214611b66578080611b4f9061382e565b915050600a82611b5f9190613649565b9150611b3c565b60008167ffffffffffffffff811115611ba8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bda5781602001600182028036833780820191505090505b5090505b60008514611c8d57600182611bf391906136d4565b9150600a85611c0291906138cf565b6030611c0e91906135f3565b60f81b818381518110611c4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c869190613649565b9450611bde565b8093505050505b919050565b606060018260ff161415611ce4576040518060400160405280600781526020017f582d536d616c6c000000000000000000000000000000000000000000000000008152509050611e41565b60028260ff161415611d2d576040518060400160405280600581526020017f536d616c6c0000000000000000000000000000000000000000000000000000008152509050611e41565b60038260ff161415611d76576040518060400160405280600781526020017f41766572616765000000000000000000000000000000000000000000000000008152509050611e41565b60048260ff161415611dbf576040518060400160405280600581526020017f4c617267650000000000000000000000000000000000000000000000000000008152509050611e41565b60058260ff161415611e08576040518060400160405280600781526020017f582d4c61726765000000000000000000000000000000000000000000000000008152509050611e41565b6040518060400160405280600981526020017f4c6567656e64617279000000000000000000000000000000000000000000000081525090505b919050565b6060600b6000838152602001908152602001600020548360ff161415611ea3576040518060400160405280600781526020017f5261696e626f77000000000000000000000000000000000000000000000000008152509050611f3f565b600d600083815260200190815260200160002060009054906101000a900460ff1615611f06576040518060400160405280600681526020017f476f6c64656e00000000000000000000000000000000000000000000000000008152509050611f3f565b6040518060400160405280600681526020017f53696c766572000000000000000000000000000000000000000000000000000081525090505b92915050565b6060600082511415611f68576040518060200160405280600081525090506120eb565b60006040518060600160405280604081526020016142c16040913990506000600360028551611f9791906135f3565b611fa19190613649565b6004611fad919061367a565b90506000602082611fbe91906135f3565b67ffffffffffffffff811115611ffd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561202f5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156120aa576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b825260018201915050612043565b6003895106600181146120c457600281146120d4576120df565b613d3d60f01b60028303526120df565b603d60f81b60018303525b50505050508093505050505b919050565b6120fa83836122f2565b612107600084848461215b565b612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d906132ca565b60405180910390fd5b505050565b6121568383836124c0565b505050565b600061217c8473ffffffffffffffffffffffffffffffffffffffff166124c5565b156122e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a561137c565b8786866040518563ffffffff1660e01b81526004016121c79493929190613241565b602060405180830381600087803b1580156121e157600080fd5b505af192505050801561221257506040513d601f19601f8201168201806040525081019061220f919061287b565b60015b612295573d8060008114612242576040519150601f19603f3d011682016040523d82523d6000602084013e612247565b606091505b5060008151141561228d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612284906132ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ea565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612359906133ea565b60405180910390fd5b61236b81611310565b156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a29061330a565b60405180910390fd5b6123b76000838361214b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240791906135f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600080823b905060008111915050919050565b8280546124e4906137cb565b90600052602060002090601f016020900481019282612506576000855561254d565b82601f1061251f57803560ff191683800117855561254d565b8280016001018555821561254d579182015b8281111561254c578235825591602001919060010190612531565b5b50905061255a919061255e565b5090565b5b8082111561257757600081600090555060010161255f565b5090565b600061258e6125898461356a565b613545565b9050828152602081018484840111156125a657600080fd5b6125b1848285613789565b509392505050565b6000813590506125c88161424d565b92915050565b6000813590506125dd81614264565b92915050565b6000813590506125f28161427b565b92915050565b6000815190506126078161427b565b92915050565b600082601f83011261261e57600080fd5b813561262e84826020860161257b565b91505092915050565b60008083601f84011261264957600080fd5b8235905067ffffffffffffffff81111561266257600080fd5b60208301915083600182028301111561267a57600080fd5b9250929050565b60008135905061269081614292565b92915050565b6000813590506126a5816142a9565b92915050565b6000602082840312156126bd57600080fd5b60006126cb848285016125b9565b91505092915050565b600080604083850312156126e757600080fd5b60006126f5858286016125b9565b9250506020612706858286016125b9565b9150509250929050565b60008060006060848603121561272557600080fd5b6000612733868287016125b9565b9350506020612744868287016125b9565b925050604061275586828701612681565b9150509250925092565b6000806000806080858703121561277557600080fd5b6000612783878288016125b9565b9450506020612794878288016125b9565b93505060406127a587828801612681565b925050606085013567ffffffffffffffff8111156127c257600080fd5b6127ce8782880161260d565b91505092959194509250565b600080604083850312156127ed57600080fd5b60006127fb858286016125b9565b925050602061280c858286016125ce565b9150509250929050565b6000806040838503121561282957600080fd5b6000612837858286016125b9565b925050602061284885828601612681565b9150509250929050565b60006020828403121561286457600080fd5b6000612872848285016125e3565b91505092915050565b60006020828403121561288d57600080fd5b600061289b848285016125f8565b91505092915050565b600080602083850312156128b757600080fd5b600083013567ffffffffffffffff8111156128d157600080fd5b6128dd85828601612637565b92509250509250929050565b6000602082840312156128fb57600080fd5b600061290984828501612681565b91505092915050565b60006020828403121561292457600080fd5b600061293284828501612696565b91505092915050565b6000806040838503121561294e57600080fd5b600061295c85828601612696565b925050602061296d85828601612681565b9150509250929050565b61298081613708565b82525050565b61299761299282613708565b6138a1565b82525050565b6129a68161371a565b82525050565b60006129b7826135b0565b6129c181856135c6565b93506129d1818560208601613798565b6129da816139bc565b840191505092915050565b60006129f0826135bb565b6129fa81856135d7565b9350612a0a818560208601613798565b612a13816139bc565b840191505092915050565b6000612a29826135bb565b612a3381856135e8565b9350612a43818560208601613798565b80840191505092915050565b60008154612a5c816137cb565b612a6681866135e8565b94506001821660008114612a815760018114612a9257612ac5565b60ff19831686528186019350612ac5565b612a9b8561359b565b60005b83811015612abd57815481890152600182019150602081019050612a9e565b838801955050505b50505092915050565b6000612adb6002836135e8565b9150612ae6826139da565b600282019050919050565b6000612afe6014836135e8565b9150612b0982613a03565b601482019050919050565b6000612b216018836135e8565b9150612b2c82613a2c565b601882019050919050565b6000612b446032836135d7565b9150612b4f82613a55565b604082019050919050565b6000612b676026836135d7565b9150612b7282613aa4565b604082019050919050565b6000612b8a6002836135e8565b9150612b9582613af3565b600282019050919050565b6000612bad601c836135d7565b9150612bb882613b1c565b602082019050919050565b6000612bd06003836135e8565b9150612bdb82613b45565b600382019050919050565b6000612bf36024836135d7565b9150612bfe82613b6e565b604082019050919050565b6000612c166019836135d7565b9150612c2182613bbd565b602082019050919050565b6000612c39602c836135d7565b9150612c4482613be6565b604082019050919050565b6000612c5c6038836135d7565b9150612c6782613c35565b604082019050919050565b6000612c7f602a836135d7565b9150612c8a82613c84565b604082019050919050565b6000612ca26029836135d7565b9150612cad82613cd3565b604082019050919050565b6000612cc56012836135e8565b9150612cd082613d22565b601282019050919050565b6000612ce86004836135e8565b9150612cf382613d4b565b600482019050919050565b6000612d0b6020836135d7565b9150612d1682613d74565b602082019050919050565b6000612d2e6003836135e8565b9150612d3982613d9d565b600382019050919050565b6000612d51602c836135d7565b9150612d5c82613dc6565b604082019050919050565b6000612d746020836135d7565b9150612d7f82613e15565b602082019050919050565b6000612d976016836135e8565b9150612da282613e3e565b601682019050919050565b6000612dba6029836135d7565b9150612dc582613e67565b604082019050919050565b6000612ddd6021836135e8565b9150612de882613eb6565b602182019050919050565b6000612e00601d836135d7565b9150612e0b82613f05565b602082019050919050565b6000612e236021836135d7565b9150612e2e82613f2e565b604082019050919050565b6000612e466023836135e8565b9150612e5182613f7d565b602382019050919050565b6000612e696012836135e8565b9150612e7482613fcc565b601282019050919050565b6000612e8c601d836135e8565b9150612e9782613ff5565b601d82019050919050565b6000612eaf6023836135d7565b9150612eba8261401e565b604082019050919050565b6000612ed26020836135d7565b9150612edd8261406d565b602082019050919050565b6000612ef56031836135d7565b9150612f0082614096565b604082019050919050565b6000612f18602c836135e8565b9150612f23826140e5565b602c82019050919050565b6000612f3b6022836135e8565b9150612f4682614134565b602282019050919050565b6000612f5e6006836135e8565b9150612f6982614183565b600682019050919050565b6000612f81600a836135e8565b9150612f8c826141ac565b600a82019050919050565b6000612fa46020836135d7565b9150612faf826141d5565b602082019050919050565b6000612fc76021836135e8565b9150612fd2826141fe565b602182019050919050565b612fe681613772565b82525050565b612ffd612ff882613772565b6138c5565b82525050565b600061300e82612cb8565b915061301a828e612a1e565b915061302582612cdb565b9150613031828d612a1e565b915061303c82612b7d565b915061304782612b14565b9150613053828c612a1e565b915061305e82612af1565b915061306982612f0b565b915061307482612f74565b9150613080828b612a4f565b915061308c828a612a1e565b915061309782612f51565b91506130a282612e5c565b91506130ae8289612a4f565b91506130ba8288612a1e565b91506130c582612d8a565b91506130d082612f2e565b91506130dc8287612a1e565b91506130e782612ace565b91506130f282612dd0565b91506130fe8286612a1e565b915061310982612bc3565b91506131158285612a1e565b915061312082612e39565b915061312c8284612a1e565b915061313782612d21565b91508190509c9b505050505050505050505050565b600061315782612e7f565b91506131638284612a1e565b915081905092915050565b600061317982612fba565b91506131858284612a1e565b915061319082612bc3565b915081905092915050565b60006131a78287612fec565b6020820191506131b78286612986565b6014820191506131c78285612fec565b6020820191506131d78284612fec565b60208201915081905095945050505050565b60006131f58286612fec565b6020820191506132058285612fec565b6020820191506132158284612986565b601482019150819050949350505050565b600060208201905061323b6000830184612977565b92915050565b60006080820190506132566000830187612977565b6132636020830186612977565b6132706040830185612fdd565b818103606083015261328281846129ac565b905095945050505050565b60006020820190506132a2600083018461299d565b92915050565b600060208201905081810360008301526132c281846129e5565b905092915050565b600060208201905081810360008301526132e381612b37565b9050919050565b6000602082019050818103600083015261330381612b5a565b9050919050565b6000602082019050818103600083015261332381612ba0565b9050919050565b6000602082019050818103600083015261334381612be6565b9050919050565b6000602082019050818103600083015261336381612c09565b9050919050565b6000602082019050818103600083015261338381612c2c565b9050919050565b600060208201905081810360008301526133a381612c4f565b9050919050565b600060208201905081810360008301526133c381612c72565b9050919050565b600060208201905081810360008301526133e381612c95565b9050919050565b6000602082019050818103600083015261340381612cfe565b9050919050565b6000602082019050818103600083015261342381612d44565b9050919050565b6000602082019050818103600083015261344381612d67565b9050919050565b6000602082019050818103600083015261346381612dad565b9050919050565b6000602082019050818103600083015261348381612df3565b9050919050565b600060208201905081810360008301526134a381612e16565b9050919050565b600060208201905081810360008301526134c381612ea2565b9050919050565b600060208201905081810360008301526134e381612ec5565b9050919050565b6000602082019050818103600083015261350381612ee8565b9050919050565b6000602082019050818103600083015261352381612f97565b9050919050565b600060208201905061353f6000830184612fdd565b92915050565b600061354f613560565b905061355b82826137fd565b919050565b6000604051905090565b600067ffffffffffffffff8211156135855761358461398d565b5b61358e826139bc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135fe82613772565b915061360983613772565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561363e5761363d613900565b5b828201905092915050565b600061365482613772565b915061365f83613772565b92508261366f5761366e61392f565b5b828204905092915050565b600061368582613772565b915061369083613772565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136c9576136c8613900565b5b828202905092915050565b60006136df82613772565b91506136ea83613772565b9250828210156136fd576136fc613900565b5b828203905092915050565b600061371382613752565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156137b657808201518184015260208101905061379b565b838111156137c5576000848401525b50505050565b600060028204905060018216806137e357607f821691505b602082108114156137f7576137f661395e565b5b50919050565b613806826139bc565b810181811067ffffffffffffffff821117156138255761382461398d565b5b80604052505050565b600061383982613772565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561386c5761386b613900565b5b600182019050919050565b60006138828261377c565b915060ff82141561389657613895613900565b5b600182019050919050565b60006138ac826138b3565b9050919050565b60006138be826139cd565b9050919050565b6000819050919050565b60006138da82613772565b91506138e583613772565b9250826138f5576138f461392f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f7d2c000000000000000000000000000000000000000000000000000000000000600082015250565b7f206f662050726f6f66206f66204c6f7665222c20000000000000000000000000600082015250565b7f226465736372697074696f6e223a2022457069736f6465200000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f227d2c0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a2022457069736f6465200000000000000000000000000000600082015250565b7f202d202300000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d5d7d0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2e6d7034222c202261747472696275746573223a205b00000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a202254797065222c202276616c7565223a2060008201527f2200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e7420617420746869732074696d652e000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a2022457069736f6465222c202276616c756560008201527f223a200000000000000000000000000000000000000000000000000000000000602082015250565b7f22616e696d6174696f6e5f75726c223a20220000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4974206d757374206265206120636f6e646f6d20696e20796f75722077616c6c60008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c7920726f6c6c20666f722073697a65206f6e63652e600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2265787465726e616c5f75726c223a202268747470733a2f2f6d61647265616c60008201527f69746965732e78797a222c200000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a202253657269616c222c202276616c75652260008201527f3a20000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e676966222c0000000000000000000000000000000000000000000000000000600082015250565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b7f596f752063616e206d696e7420757020746f20323020617420612074696d652e600082015250565b7f7b2274726169745f74797065223a202253697a65222c202276616c7565223a2060008201527f2200000000000000000000000000000000000000000000000000000000000000602082015250565b61425681613708565b811461426157600080fd5b50565b61426d8161371a565b811461427857600080fd5b50565b61428481613726565b811461428f57600080fd5b50565b61429b81613772565b81146142a657600080fd5b50565b6142b28161377c565b81146142bd57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220bbc651bdb96f85751c5b8e6ac0fc5ba92b3c248ffebafaf4de86f87ff4078fd564736f6c63430008020033

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.