ETH Price: $3,247.66 (-0.38%)
Gas: 3 Gwei

Token

Dracoverse (BDRACO)
 

Overview

Max Total Supply

514 BDRACO

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
erathul.eth
Balance
1 BDRACO
0xe4054EE274faCf8b963008a6f9D7aA55e0D5f2BD
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:
BabyDraco

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : BabyDraco.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./ERC721A.sol";

contract BabyDraco is ERC721A, Ownable {
    using Address for address;
    using Strings for uint256;
    
    string public baseURI;
    address public essence;
    address public dracoverse;

    uint256 public maxDraco = 6666;
    uint256 public price = 450 ether;

    uint256 public constant MAX_MINT = 5;
    uint256 public constant MIN_HOLD = 2;
    string public constant BASE_EXTENSION = ".json";
    address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;

    constructor() ERC721A("Dracoverse", "BDRACO", MAX_MINT) { 
    }

    function mint(uint256 _numberOfMints) public {
        uint256 total = price * _numberOfMints;
        require(tx.origin == msg.sender, "?");
        require(IERC721(dracoverse).balanceOf(msg.sender) >= MIN_HOLD,          "Need to hold min draco");
        require(_numberOfMints > 0 && _numberOfMints <= MAX_MINT,               "Invalid purchase amount");
        require(totalSupply() + _numberOfMints <= maxDraco,                     "Purchase would exceed max supply of tokens");
        require(total <= IERC20(essence).balanceOf(msg.sender),                 "Not enough balance");
        IERC20(essence).transferFrom(msg.sender, BURN_ADDRESS, total);
        _safeMint(msg.sender, _numberOfMints, "");
    }

    function setEssence(address _essence) public onlyOwner {
        essence = _essence;
    }

    function setDracoAddress(address _dracoverse) public onlyOwner {
        dracoverse = _dracoverse;
    }
    
    function setMaxDraco(uint256 _count) public onlyOwner {
        maxDraco = _count;
    }

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

    function setBaseURI(string memory _uri) public onlyOwner {
        baseURI = _uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 _id) public view virtual override returns (string memory) {
         require(
            _exists(_id),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 4 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 5 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":[],"name":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_HOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dracoverse","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"essence","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxDraco","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dracoverse","type":"address"}],"name":"setDracoAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_essence","type":"address"}],"name":"setEssence","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxDraco","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600080556000600755611a0a600c556818650127cc3dc80000600d553480156200002d57600080fd5b506040518060400160405280600a81526020017f447261636f7665727365000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f42445241434f0000000000000000000000000000000000000000000000000000815250600560008111620000e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000d990620002ea565b60405180910390fd5b8260019080519060200190620000fa92919062000213565b5081600290805190602001906200011392919062000213565b5080608081815250505050506200013f620001336200014560201b60201c565b6200014d60201b60201c565b620003d1565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000221906200031d565b90600052602060002090601f01602090048101928262000245576000855562000291565b82601f106200026057805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029057825182559160200191906001019062000273565b5b509050620002a09190620002a4565b5090565b5b80821115620002bf576000816000905550600101620002a5565b5090565b6000620002d26027836200030c565b9150620002df8262000382565b604082019050919050565b600060208201905081810360008301526200030581620002c3565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200033657607f821691505b602082108114156200034d576200034c62000353565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b608051614789620003fb6000396000818161228b015281816122b401526125c101526147896000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063b88d4fde116100ad578063df3fdf001161007c578063df3fdf00146105ee578063e985e9c51461060c578063f0292a031461063c578063f2fde38b1461065a578063fccc28131461067657610211565b8063b88d4fde14610566578063c87b56dd14610582578063d7005325146105b2578063d7224ba0146105d057610211565b806395d89b41116100f457806395d89b41146104d6578063a035b1fe146104f4578063a0712d6814610512578063a22cb4651461052e578063a3828b4b1461054a57610211565b8063715018a6146104765780638da5cb5b146104805780638f0ecae21461049e57806391b7f5ed146104ba57610211565b80632f745c59116101a857806355f804b31161017757806355f804b3146103be5780635c7abcc2146103da5780636352211e146103f85780636c0360eb1461042857806370a082311461044657610211565b80632f745c591461032457806342842e0e146103545780634f6ccce714610370578063508131b5146103a057610211565b8063126457e1116101e4578063126457e1146102b057806318160ddd146102ce57806323b872dd146102ec5780632c0693c51461030857610211565b806301ffc9a71461021657806306fdde0314610246578063081812fc14610264578063095ea7b314610294575b600080fd5b610230600480360381019061022b91906131e4565b610694565b60405161023d91906137d3565b60405180910390f35b61024e6107de565b60405161025b91906137ee565b60405180910390f35b61027e60048036038101906102799190613277565b610870565b60405161028b9190613735565b60405180910390f35b6102ae60048036038101906102a9919061317f565b6108f5565b005b6102b8610a0e565b6040516102c59190613b30565b60405180910390f35b6102d6610a13565b6040516102e39190613b30565b60405180910390f35b61030660048036038101906103019190613079565b610a1c565b005b610322600480360381019061031d9190613014565b610a2c565b005b61033e6004803603810190610339919061317f565b610aec565b60405161034b9190613b30565b60405180910390f35b61036e60048036038101906103699190613079565b610cea565b005b61038a60048036038101906103859190613277565b610d0a565b6040516103979190613b30565b60405180910390f35b6103a8610d5d565b6040516103b59190613b30565b60405180910390f35b6103d860048036038101906103d39190613236565b610d63565b005b6103e2610df9565b6040516103ef9190613735565b60405180910390f35b610412600480360381019061040d9190613277565b610e1f565b60405161041f9190613735565b60405180910390f35b610430610e35565b60405161043d91906137ee565b60405180910390f35b610460600480360381019061045b9190613014565b610ec3565b60405161046d9190613b30565b60405180910390f35b61047e610fac565b005b610488611034565b6040516104959190613735565b60405180910390f35b6104b860048036038101906104b39190613014565b61105e565b005b6104d460048036038101906104cf9190613277565b61111e565b005b6104de6111a4565b6040516104eb91906137ee565b60405180910390f35b6104fc611236565b6040516105099190613b30565b60405180910390f35b61052c60048036038101906105279190613277565b61123c565b005b61054860048036038101906105439190613143565b611610565b005b610564600480360381019061055f9190613277565b611791565b005b610580600480360381019061057b91906130c8565b611817565b005b61059c60048036038101906105979190613277565b611873565b6040516105a991906137ee565b60405180910390f35b6105ba611951565b6040516105c79190613735565b60405180910390f35b6105d8611977565b6040516105e59190613b30565b60405180910390f35b6105f661197d565b60405161060391906137ee565b60405180910390f35b6106266004803603810190610621919061303d565b6119b6565b60405161063391906137d3565b60405180910390f35b610644611a4a565b6040516106519190613b30565b60405180910390f35b610674600480360381019061066f9190613014565b611a4f565b005b61067e611b47565b60405161068b9190613735565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d757506107d682611b4d565b5b9050919050565b6060600180546107ed90613ea0565b80601f016020809104026020016040519081016040528092919081815260200182805461081990613ea0565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b5050505050905090565b600061087b82611bb7565b6108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190613ad0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890613a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610990611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614806109bf57506109be816109b9611bc4565b6119b6565b5b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f5906138f0565b60405180910390fd5b610a09838383611bcc565b505050565b600281565b60008054905090565b610a27838383611c7e565b505050565b610a34611bc4565b73ffffffffffffffffffffffffffffffffffffffff16610a52611034565b73ffffffffffffffffffffffffffffffffffffffff1614610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90613970565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610af783610ec3565b8210610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613810565b60405180910390fd5b6000610b42610a13565b905060008060005b83811015610ca8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c3c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c945786841415610c85578195505050505050610ce4565b8380610c9090613f03565b9450505b508080610ca090613f03565b915050610b4a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613a90565b60405180910390fd5b92915050565b610d0583838360405180602001604052806000815250611817565b505050565b6000610d14610a13565b8210610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613870565b60405180910390fd5b819050919050565b600c5481565b610d6b611bc4565b73ffffffffffffffffffffffffffffffffffffffff16610d89611034565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690613970565b60405180910390fd5b8060099080519060200190610df5929190612dd4565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e2a82612237565b600001519050919050565b60098054610e4290613ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6e90613ea0565b8015610ebb5780601f10610e9057610100808354040283529160200191610ebb565b820191906000526020600020905b815481529060010190602001808311610e9e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90613930565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610fb4611bc4565b73ffffffffffffffffffffffffffffffffffffffff16610fd2611034565b73ffffffffffffffffffffffffffffffffffffffff1614611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613970565b60405180910390fd5b611032600061243a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611066611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611084611034565b73ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613970565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611126611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611144611034565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613970565b60405180910390fd5b80600d8190555050565b6060600280546111b390613ea0565b80601f01602080910402602001604051908101604052809291908181526020018280546111df90613ea0565b801561122c5780601f106112015761010080835404028352916020019161122c565b820191906000526020600020905b81548152906001019060200180831161120f57829003601f168201915b5050505050905090565b600d5481565b600081600d5461124c9190613ce2565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906138b0565b60405180910390fd5b6002600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113199190613735565b60206040518083038186803b15801561133157600080fd5b505afa158015611345573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136991906132a0565b10156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190613990565b60405180910390fd5b6000821180156113bb575060058211155b6113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613b10565b60405180910390fd5b600c5482611406610a13565b6114109190613c5b565b1115611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613910565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114ac9190613735565b60206040518083038186803b1580156114c457600080fd5b505afa1580156114d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fc91906132a0565b81111561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906138d0565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead846040518463ffffffff1660e01b815260040161159f93929190613750565b602060405180830381600087803b1580156115b957600080fd5b505af11580156115cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f191906131bb565b5061160c338360405180602001604052806000815250612500565b5050565b611618611bc4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906139d0565b60405180910390fd5b8060066000611693611bc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611740611bc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178591906137d3565b60405180910390a35050565b611799611bc4565b73ffffffffffffffffffffffffffffffffffffffff166117b7611034565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613970565b60405180910390fd5b80600c8190555050565b611822848484611c7e565b61182e848484846129df565b61186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490613a30565b60405180910390fd5b50505050565b606061187e82611bb7565b6118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139b0565b60405180910390fd5b60006118c7612b76565b905060008151116118e75760405180602001604052806000815250611949565b806118f184612c08565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193993929190613704565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600581565b611a57611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611a75611034565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613830565b60405180910390fd5b611b448161243a565b50565b61dead81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c8982612237565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cb0611bc4565b73ffffffffffffffffffffffffffffffffffffffff161480611d0c5750611cd5611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611cf484610870565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d285750611d278260000151611d22611bc4565b6119b6565b5b905080611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906139f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613950565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613890565b60405180910390fd5b611e598585856001612db5565b611e696000848460000151611bcc565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ed79190613d3c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f7b9190613c15565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120819190613c5b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121c7576120f781611bb7565b156121c6576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461222f8686866001612dbb565b505050505050565b61223f612e5a565b61224882611bb7565b612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90613850565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122eb5760017f0000000000000000000000000000000000000000000000000000000000000000846122de9190613d70565b6122e89190613c5b565b90505b60008390505b8181106123f9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e557809350505050612435565b5080806123f190613e76565b9150506122f1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90613ab0565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90613a70565b60405180910390fd5b61257f81611bb7565b156125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690613a50565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990613af0565b60405180910390fd5b61262f6000858386612db5565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161272c9190613c15565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127539190613c15565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129c257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296260008884886129df565b6129a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299890613a30565b60405180910390fd5b81806129ac90613f03565b92505080806129ba90613f03565b9150506128f1565b50806000819055506129d76000878588612dbb565b505050505050565b6000612a008473ffffffffffffffffffffffffffffffffffffffff16612dc1565b15612b69578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a29611bc4565b8786866040518563ffffffff1660e01b8152600401612a4b9493929190613787565b602060405180830381600087803b158015612a6557600080fd5b505af1925050508015612a9657506040513d601f19601f82011682018060405250810190612a93919061320d565b60015b612b19573d8060008114612ac6576040519150601f19603f3d011682016040523d82523d6000602084013e612acb565b606091505b50600081511415612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0890613a30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b6e565b600190505b949350505050565b606060098054612b8590613ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054612bb190613ea0565b8015612bfe5780601f10612bd357610100808354040283529160200191612bfe565b820191906000526020600020905b815481529060010190602001808311612be157829003601f168201915b5050505050905090565b60606000821415612c50576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612db0565b600082905060005b60008214612c82578080612c6b90613f03565b915050600a82612c7b9190613cb1565b9150612c58565b60008167ffffffffffffffff811115612cc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cf65781602001600182028036833780820191505090505b5090505b60008514612da957600182612d0f9190613d70565b9150600a85612d1e9190613f4c565b6030612d2a9190613c5b565b60f81b818381518110612d66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612da29190613cb1565b9450612cfa565b8093505050505b919050565b50505050565b50505050565b600080823b905060008111915050919050565b828054612de090613ea0565b90600052602060002090601f016020900481019282612e025760008555612e49565b82601f10612e1b57805160ff1916838001178555612e49565b82800160010185558215612e49579182015b82811115612e48578251825591602001919060010190612e2d565b5b509050612e569190612e94565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ead576000816000905550600101612e95565b5090565b6000612ec4612ebf84613b70565b613b4b565b905082815260208101848484011115612edc57600080fd5b612ee7848285613e34565b509392505050565b6000612f02612efd84613ba1565b613b4b565b905082815260208101848484011115612f1a57600080fd5b612f25848285613e34565b509392505050565b600081359050612f3c816146f7565b92915050565b600081359050612f518161470e565b92915050565b600081519050612f668161470e565b92915050565b600081359050612f7b81614725565b92915050565b600081519050612f9081614725565b92915050565b600082601f830112612fa757600080fd5b8135612fb7848260208601612eb1565b91505092915050565b600082601f830112612fd157600080fd5b8135612fe1848260208601612eef565b91505092915050565b600081359050612ff98161473c565b92915050565b60008151905061300e8161473c565b92915050565b60006020828403121561302657600080fd5b600061303484828501612f2d565b91505092915050565b6000806040838503121561305057600080fd5b600061305e85828601612f2d565b925050602061306f85828601612f2d565b9150509250929050565b60008060006060848603121561308e57600080fd5b600061309c86828701612f2d565b93505060206130ad86828701612f2d565b92505060406130be86828701612fea565b9150509250925092565b600080600080608085870312156130de57600080fd5b60006130ec87828801612f2d565b94505060206130fd87828801612f2d565b935050604061310e87828801612fea565b925050606085013567ffffffffffffffff81111561312b57600080fd5b61313787828801612f96565b91505092959194509250565b6000806040838503121561315657600080fd5b600061316485828601612f2d565b925050602061317585828601612f42565b9150509250929050565b6000806040838503121561319257600080fd5b60006131a085828601612f2d565b92505060206131b185828601612fea565b9150509250929050565b6000602082840312156131cd57600080fd5b60006131db84828501612f57565b91505092915050565b6000602082840312156131f657600080fd5b600061320484828501612f6c565b91505092915050565b60006020828403121561321f57600080fd5b600061322d84828501612f81565b91505092915050565b60006020828403121561324857600080fd5b600082013567ffffffffffffffff81111561326257600080fd5b61326e84828501612fc0565b91505092915050565b60006020828403121561328957600080fd5b600061329784828501612fea565b91505092915050565b6000602082840312156132b257600080fd5b60006132c084828501612fff565b91505092915050565b6132d281613da4565b82525050565b6132e181613db6565b82525050565b60006132f282613bd2565b6132fc8185613be8565b935061330c818560208601613e43565b61331581614039565b840191505092915050565b600061332b82613bdd565b6133358185613bf9565b9350613345818560208601613e43565b61334e81614039565b840191505092915050565b600061336482613bdd565b61336e8185613c0a565b935061337e818560208601613e43565b80840191505092915050565b6000613397602283613bf9565b91506133a28261404a565b604082019050919050565b60006133ba602683613bf9565b91506133c582614099565b604082019050919050565b60006133dd602a83613bf9565b91506133e8826140e8565b604082019050919050565b6000613400602383613bf9565b915061340b82614137565b604082019050919050565b6000613423602583613bf9565b915061342e82614186565b604082019050919050565b6000613446600183613bf9565b9150613451826141d5565b602082019050919050565b6000613469601283613bf9565b9150613474826141fe565b602082019050919050565b600061348c603983613bf9565b915061349782614227565b604082019050919050565b60006134af602a83613bf9565b91506134ba82614276565b604082019050919050565b60006134d2602b83613bf9565b91506134dd826142c5565b604082019050919050565b60006134f5602683613bf9565b915061350082614314565b604082019050919050565b6000613518602083613bf9565b915061352382614363565b602082019050919050565b600061353b601683613bf9565b91506135468261438c565b602082019050919050565b600061355e602f83613bf9565b9150613569826143b5565b604082019050919050565b6000613581601a83613bf9565b915061358c82614404565b602082019050919050565b60006135a4603283613bf9565b91506135af8261442d565b604082019050919050565b60006135c7602283613bf9565b91506135d28261447c565b604082019050919050565b60006135ea603383613bf9565b91506135f5826144cb565b604082019050919050565b600061360d601d83613bf9565b91506136188261451a565b602082019050919050565b6000613630602183613bf9565b915061363b82614543565b604082019050919050565b6000613653602e83613bf9565b915061365e82614592565b604082019050919050565b6000613676602f83613bf9565b9150613681826145e1565b604082019050919050565b6000613699602d83613bf9565b91506136a482614630565b604082019050919050565b60006136bc602283613bf9565b91506136c78261467f565b604082019050919050565b60006136df601783613bf9565b91506136ea826146ce565b602082019050919050565b6136fe81613e2a565b82525050565b60006137108286613359565b915061371c8285613359565b91506137288284613359565b9150819050949350505050565b600060208201905061374a60008301846132c9565b92915050565b600060608201905061376560008301866132c9565b61377260208301856132c9565b61377f60408301846136f5565b949350505050565b600060808201905061379c60008301876132c9565b6137a960208301866132c9565b6137b660408301856136f5565b81810360608301526137c881846132e7565b905095945050505050565b60006020820190506137e860008301846132d8565b92915050565b600060208201905081810360008301526138088184613320565b905092915050565b600060208201905081810360008301526138298161338a565b9050919050565b60006020820190508181036000830152613849816133ad565b9050919050565b60006020820190508181036000830152613869816133d0565b9050919050565b60006020820190508181036000830152613889816133f3565b9050919050565b600060208201905081810360008301526138a981613416565b9050919050565b600060208201905081810360008301526138c981613439565b9050919050565b600060208201905081810360008301526138e98161345c565b9050919050565b600060208201905081810360008301526139098161347f565b9050919050565b60006020820190508181036000830152613929816134a2565b9050919050565b60006020820190508181036000830152613949816134c5565b9050919050565b60006020820190508181036000830152613969816134e8565b9050919050565b600060208201905081810360008301526139898161350b565b9050919050565b600060208201905081810360008301526139a98161352e565b9050919050565b600060208201905081810360008301526139c981613551565b9050919050565b600060208201905081810360008301526139e981613574565b9050919050565b60006020820190508181036000830152613a0981613597565b9050919050565b60006020820190508181036000830152613a29816135ba565b9050919050565b60006020820190508181036000830152613a49816135dd565b9050919050565b60006020820190508181036000830152613a6981613600565b9050919050565b60006020820190508181036000830152613a8981613623565b9050919050565b60006020820190508181036000830152613aa981613646565b9050919050565b60006020820190508181036000830152613ac981613669565b9050919050565b60006020820190508181036000830152613ae98161368c565b9050919050565b60006020820190508181036000830152613b09816136af565b9050919050565b60006020820190508181036000830152613b29816136d2565b9050919050565b6000602082019050613b4560008301846136f5565b92915050565b6000613b55613b66565b9050613b618282613ed2565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8b57613b8a61400a565b5b613b9482614039565b9050602081019050919050565b600067ffffffffffffffff821115613bbc57613bbb61400a565b5b613bc582614039565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c2082613dee565b9150613c2b83613dee565b9250826fffffffffffffffffffffffffffffffff03821115613c5057613c4f613f7d565b5b828201905092915050565b6000613c6682613e2a565b9150613c7183613e2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca657613ca5613f7d565b5b828201905092915050565b6000613cbc82613e2a565b9150613cc783613e2a565b925082613cd757613cd6613fac565b5b828204905092915050565b6000613ced82613e2a565b9150613cf883613e2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3157613d30613f7d565b5b828202905092915050565b6000613d4782613dee565b9150613d5283613dee565b925082821015613d6557613d64613f7d565b5b828203905092915050565b6000613d7b82613e2a565b9150613d8683613e2a565b925082821015613d9957613d98613f7d565b5b828203905092915050565b6000613daf82613e0a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e61578082015181840152602081019050613e46565b83811115613e70576000848401525b50505050565b6000613e8182613e2a565b91506000821415613e9557613e94613f7d565b5b600182039050919050565b60006002820490506001821680613eb857607f821691505b60208210811415613ecc57613ecb613fdb565b5b50919050565b613edb82614039565b810181811067ffffffffffffffff82111715613efa57613ef961400a565b5b80604052505050565b6000613f0e82613e2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4157613f40613f7d565b5b600182019050919050565b6000613f5782613e2a565b9150613f6283613e2a565b925082613f7257613f71613fac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f3f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682062616c616e63650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e65656420746f20686f6c64206d696e20647261636f00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b61470081613da4565b811461470b57600080fd5b50565b61471781613db6565b811461472257600080fd5b50565b61472e81613dc2565b811461473957600080fd5b50565b61474581613e2a565b811461475057600080fd5b5056fea26469706673582212207def56587e6f28d126f99273cf5470c607f6821d6d875900e35c3ab5926fd7a364736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063b88d4fde116100ad578063df3fdf001161007c578063df3fdf00146105ee578063e985e9c51461060c578063f0292a031461063c578063f2fde38b1461065a578063fccc28131461067657610211565b8063b88d4fde14610566578063c87b56dd14610582578063d7005325146105b2578063d7224ba0146105d057610211565b806395d89b41116100f457806395d89b41146104d6578063a035b1fe146104f4578063a0712d6814610512578063a22cb4651461052e578063a3828b4b1461054a57610211565b8063715018a6146104765780638da5cb5b146104805780638f0ecae21461049e57806391b7f5ed146104ba57610211565b80632f745c59116101a857806355f804b31161017757806355f804b3146103be5780635c7abcc2146103da5780636352211e146103f85780636c0360eb1461042857806370a082311461044657610211565b80632f745c591461032457806342842e0e146103545780634f6ccce714610370578063508131b5146103a057610211565b8063126457e1116101e4578063126457e1146102b057806318160ddd146102ce57806323b872dd146102ec5780632c0693c51461030857610211565b806301ffc9a71461021657806306fdde0314610246578063081812fc14610264578063095ea7b314610294575b600080fd5b610230600480360381019061022b91906131e4565b610694565b60405161023d91906137d3565b60405180910390f35b61024e6107de565b60405161025b91906137ee565b60405180910390f35b61027e60048036038101906102799190613277565b610870565b60405161028b9190613735565b60405180910390f35b6102ae60048036038101906102a9919061317f565b6108f5565b005b6102b8610a0e565b6040516102c59190613b30565b60405180910390f35b6102d6610a13565b6040516102e39190613b30565b60405180910390f35b61030660048036038101906103019190613079565b610a1c565b005b610322600480360381019061031d9190613014565b610a2c565b005b61033e6004803603810190610339919061317f565b610aec565b60405161034b9190613b30565b60405180910390f35b61036e60048036038101906103699190613079565b610cea565b005b61038a60048036038101906103859190613277565b610d0a565b6040516103979190613b30565b60405180910390f35b6103a8610d5d565b6040516103b59190613b30565b60405180910390f35b6103d860048036038101906103d39190613236565b610d63565b005b6103e2610df9565b6040516103ef9190613735565b60405180910390f35b610412600480360381019061040d9190613277565b610e1f565b60405161041f9190613735565b60405180910390f35b610430610e35565b60405161043d91906137ee565b60405180910390f35b610460600480360381019061045b9190613014565b610ec3565b60405161046d9190613b30565b60405180910390f35b61047e610fac565b005b610488611034565b6040516104959190613735565b60405180910390f35b6104b860048036038101906104b39190613014565b61105e565b005b6104d460048036038101906104cf9190613277565b61111e565b005b6104de6111a4565b6040516104eb91906137ee565b60405180910390f35b6104fc611236565b6040516105099190613b30565b60405180910390f35b61052c60048036038101906105279190613277565b61123c565b005b61054860048036038101906105439190613143565b611610565b005b610564600480360381019061055f9190613277565b611791565b005b610580600480360381019061057b91906130c8565b611817565b005b61059c60048036038101906105979190613277565b611873565b6040516105a991906137ee565b60405180910390f35b6105ba611951565b6040516105c79190613735565b60405180910390f35b6105d8611977565b6040516105e59190613b30565b60405180910390f35b6105f661197d565b60405161060391906137ee565b60405180910390f35b6106266004803603810190610621919061303d565b6119b6565b60405161063391906137d3565b60405180910390f35b610644611a4a565b6040516106519190613b30565b60405180910390f35b610674600480360381019061066f9190613014565b611a4f565b005b61067e611b47565b60405161068b9190613735565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d757506107d682611b4d565b5b9050919050565b6060600180546107ed90613ea0565b80601f016020809104026020016040519081016040528092919081815260200182805461081990613ea0565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b5050505050905090565b600061087b82611bb7565b6108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190613ad0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890613a10565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610990611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614806109bf57506109be816109b9611bc4565b6119b6565b5b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f5906138f0565b60405180910390fd5b610a09838383611bcc565b505050565b600281565b60008054905090565b610a27838383611c7e565b505050565b610a34611bc4565b73ffffffffffffffffffffffffffffffffffffffff16610a52611034565b73ffffffffffffffffffffffffffffffffffffffff1614610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90613970565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610af783610ec3565b8210610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613810565b60405180910390fd5b6000610b42610a13565b905060008060005b83811015610ca8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c3c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c945786841415610c85578195505050505050610ce4565b8380610c9090613f03565b9450505b508080610ca090613f03565b915050610b4a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613a90565b60405180910390fd5b92915050565b610d0583838360405180602001604052806000815250611817565b505050565b6000610d14610a13565b8210610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613870565b60405180910390fd5b819050919050565b600c5481565b610d6b611bc4565b73ffffffffffffffffffffffffffffffffffffffff16610d89611034565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690613970565b60405180910390fd5b8060099080519060200190610df5929190612dd4565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e2a82612237565b600001519050919050565b60098054610e4290613ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6e90613ea0565b8015610ebb5780601f10610e9057610100808354040283529160200191610ebb565b820191906000526020600020905b815481529060010190602001808311610e9e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b90613930565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610fb4611bc4565b73ffffffffffffffffffffffffffffffffffffffff16610fd2611034565b73ffffffffffffffffffffffffffffffffffffffff1614611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613970565b60405180910390fd5b611032600061243a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611066611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611084611034565b73ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190613970565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611126611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611144611034565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613970565b60405180910390fd5b80600d8190555050565b6060600280546111b390613ea0565b80601f01602080910402602001604051908101604052809291908181526020018280546111df90613ea0565b801561122c5780601f106112015761010080835404028352916020019161122c565b820191906000526020600020905b81548152906001019060200180831161120f57829003601f168201915b5050505050905090565b600d5481565b600081600d5461124c9190613ce2565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906138b0565b60405180910390fd5b6002600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113199190613735565b60206040518083038186803b15801561133157600080fd5b505afa158015611345573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136991906132a0565b10156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190613990565b60405180910390fd5b6000821180156113bb575060058211155b6113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190613b10565b60405180910390fd5b600c5482611406610a13565b6114109190613c5b565b1115611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890613910565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114ac9190613735565b60206040518083038186803b1580156114c457600080fd5b505afa1580156114d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fc91906132a0565b81111561153e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611535906138d0565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead846040518463ffffffff1660e01b815260040161159f93929190613750565b602060405180830381600087803b1580156115b957600080fd5b505af11580156115cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f191906131bb565b5061160c338360405180602001604052806000815250612500565b5050565b611618611bc4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906139d0565b60405180910390fd5b8060066000611693611bc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611740611bc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178591906137d3565b60405180910390a35050565b611799611bc4565b73ffffffffffffffffffffffffffffffffffffffff166117b7611034565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613970565b60405180910390fd5b80600c8190555050565b611822848484611c7e565b61182e848484846129df565b61186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490613a30565b60405180910390fd5b50505050565b606061187e82611bb7565b6118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139b0565b60405180910390fd5b60006118c7612b76565b905060008151116118e75760405180602001604052806000815250611949565b806118f184612c08565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193993929190613704565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600581565b611a57611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611a75611034565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613970565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290613830565b60405180910390fd5b611b448161243a565b50565b61dead81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c8982612237565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cb0611bc4565b73ffffffffffffffffffffffffffffffffffffffff161480611d0c5750611cd5611bc4565b73ffffffffffffffffffffffffffffffffffffffff16611cf484610870565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d285750611d278260000151611d22611bc4565b6119b6565b5b905080611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906139f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613950565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613890565b60405180910390fd5b611e598585856001612db5565b611e696000848460000151611bcc565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ed79190613d3c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f7b9190613c15565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120819190613c5b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121c7576120f781611bb7565b156121c6576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461222f8686866001612dbb565b505050505050565b61223f612e5a565b61224882611bb7565b612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90613850565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000583106122eb5760017f0000000000000000000000000000000000000000000000000000000000000005846122de9190613d70565b6122e89190613c5b565b90505b60008390505b8181106123f9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123e557809350505050612435565b5080806123f190613e76565b9150506122f1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90613ab0565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90613a70565b60405180910390fd5b61257f81611bb7565b156125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690613a50565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000005831115612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990613af0565b60405180910390fd5b61262f6000858386612db5565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161272c9190613c15565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127539190613c15565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129c257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461296260008884886129df565b6129a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299890613a30565b60405180910390fd5b81806129ac90613f03565b92505080806129ba90613f03565b9150506128f1565b50806000819055506129d76000878588612dbb565b505050505050565b6000612a008473ffffffffffffffffffffffffffffffffffffffff16612dc1565b15612b69578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a29611bc4565b8786866040518563ffffffff1660e01b8152600401612a4b9493929190613787565b602060405180830381600087803b158015612a6557600080fd5b505af1925050508015612a9657506040513d601f19601f82011682018060405250810190612a93919061320d565b60015b612b19573d8060008114612ac6576040519150601f19603f3d011682016040523d82523d6000602084013e612acb565b606091505b50600081511415612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0890613a30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b6e565b600190505b949350505050565b606060098054612b8590613ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054612bb190613ea0565b8015612bfe5780601f10612bd357610100808354040283529160200191612bfe565b820191906000526020600020905b815481529060010190602001808311612be157829003601f168201915b5050505050905090565b60606000821415612c50576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612db0565b600082905060005b60008214612c82578080612c6b90613f03565b915050600a82612c7b9190613cb1565b9150612c58565b60008167ffffffffffffffff811115612cc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cf65781602001600182028036833780820191505090505b5090505b60008514612da957600182612d0f9190613d70565b9150600a85612d1e9190613f4c565b6030612d2a9190613c5b565b60f81b818381518110612d66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612da29190613cb1565b9450612cfa565b8093505050505b919050565b50505050565b50505050565b600080823b905060008111915050919050565b828054612de090613ea0565b90600052602060002090601f016020900481019282612e025760008555612e49565b82601f10612e1b57805160ff1916838001178555612e49565b82800160010185558215612e49579182015b82811115612e48578251825591602001919060010190612e2d565b5b509050612e569190612e94565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ead576000816000905550600101612e95565b5090565b6000612ec4612ebf84613b70565b613b4b565b905082815260208101848484011115612edc57600080fd5b612ee7848285613e34565b509392505050565b6000612f02612efd84613ba1565b613b4b565b905082815260208101848484011115612f1a57600080fd5b612f25848285613e34565b509392505050565b600081359050612f3c816146f7565b92915050565b600081359050612f518161470e565b92915050565b600081519050612f668161470e565b92915050565b600081359050612f7b81614725565b92915050565b600081519050612f9081614725565b92915050565b600082601f830112612fa757600080fd5b8135612fb7848260208601612eb1565b91505092915050565b600082601f830112612fd157600080fd5b8135612fe1848260208601612eef565b91505092915050565b600081359050612ff98161473c565b92915050565b60008151905061300e8161473c565b92915050565b60006020828403121561302657600080fd5b600061303484828501612f2d565b91505092915050565b6000806040838503121561305057600080fd5b600061305e85828601612f2d565b925050602061306f85828601612f2d565b9150509250929050565b60008060006060848603121561308e57600080fd5b600061309c86828701612f2d565b93505060206130ad86828701612f2d565b92505060406130be86828701612fea565b9150509250925092565b600080600080608085870312156130de57600080fd5b60006130ec87828801612f2d565b94505060206130fd87828801612f2d565b935050604061310e87828801612fea565b925050606085013567ffffffffffffffff81111561312b57600080fd5b61313787828801612f96565b91505092959194509250565b6000806040838503121561315657600080fd5b600061316485828601612f2d565b925050602061317585828601612f42565b9150509250929050565b6000806040838503121561319257600080fd5b60006131a085828601612f2d565b92505060206131b185828601612fea565b9150509250929050565b6000602082840312156131cd57600080fd5b60006131db84828501612f57565b91505092915050565b6000602082840312156131f657600080fd5b600061320484828501612f6c565b91505092915050565b60006020828403121561321f57600080fd5b600061322d84828501612f81565b91505092915050565b60006020828403121561324857600080fd5b600082013567ffffffffffffffff81111561326257600080fd5b61326e84828501612fc0565b91505092915050565b60006020828403121561328957600080fd5b600061329784828501612fea565b91505092915050565b6000602082840312156132b257600080fd5b60006132c084828501612fff565b91505092915050565b6132d281613da4565b82525050565b6132e181613db6565b82525050565b60006132f282613bd2565b6132fc8185613be8565b935061330c818560208601613e43565b61331581614039565b840191505092915050565b600061332b82613bdd565b6133358185613bf9565b9350613345818560208601613e43565b61334e81614039565b840191505092915050565b600061336482613bdd565b61336e8185613c0a565b935061337e818560208601613e43565b80840191505092915050565b6000613397602283613bf9565b91506133a28261404a565b604082019050919050565b60006133ba602683613bf9565b91506133c582614099565b604082019050919050565b60006133dd602a83613bf9565b91506133e8826140e8565b604082019050919050565b6000613400602383613bf9565b915061340b82614137565b604082019050919050565b6000613423602583613bf9565b915061342e82614186565b604082019050919050565b6000613446600183613bf9565b9150613451826141d5565b602082019050919050565b6000613469601283613bf9565b9150613474826141fe565b602082019050919050565b600061348c603983613bf9565b915061349782614227565b604082019050919050565b60006134af602a83613bf9565b91506134ba82614276565b604082019050919050565b60006134d2602b83613bf9565b91506134dd826142c5565b604082019050919050565b60006134f5602683613bf9565b915061350082614314565b604082019050919050565b6000613518602083613bf9565b915061352382614363565b602082019050919050565b600061353b601683613bf9565b91506135468261438c565b602082019050919050565b600061355e602f83613bf9565b9150613569826143b5565b604082019050919050565b6000613581601a83613bf9565b915061358c82614404565b602082019050919050565b60006135a4603283613bf9565b91506135af8261442d565b604082019050919050565b60006135c7602283613bf9565b91506135d28261447c565b604082019050919050565b60006135ea603383613bf9565b91506135f5826144cb565b604082019050919050565b600061360d601d83613bf9565b91506136188261451a565b602082019050919050565b6000613630602183613bf9565b915061363b82614543565b604082019050919050565b6000613653602e83613bf9565b915061365e82614592565b604082019050919050565b6000613676602f83613bf9565b9150613681826145e1565b604082019050919050565b6000613699602d83613bf9565b91506136a482614630565b604082019050919050565b60006136bc602283613bf9565b91506136c78261467f565b604082019050919050565b60006136df601783613bf9565b91506136ea826146ce565b602082019050919050565b6136fe81613e2a565b82525050565b60006137108286613359565b915061371c8285613359565b91506137288284613359565b9150819050949350505050565b600060208201905061374a60008301846132c9565b92915050565b600060608201905061376560008301866132c9565b61377260208301856132c9565b61377f60408301846136f5565b949350505050565b600060808201905061379c60008301876132c9565b6137a960208301866132c9565b6137b660408301856136f5565b81810360608301526137c881846132e7565b905095945050505050565b60006020820190506137e860008301846132d8565b92915050565b600060208201905081810360008301526138088184613320565b905092915050565b600060208201905081810360008301526138298161338a565b9050919050565b60006020820190508181036000830152613849816133ad565b9050919050565b60006020820190508181036000830152613869816133d0565b9050919050565b60006020820190508181036000830152613889816133f3565b9050919050565b600060208201905081810360008301526138a981613416565b9050919050565b600060208201905081810360008301526138c981613439565b9050919050565b600060208201905081810360008301526138e98161345c565b9050919050565b600060208201905081810360008301526139098161347f565b9050919050565b60006020820190508181036000830152613929816134a2565b9050919050565b60006020820190508181036000830152613949816134c5565b9050919050565b60006020820190508181036000830152613969816134e8565b9050919050565b600060208201905081810360008301526139898161350b565b9050919050565b600060208201905081810360008301526139a98161352e565b9050919050565b600060208201905081810360008301526139c981613551565b9050919050565b600060208201905081810360008301526139e981613574565b9050919050565b60006020820190508181036000830152613a0981613597565b9050919050565b60006020820190508181036000830152613a29816135ba565b9050919050565b60006020820190508181036000830152613a49816135dd565b9050919050565b60006020820190508181036000830152613a6981613600565b9050919050565b60006020820190508181036000830152613a8981613623565b9050919050565b60006020820190508181036000830152613aa981613646565b9050919050565b60006020820190508181036000830152613ac981613669565b9050919050565b60006020820190508181036000830152613ae98161368c565b9050919050565b60006020820190508181036000830152613b09816136af565b9050919050565b60006020820190508181036000830152613b29816136d2565b9050919050565b6000602082019050613b4560008301846136f5565b92915050565b6000613b55613b66565b9050613b618282613ed2565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8b57613b8a61400a565b5b613b9482614039565b9050602081019050919050565b600067ffffffffffffffff821115613bbc57613bbb61400a565b5b613bc582614039565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c2082613dee565b9150613c2b83613dee565b9250826fffffffffffffffffffffffffffffffff03821115613c5057613c4f613f7d565b5b828201905092915050565b6000613c6682613e2a565b9150613c7183613e2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca657613ca5613f7d565b5b828201905092915050565b6000613cbc82613e2a565b9150613cc783613e2a565b925082613cd757613cd6613fac565b5b828204905092915050565b6000613ced82613e2a565b9150613cf883613e2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3157613d30613f7d565b5b828202905092915050565b6000613d4782613dee565b9150613d5283613dee565b925082821015613d6557613d64613f7d565b5b828203905092915050565b6000613d7b82613e2a565b9150613d8683613e2a565b925082821015613d9957613d98613f7d565b5b828203905092915050565b6000613daf82613e0a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e61578082015181840152602081019050613e46565b83811115613e70576000848401525b50505050565b6000613e8182613e2a565b91506000821415613e9557613e94613f7d565b5b600182039050919050565b60006002820490506001821680613eb857607f821691505b60208210811415613ecc57613ecb613fdb565b5b50919050565b613edb82614039565b810181811067ffffffffffffffff82111715613efa57613ef961400a565b5b80604052505050565b6000613f0e82613e2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4157613f40613f7d565b5b600182019050919050565b6000613f5782613e2a565b9150613f6283613e2a565b925082613f7257613f71613fac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f3f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682062616c616e63650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e65656420746f20686f6c64206d696e20647261636f00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b61470081613da4565b811461470b57600080fd5b50565b61471781613db6565b811461472257600080fd5b50565b61472e81613dc2565b811461473957600080fd5b50565b61474581613e2a565b811461475057600080fd5b5056fea26469706673582212207def56587e6f28d126f99273cf5470c607f6821d6d875900e35c3ab5926fd7a364736f6c63430008040033

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.