ETH Price: $2,884.50 (-5.47%)
Gas: 1 Gwei

Token

Doodlemice (DICE)
 

Overview

Max Total Supply

888 DICE

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
speedbal.eth
Balance
1 DICE
0x12a23e4ade2880efdfb0b7e3722baad76b46fa75
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We are an NFT project inspired by the Anonymice & Doodles project! We call ourselves Doodlemice, or Dice for short!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Dice

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : Dice.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Enum.sol";

contract Dice is ERC721Enum, Ownable, Pausable,  ReentrancyGuard {

    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.044 ether;
    uint256 public maxSupply = 8888;
    uint256 public maxMint = 10;
    bool public status = false;

    constructor() ERC721S("Doodlemice", "DICE") {
        setBaseURI("");
    }

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

    function mint(uint256 _mintAmount) public payable nonReentrant{
        uint256 s = totalSupply();
        require(status, "Contract Not Enabled" );
        require(_mintAmount > 0, "Cant mint 0" );
        require(_mintAmount <= maxMint, "Cant mint more then maxmint" );
        require(s + _mintAmount <= maxSupply, "Cant go over supply" );
        require(msg.value >= cost * _mintAmount);
        for (uint256 i = 0; i < _mintAmount; ++i) {
            _safeMint(msg.sender, s + i, "");
        }
        delete s;
    }

    function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{
        require(quantity.length == recipient.length, "Provide quantities and recipients" );
        uint totalQuantity = 0;
        uint256 s = totalSupply();
        for(uint i = 0; i < quantity.length; ++i){
            totalQuantity += quantity[i];
        }
        require( s + totalQuantity <= maxSupply, "Too many" );
        delete totalQuantity;
        for(uint i = 0; i < recipient.length; ++i){
            for(uint j = 0; j < quantity[i]; ++j){
            _safeMint( recipient[i], s++, "" );
            }
        }
        delete s;   
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }
    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMint = _newMaxMintAmount;
    }
    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        maxSupply = _newMaxSupply;
    }
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function setSaleStatus(bool _status) public onlyOwner {
        status = _status;
    }
    function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
    }
}

File 2 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 5 of 18 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 6 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 18 : ERC721Enum.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "./ERC721S.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
abstract contract ERC721Enum is ERC721S, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721S) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721S.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 8 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 18 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 10 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 18 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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 12 of 18 : ERC721S.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
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/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

abstract contract ERC721S is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721S.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }     
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721S.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
	function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721S.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721S.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721S.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 13 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

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 14 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 15 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 16 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 17 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 18 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052669c51c4521e00006008556122b8600955600a80556000600b60006101000a81548160ff0219169083151502179055503480156200004157600080fd5b506040518060400160405280600a81526020017f446f6f646c656d696365000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44494345000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c6929190620002ee565b508060019080519060200190620000df929190620002ee565b50505062000102620000f66200014b60201b60201c565b6200015360201b60201c565b6000600560146101000a81548160ff021916908315150217905550600160068190555062000145604051806020016040528060008152506200021960201b60201c565b62000486565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002296200014b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024f620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029f90620003ff565b60405180910390fd5b8060079080519060200190620002c0929190620002ee565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fc9062000450565b90600052602060002090601f0160209004810192826200032057600085556200036c565b82601f106200033b57805160ff19168380011785556200036c565b828001600101855582156200036c579182015b828111156200036b5782518255916020019190600101906200034e565b5b5090506200037b91906200037f565b5090565b5b808211156200039a57600081600090555060010162000380565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620003e76020836200039e565b9150620003f482620003af565b602082019050919050565b600060208201905081810360008301526200041a81620003d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046957607f821691505b6020821081141562000480576200047f62000421565b5b50919050565b61439880620004966000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d57806396ea3a47116100a0578063c87b56dd1161006f578063c87b56dd14610703578063d5abeb0114610740578063d897833e1461076b578063e985e9c514610794578063f2fde38b146107d1576101f9565b806396ea3a471461066c578063a0712d6814610695578063a22cb465146106b1578063b88d4fde146106da576101f9565b80637501f741116100dc5780637501f741146105ae5780638462151c146105d95780638da5cb5b1461061657806395d89b4114610641576101f9565b80636352211e146104f25780636c0360eb1461052f57806370a082311461055a578063715018a614610597576101f9565b8063228025e81161019057806342842e0e1161015f57806342842e0e1461040f57806344a0d68a146104385780634f6ccce71461046157806355f804b31461049e5780635c975abb146104c7576101f9565b8063228025e81461037657806323b872dd1461039f5780632f745c59146103c85780633ccfd60b14610405576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806313faede6146102f557806318160ddd14610320578063200d2ed21461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063088a4ed0146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a5d565b6107fa565b6040516102329190612aa5565b60405180910390f35b34801561024757600080fd5b50610250610874565b60405161025d9190612b59565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612bb1565b610906565b60405161029a9190612c1f565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612bb1565b61098b565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612c66565b610a11565b005b34801561030157600080fd5b5061030a610b29565b6040516103179190612cb5565b60405180910390f35b34801561032c57600080fd5b50610335610b2f565b6040516103429190612cb5565b60405180910390f35b34801561035757600080fd5b50610360610b3c565b60405161036d9190612aa5565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612bb1565b610b4f565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612cd0565b610bd5565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612c66565b610c35565b6040516103fc9190612cb5565b60405180910390f35b61040d610d7e565b005b34801561041b57600080fd5b5061043660048036038101906104319190612cd0565b610e73565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612bb1565b610e93565b005b34801561046d57600080fd5b5061048860048036038101906104839190612bb1565b610f19565b6040516104959190612cb5565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612e58565b610f6c565b005b3480156104d357600080fd5b506104dc611002565b6040516104e99190612aa5565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612bb1565b611019565b6040516105269190612c1f565b60405180910390f35b34801561053b57600080fd5b506105446110d6565b6040516105519190612b59565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612ea1565b611164565b60405161058e9190612cb5565b60405180910390f35b3480156105a357600080fd5b506105ac61128a565b005b3480156105ba57600080fd5b506105c3611312565b6040516105d09190612cb5565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190612ea1565b611318565b60405161060d9190612f8c565b60405180910390f35b34801561062257600080fd5b5061062b611411565b6040516106389190612c1f565b60405180910390f35b34801561064d57600080fd5b5061065661143b565b6040516106639190612b59565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613064565b6114cd565b005b6106af60048036038101906106aa9190612bb1565b6116e8565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613111565b6118d5565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906131f2565b611a56565b005b34801561070f57600080fd5b5061072a60048036038101906107259190612bb1565b611ab8565b6040516107379190612b59565b60405180910390f35b34801561074c57600080fd5b50610755611b5f565b6040516107629190612cb5565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613275565b611b65565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906132a2565b611bfe565b6040516107c89190612aa5565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612ea1565b611c92565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086d575061086c82611d8a565b5b9050919050565b60606000805461088390613311565b80601f01602080910402602001604051908101604052809291908181526020018280546108af90613311565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091182611e6c565b610950576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610947906133b5565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610993611ef4565b73ffffffffffffffffffffffffffffffffffffffff166109b1611411565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90613421565b60405180910390fd5b80600a8190555050565b6000610a1c82611019565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906134b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aac611ef4565b73ffffffffffffffffffffffffffffffffffffffff161480610adb5750610ada81610ad5611ef4565b611bfe565b5b610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613545565b60405180910390fd5b610b248383611efc565b505050565b60085481565b6000600280549050905090565b600b60009054906101000a900460ff1681565b610b57611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610b75611411565b73ffffffffffffffffffffffffffffffffffffffff1614610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613421565b60405180910390fd5b8060098190555050565b610be6610be0611ef4565b82611fb5565b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c906135d7565b60405180910390fd5b610c30838383612093565b505050565b6000610c4083611164565b8210610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890613643565b60405180910390fd5b6000805b600280549050811015610d345760028181548110610ca657610ca5613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d235783821415610d16578092505050610d78565b81610d20906136c1565b91505b80610d2d906136c1565b9050610c85565b506000610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613643565b60405180910390fd5b505b92915050565b610d86611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610da4611411565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613421565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e209061373b565b60006040518083038185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b5050905080610e7057600080fd5b50565b610e8e83838360405180602001604052806000815250611a56565b505050565b610e9b611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611411565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613421565b60405180910390fd5b8060088190555050565b6000610f23610b2f565b8210610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061379c565b60405180910390fd5b819050919050565b610f74611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610f92611411565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613421565b60405180910390fd5b8060079080519060200190610ffe92919061294e565b5050565b6000600560149054906101000a900460ff16905090565b600080600283815481106110305761102f613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c49061382e565b60405180910390fd5b80915050919050565b600780546110e390613311565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90613311565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906138c0565b60405180910390fd5b600080600280549050905060005b8181101561127b57600281815481106111ff576111fe613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561126a5782611267906136c1565b92505b80611274906136c1565b90506111e3565b50600090508192505050919050565b611292611ef4565b73ffffffffffffffffffffffffffffffffffffffff166112b0611411565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613421565b60405180910390fd5b611310600061224c565b565b600a5481565b606061132382611164565b600010611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613643565b60405180910390fd5b600061137083611164565b905060008167ffffffffffffffff81111561138e5761138d612d2d565b5b6040519080825280602002602001820160405280156113bc5781602001602082028036833780820191505090505b50905060005b82811015611406576113d48582610c35565b8282815181106113e7576113e6613663565b5b60200260200101818152505080806113fe906136c1565b9150506113c2565b508092505050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144a90613311565b80601f016020809104026020016040519081016040528092919081815260200182805461147690613311565b80156114c35780601f10611498576101008083540402835291602001916114c3565b820191906000526020600020905b8154815290600101906020018083116114a657829003601f168201915b5050505050905090565b6114d5611ef4565b73ffffffffffffffffffffffffffffffffffffffff166114f3611411565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613421565b60405180910390fd5b818190508484905014611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890613952565b60405180910390fd5b60008061159c610b2f565b905060005b868690508110156115e4578686828181106115bf576115be613663565b5b90506020020135836115d19190613972565b9250806115dd906136c1565b90506115a1565b5060095482826115f49190613972565b1115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613a14565b60405180910390fd5b6000915060005b848490508110156116db5760005b87878381811061165d5761165c613663565b5b905060200201358110156116c9576116b886868481811061168157611680613663565b5b90506020020160208101906116969190612ea1565b84806116a1906136c1565b955060405180602001604052806000815250612312565b806116c2906136c1565b905061164a565b50806116d4906136c1565b905061163c565b5060009050505050505050565b6002600654141561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590613a80565b60405180910390fd5b60026006819055506000611740610b2f565b9050600b60009054906101000a900460ff16611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613aec565b60405180910390fd5b600082116117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613b58565b60405180910390fd5b600a54821115611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613bc4565b60405180910390fd5b60095482826118289190613972565b1115611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090613c30565b60405180910390fd5b816008546118779190613c50565b34101561188357600080fd5b60005b828110156118c4576118b333828461189e9190613972565b60405180602001604052806000815250612312565b806118bd906136c1565b9050611886565b506000905050600160068190555050565b6118dd611ef4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613cf6565b60405180910390fd5b8060046000611958611ef4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a05611ef4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4a9190612aa5565b60405180910390a35050565b611a67611a61611ef4565b83611fb5565b611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906135d7565b60405180910390fd5b611ab28484848461236d565b50505050565b6060611ac382611e6c565b611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990613d88565b60405180910390fd5b6000611b0c6123c9565b90506000815111611b2c5760405180602001604052806000815250611b57565b80611b368461245b565b604051602001611b47929190613de4565b6040516020818303038152906040525b915050919050565b60095481565b611b6d611ef4565b73ffffffffffffffffffffffffffffffffffffffff16611b8b611411565b73ffffffffffffffffffffffffffffffffffffffff1614611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613421565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9a611ef4565b73ffffffffffffffffffffffffffffffffffffffff16611cb8611411565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613421565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590613e7a565b60405180910390fd5b611d878161224c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e5557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e655750611e64826125bc565b5b9050919050565b600060028054905082108015611eed5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611ea957611ea8613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6f83611019565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fc082611e6c565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613f0c565b60405180910390fd5b600061200a83611019565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061207957508373ffffffffffffffffffffffffffffffffffffffff1661206184610906565b73ffffffffffffffffffffffffffffffffffffffff16145b8061208a57506120898185611bfe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120b382611019565b73ffffffffffffffffffffffffffffffffffffffff1614612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613f9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614030565b60405180910390fd5b612184838383612626565b61218f600082611efc565b81600282815481106121a4576121a3613663565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231c838361262b565b61232960008484846127b3565b612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906140c2565b60405180910390fd5b505050565b612378848484612093565b612384848484846127b3565b6123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba906140c2565b60405180910390fd5b50505050565b6060600780546123d890613311565b80601f016020809104026020016040519081016040528092919081815260200182805461240490613311565b80156124515780601f1061242657610100808354040283529160200191612451565b820191906000526020600020905b81548152906001019060200180831161243457829003601f168201915b5050505050905090565b606060008214156124a3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b7565b600082905060005b600082146124d55780806124be906136c1565b915050600a826124ce9190614111565b91506124ab565b60008167ffffffffffffffff8111156124f1576124f0612d2d565b5b6040519080825280601f01601f1916602001820160405280156125235781602001600182028036833780820191505090505b5090505b600085146125b05760018261253c9190614142565b9150600a8561254b9190614176565b60306125579190613972565b60f81b81838151811061256d5761256c613663565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a99190614111565b9450612527565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612692906141f3565b60405180910390fd5b6126a481611e6c565b156126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db9061425f565b60405180910390fd5b6126f060008383612626565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff1661293b565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611ef4565b8786866040518563ffffffff1660e01b815260040161281f94939291906142d4565b6020604051808303816000875af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190614335565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd906140c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b600080823b905060008111915050919050565b82805461295a90613311565b90600052602060002090601f01602090048101928261297c57600085556129c3565b82601f1061299557805160ff19168380011785556129c3565b828001600101855582156129c3579182015b828111156129c25782518255916020019190600101906129a7565b5b5090506129d091906129d4565b5090565b5b808211156129ed5760008160009055506001016129d5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3a81612a05565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b600060208284031215612a7357612a726129fb565b5b6000612a8184828501612a48565b91505092915050565b60008115159050919050565b612a9f81612a8a565b82525050565b6000602082019050612aba6000830184612a96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612afa578082015181840152602081019050612adf565b83811115612b09576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b2b82612ac0565b612b358185612acb565b9350612b45818560208601612adc565b612b4e81612b0f565b840191505092915050565b60006020820190508181036000830152612b738184612b20565b905092915050565b6000819050919050565b612b8e81612b7b565b8114612b9957600080fd5b50565b600081359050612bab81612b85565b92915050565b600060208284031215612bc757612bc66129fb565b5b6000612bd584828501612b9c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0982612bde565b9050919050565b612c1981612bfe565b82525050565b6000602082019050612c346000830184612c10565b92915050565b612c4381612bfe565b8114612c4e57600080fd5b50565b600081359050612c6081612c3a565b92915050565b60008060408385031215612c7d57612c7c6129fb565b5b6000612c8b85828601612c51565b9250506020612c9c85828601612b9c565b9150509250929050565b612caf81612b7b565b82525050565b6000602082019050612cca6000830184612ca6565b92915050565b600080600060608486031215612ce957612ce86129fb565b5b6000612cf786828701612c51565b9350506020612d0886828701612c51565b9250506040612d1986828701612b9c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d6582612b0f565b810181811067ffffffffffffffff82111715612d8457612d83612d2d565b5b80604052505050565b6000612d976129f1565b9050612da38282612d5c565b919050565b600067ffffffffffffffff821115612dc357612dc2612d2d565b5b612dcc82612b0f565b9050602081019050919050565b82818337600083830152505050565b6000612dfb612df684612da8565b612d8d565b905082815260208101848484011115612e1757612e16612d28565b5b612e22848285612dd9565b509392505050565b600082601f830112612e3f57612e3e612d23565b5b8135612e4f848260208601612de8565b91505092915050565b600060208284031215612e6e57612e6d6129fb565b5b600082013567ffffffffffffffff811115612e8c57612e8b612a00565b5b612e9884828501612e2a565b91505092915050565b600060208284031215612eb757612eb66129fb565b5b6000612ec584828501612c51565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f0381612b7b565b82525050565b6000612f158383612efa565b60208301905092915050565b6000602082019050919050565b6000612f3982612ece565b612f438185612ed9565b9350612f4e83612eea565b8060005b83811015612f7f578151612f668882612f09565b9750612f7183612f21565b925050600181019050612f52565b5085935050505092915050565b60006020820190508181036000830152612fa68184612f2e565b905092915050565b600080fd5b600080fd5b60008083601f840112612fce57612fcd612d23565b5b8235905067ffffffffffffffff811115612feb57612fea612fae565b5b60208301915083602082028301111561300757613006612fb3565b5b9250929050565b60008083601f84011261302457613023612d23565b5b8235905067ffffffffffffffff81111561304157613040612fae565b5b60208301915083602082028301111561305d5761305c612fb3565b5b9250929050565b6000806000806040858703121561307e5761307d6129fb565b5b600085013567ffffffffffffffff81111561309c5761309b612a00565b5b6130a887828801612fb8565b9450945050602085013567ffffffffffffffff8111156130cb576130ca612a00565b5b6130d78782880161300e565b925092505092959194509250565b6130ee81612a8a565b81146130f957600080fd5b50565b60008135905061310b816130e5565b92915050565b60008060408385031215613128576131276129fb565b5b600061313685828601612c51565b9250506020613147858286016130fc565b9150509250929050565b600067ffffffffffffffff82111561316c5761316b612d2d565b5b61317582612b0f565b9050602081019050919050565b600061319561319084613151565b612d8d565b9050828152602081018484840111156131b1576131b0612d28565b5b6131bc848285612dd9565b509392505050565b600082601f8301126131d9576131d8612d23565b5b81356131e9848260208601613182565b91505092915050565b6000806000806080858703121561320c5761320b6129fb565b5b600061321a87828801612c51565b945050602061322b87828801612c51565b935050604061323c87828801612b9c565b925050606085013567ffffffffffffffff81111561325d5761325c612a00565b5b613269878288016131c4565b91505092959194509250565b60006020828403121561328b5761328a6129fb565b5b6000613299848285016130fc565b91505092915050565b600080604083850312156132b9576132b86129fb565b5b60006132c785828601612c51565b92505060206132d885828601612c51565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061332957607f821691505b6020821081141561333d5761333c6132e2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061339f602c83612acb565b91506133aa82613343565b604082019050919050565b600060208201905081810360008301526133ce81613392565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061340b602083612acb565b9150613416826133d5565b602082019050919050565b6000602082019050818103600083015261343a816133fe565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061349d602183612acb565b91506134a882613441565b604082019050919050565b600060208201905081810360008301526134cc81613490565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061352f603883612acb565b915061353a826134d3565b604082019050919050565b6000602082019050818103600083015261355e81613522565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006135c1603183612acb565b91506135cc82613565565b604082019050919050565b600060208201905081810360008301526135f0816135b4565b9050919050565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b600061362d601683612acb565b9150613638826135f7565b602082019050919050565b6000602082019050818103600083015261365c81613620565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136cc82612b7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ff576136fe613692565b5b600182019050919050565b600081905092915050565b50565b600061372560008361370a565b915061373082613715565b600082019050919050565b600061374682613718565b9150819050919050565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b6000613786601783612acb565b915061379182613750565b602082019050919050565b600060208201905081810360008301526137b581613779565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613818602983612acb565b9150613823826137bc565b604082019050919050565b600060208201905081810360008301526138478161380b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006138aa602a83612acb565b91506138b58261384e565b604082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061393c602183612acb565b9150613947826138e0565b604082019050919050565b6000602082019050818103600083015261396b8161392f565b9050919050565b600061397d82612b7b565b915061398883612b7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139bd576139bc613692565b5b828201905092915050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006139fe600883612acb565b9150613a09826139c8565b602082019050919050565b60006020820190508181036000830152613a2d816139f1565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a6a601f83612acb565b9150613a7582613a34565b602082019050919050565b60006020820190508181036000830152613a9981613a5d565b9050919050565b7f436f6e7472616374204e6f7420456e61626c6564000000000000000000000000600082015250565b6000613ad6601483612acb565b9150613ae182613aa0565b602082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b6000613b42600b83612acb565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b6000613bae601b83612acb565b9150613bb982613b78565b602082019050919050565b60006020820190508181036000830152613bdd81613ba1565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b6000613c1a601383612acb565b9150613c2582613be4565b602082019050919050565b60006020820190508181036000830152613c4981613c0d565b9050919050565b6000613c5b82612b7b565b9150613c6683612b7b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9f57613c9e613692565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ce0601983612acb565b9150613ceb82613caa565b602082019050919050565b60006020820190508181036000830152613d0f81613cd3565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d72602183612acb565b9150613d7d82613d16565b604082019050919050565b60006020820190508181036000830152613da181613d65565b9050919050565b600081905092915050565b6000613dbe82612ac0565b613dc88185613da8565b9350613dd8818560208601612adc565b80840191505092915050565b6000613df08285613db3565b9150613dfc8284613db3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e64602683612acb565b9150613e6f82613e08565b604082019050919050565b60006020820190508181036000830152613e9381613e57565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ef6602c83612acb565b9150613f0182613e9a565b604082019050919050565b60006020820190508181036000830152613f2581613ee9565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613f88602983612acb565b9150613f9382613f2c565b604082019050919050565b60006020820190508181036000830152613fb781613f7b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061401a602483612acb565b915061402582613fbe565b604082019050919050565b600060208201905081810360008301526140498161400d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140ac603283612acb565b91506140b782614050565b604082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061411c82612b7b565b915061412783612b7b565b925082614137576141366140e2565b5b828204905092915050565b600061414d82612b7b565b915061415883612b7b565b92508282101561416b5761416a613692565b5b828203905092915050565b600061418182612b7b565b915061418c83612b7b565b92508261419c5761419b6140e2565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141dd602083612acb565b91506141e8826141a7565b602082019050919050565b6000602082019050818103600083015261420c816141d0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614249601c83612acb565b915061425482614213565b602082019050919050565b600060208201905081810360008301526142788161423c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142a68261427f565b6142b0818561428a565b93506142c0818560208601612adc565b6142c981612b0f565b840191505092915050565b60006080820190506142e96000830187612c10565b6142f66020830186612c10565b6143036040830185612ca6565b8181036060830152614315818461429b565b905095945050505050565b60008151905061432f81612a31565b92915050565b60006020828403121561434b5761434a6129fb565b5b600061435984828501614320565b9150509291505056fea264697066735822122073ec95a12e1be8633be7f3e5173a388fde605977fd2d90c9c054166549cfc2a364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d57806396ea3a47116100a0578063c87b56dd1161006f578063c87b56dd14610703578063d5abeb0114610740578063d897833e1461076b578063e985e9c514610794578063f2fde38b146107d1576101f9565b806396ea3a471461066c578063a0712d6814610695578063a22cb465146106b1578063b88d4fde146106da576101f9565b80637501f741116100dc5780637501f741146105ae5780638462151c146105d95780638da5cb5b1461061657806395d89b4114610641576101f9565b80636352211e146104f25780636c0360eb1461052f57806370a082311461055a578063715018a614610597576101f9565b8063228025e81161019057806342842e0e1161015f57806342842e0e1461040f57806344a0d68a146104385780634f6ccce71461046157806355f804b31461049e5780635c975abb146104c7576101f9565b8063228025e81461037657806323b872dd1461039f5780632f745c59146103c85780633ccfd60b14610405576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806313faede6146102f557806318160ddd14610320578063200d2ed21461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063088a4ed0146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a5d565b6107fa565b6040516102329190612aa5565b60405180910390f35b34801561024757600080fd5b50610250610874565b60405161025d9190612b59565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612bb1565b610906565b60405161029a9190612c1f565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612bb1565b61098b565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612c66565b610a11565b005b34801561030157600080fd5b5061030a610b29565b6040516103179190612cb5565b60405180910390f35b34801561032c57600080fd5b50610335610b2f565b6040516103429190612cb5565b60405180910390f35b34801561035757600080fd5b50610360610b3c565b60405161036d9190612aa5565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612bb1565b610b4f565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612cd0565b610bd5565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612c66565b610c35565b6040516103fc9190612cb5565b60405180910390f35b61040d610d7e565b005b34801561041b57600080fd5b5061043660048036038101906104319190612cd0565b610e73565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612bb1565b610e93565b005b34801561046d57600080fd5b5061048860048036038101906104839190612bb1565b610f19565b6040516104959190612cb5565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612e58565b610f6c565b005b3480156104d357600080fd5b506104dc611002565b6040516104e99190612aa5565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190612bb1565b611019565b6040516105269190612c1f565b60405180910390f35b34801561053b57600080fd5b506105446110d6565b6040516105519190612b59565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612ea1565b611164565b60405161058e9190612cb5565b60405180910390f35b3480156105a357600080fd5b506105ac61128a565b005b3480156105ba57600080fd5b506105c3611312565b6040516105d09190612cb5565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190612ea1565b611318565b60405161060d9190612f8c565b60405180910390f35b34801561062257600080fd5b5061062b611411565b6040516106389190612c1f565b60405180910390f35b34801561064d57600080fd5b5061065661143b565b6040516106639190612b59565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190613064565b6114cd565b005b6106af60048036038101906106aa9190612bb1565b6116e8565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190613111565b6118d5565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906131f2565b611a56565b005b34801561070f57600080fd5b5061072a60048036038101906107259190612bb1565b611ab8565b6040516107379190612b59565b60405180910390f35b34801561074c57600080fd5b50610755611b5f565b6040516107629190612cb5565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613275565b611b65565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906132a2565b611bfe565b6040516107c89190612aa5565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612ea1565b611c92565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086d575061086c82611d8a565b5b9050919050565b60606000805461088390613311565b80601f01602080910402602001604051908101604052809291908181526020018280546108af90613311565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b600061091182611e6c565b610950576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610947906133b5565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610993611ef4565b73ffffffffffffffffffffffffffffffffffffffff166109b1611411565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90613421565b60405180910390fd5b80600a8190555050565b6000610a1c82611019565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906134b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aac611ef4565b73ffffffffffffffffffffffffffffffffffffffff161480610adb5750610ada81610ad5611ef4565b611bfe565b5b610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613545565b60405180910390fd5b610b248383611efc565b505050565b60085481565b6000600280549050905090565b600b60009054906101000a900460ff1681565b610b57611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610b75611411565b73ffffffffffffffffffffffffffffffffffffffff1614610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290613421565b60405180910390fd5b8060098190555050565b610be6610be0611ef4565b82611fb5565b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c906135d7565b60405180910390fd5b610c30838383612093565b505050565b6000610c4083611164565b8210610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890613643565b60405180910390fd5b6000805b600280549050811015610d345760028181548110610ca657610ca5613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d235783821415610d16578092505050610d78565b81610d20906136c1565b91505b80610d2d906136c1565b9050610c85565b506000610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613643565b60405180910390fd5b505b92915050565b610d86611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610da4611411565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613421565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e209061373b565b60006040518083038185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b5050905080610e7057600080fd5b50565b610e8e83838360405180602001604052806000815250611a56565b505050565b610e9b611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610eb9611411565b73ffffffffffffffffffffffffffffffffffffffff1614610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690613421565b60405180910390fd5b8060088190555050565b6000610f23610b2f565b8210610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061379c565b60405180910390fd5b819050919050565b610f74611ef4565b73ffffffffffffffffffffffffffffffffffffffff16610f92611411565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90613421565b60405180910390fd5b8060079080519060200190610ffe92919061294e565b5050565b6000600560149054906101000a900460ff16905090565b600080600283815481106110305761102f613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c49061382e565b60405180910390fd5b80915050919050565b600780546110e390613311565b80601f016020809104026020016040519081016040528092919081815260200182805461110f90613311565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906138c0565b60405180910390fd5b600080600280549050905060005b8181101561127b57600281815481106111ff576111fe613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561126a5782611267906136c1565b92505b80611274906136c1565b90506111e3565b50600090508192505050919050565b611292611ef4565b73ffffffffffffffffffffffffffffffffffffffff166112b0611411565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613421565b60405180910390fd5b611310600061224c565b565b600a5481565b606061132382611164565b600010611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613643565b60405180910390fd5b600061137083611164565b905060008167ffffffffffffffff81111561138e5761138d612d2d565b5b6040519080825280602002602001820160405280156113bc5781602001602082028036833780820191505090505b50905060005b82811015611406576113d48582610c35565b8282815181106113e7576113e6613663565b5b60200260200101818152505080806113fe906136c1565b9150506113c2565b508092505050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144a90613311565b80601f016020809104026020016040519081016040528092919081815260200182805461147690613311565b80156114c35780601f10611498576101008083540402835291602001916114c3565b820191906000526020600020905b8154815290600101906020018083116114a657829003601f168201915b5050505050905090565b6114d5611ef4565b73ffffffffffffffffffffffffffffffffffffffff166114f3611411565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613421565b60405180910390fd5b818190508484905014611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890613952565b60405180910390fd5b60008061159c610b2f565b905060005b868690508110156115e4578686828181106115bf576115be613663565b5b90506020020135836115d19190613972565b9250806115dd906136c1565b90506115a1565b5060095482826115f49190613972565b1115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613a14565b60405180910390fd5b6000915060005b848490508110156116db5760005b87878381811061165d5761165c613663565b5b905060200201358110156116c9576116b886868481811061168157611680613663565b5b90506020020160208101906116969190612ea1565b84806116a1906136c1565b955060405180602001604052806000815250612312565b806116c2906136c1565b905061164a565b50806116d4906136c1565b905061163c565b5060009050505050505050565b6002600654141561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590613a80565b60405180910390fd5b60026006819055506000611740610b2f565b9050600b60009054906101000a900460ff16611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613aec565b60405180910390fd5b600082116117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613b58565b60405180910390fd5b600a54821115611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613bc4565b60405180910390fd5b60095482826118289190613972565b1115611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090613c30565b60405180910390fd5b816008546118779190613c50565b34101561188357600080fd5b60005b828110156118c4576118b333828461189e9190613972565b60405180602001604052806000815250612312565b806118bd906136c1565b9050611886565b506000905050600160068190555050565b6118dd611ef4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613cf6565b60405180910390fd5b8060046000611958611ef4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a05611ef4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4a9190612aa5565b60405180910390a35050565b611a67611a61611ef4565b83611fb5565b611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906135d7565b60405180910390fd5b611ab28484848461236d565b50505050565b6060611ac382611e6c565b611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990613d88565b60405180910390fd5b6000611b0c6123c9565b90506000815111611b2c5760405180602001604052806000815250611b57565b80611b368461245b565b604051602001611b47929190613de4565b6040516020818303038152906040525b915050919050565b60095481565b611b6d611ef4565b73ffffffffffffffffffffffffffffffffffffffff16611b8b611411565b73ffffffffffffffffffffffffffffffffffffffff1614611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613421565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c9a611ef4565b73ffffffffffffffffffffffffffffffffffffffff16611cb8611411565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613421565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7590613e7a565b60405180910390fd5b611d878161224c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e5557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e655750611e64826125bc565b5b9050919050565b600060028054905082108015611eed5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611ea957611ea8613663565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6f83611019565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fc082611e6c565b611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690613f0c565b60405180910390fd5b600061200a83611019565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061207957508373ffffffffffffffffffffffffffffffffffffffff1661206184610906565b73ffffffffffffffffffffffffffffffffffffffff16145b8061208a57506120898185611bfe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120b382611019565b73ffffffffffffffffffffffffffffffffffffffff1614612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613f9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614030565b60405180910390fd5b612184838383612626565b61218f600082611efc565b81600282815481106121a4576121a3613663565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231c838361262b565b61232960008484846127b3565b612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906140c2565b60405180910390fd5b505050565b612378848484612093565b612384848484846127b3565b6123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba906140c2565b60405180910390fd5b50505050565b6060600780546123d890613311565b80601f016020809104026020016040519081016040528092919081815260200182805461240490613311565b80156124515780601f1061242657610100808354040283529160200191612451565b820191906000526020600020905b81548152906001019060200180831161243457829003601f168201915b5050505050905090565b606060008214156124a3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b7565b600082905060005b600082146124d55780806124be906136c1565b915050600a826124ce9190614111565b91506124ab565b60008167ffffffffffffffff8111156124f1576124f0612d2d565b5b6040519080825280601f01601f1916602001820160405280156125235781602001600182028036833780820191505090505b5090505b600085146125b05760018261253c9190614142565b9150600a8561254b9190614176565b60306125579190613972565b60f81b81838151811061256d5761256c613663565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a99190614111565b9450612527565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561269b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612692906141f3565b60405180910390fd5b6126a481611e6c565b156126e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126db9061425f565b60405180910390fd5b6126f060008383612626565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff1661293b565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611ef4565b8786866040518563ffffffff1660e01b815260040161281f94939291906142d4565b6020604051808303816000875af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190614335565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd906140c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b600080823b905060008111915050919050565b82805461295a90613311565b90600052602060002090601f01602090048101928261297c57600085556129c3565b82601f1061299557805160ff19168380011785556129c3565b828001600101855582156129c3579182015b828111156129c25782518255916020019190600101906129a7565b5b5090506129d091906129d4565b5090565b5b808211156129ed5760008160009055506001016129d5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3a81612a05565b8114612a4557600080fd5b50565b600081359050612a5781612a31565b92915050565b600060208284031215612a7357612a726129fb565b5b6000612a8184828501612a48565b91505092915050565b60008115159050919050565b612a9f81612a8a565b82525050565b6000602082019050612aba6000830184612a96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612afa578082015181840152602081019050612adf565b83811115612b09576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b2b82612ac0565b612b358185612acb565b9350612b45818560208601612adc565b612b4e81612b0f565b840191505092915050565b60006020820190508181036000830152612b738184612b20565b905092915050565b6000819050919050565b612b8e81612b7b565b8114612b9957600080fd5b50565b600081359050612bab81612b85565b92915050565b600060208284031215612bc757612bc66129fb565b5b6000612bd584828501612b9c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c0982612bde565b9050919050565b612c1981612bfe565b82525050565b6000602082019050612c346000830184612c10565b92915050565b612c4381612bfe565b8114612c4e57600080fd5b50565b600081359050612c6081612c3a565b92915050565b60008060408385031215612c7d57612c7c6129fb565b5b6000612c8b85828601612c51565b9250506020612c9c85828601612b9c565b9150509250929050565b612caf81612b7b565b82525050565b6000602082019050612cca6000830184612ca6565b92915050565b600080600060608486031215612ce957612ce86129fb565b5b6000612cf786828701612c51565b9350506020612d0886828701612c51565b9250506040612d1986828701612b9c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d6582612b0f565b810181811067ffffffffffffffff82111715612d8457612d83612d2d565b5b80604052505050565b6000612d976129f1565b9050612da38282612d5c565b919050565b600067ffffffffffffffff821115612dc357612dc2612d2d565b5b612dcc82612b0f565b9050602081019050919050565b82818337600083830152505050565b6000612dfb612df684612da8565b612d8d565b905082815260208101848484011115612e1757612e16612d28565b5b612e22848285612dd9565b509392505050565b600082601f830112612e3f57612e3e612d23565b5b8135612e4f848260208601612de8565b91505092915050565b600060208284031215612e6e57612e6d6129fb565b5b600082013567ffffffffffffffff811115612e8c57612e8b612a00565b5b612e9884828501612e2a565b91505092915050565b600060208284031215612eb757612eb66129fb565b5b6000612ec584828501612c51565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f0381612b7b565b82525050565b6000612f158383612efa565b60208301905092915050565b6000602082019050919050565b6000612f3982612ece565b612f438185612ed9565b9350612f4e83612eea565b8060005b83811015612f7f578151612f668882612f09565b9750612f7183612f21565b925050600181019050612f52565b5085935050505092915050565b60006020820190508181036000830152612fa68184612f2e565b905092915050565b600080fd5b600080fd5b60008083601f840112612fce57612fcd612d23565b5b8235905067ffffffffffffffff811115612feb57612fea612fae565b5b60208301915083602082028301111561300757613006612fb3565b5b9250929050565b60008083601f84011261302457613023612d23565b5b8235905067ffffffffffffffff81111561304157613040612fae565b5b60208301915083602082028301111561305d5761305c612fb3565b5b9250929050565b6000806000806040858703121561307e5761307d6129fb565b5b600085013567ffffffffffffffff81111561309c5761309b612a00565b5b6130a887828801612fb8565b9450945050602085013567ffffffffffffffff8111156130cb576130ca612a00565b5b6130d78782880161300e565b925092505092959194509250565b6130ee81612a8a565b81146130f957600080fd5b50565b60008135905061310b816130e5565b92915050565b60008060408385031215613128576131276129fb565b5b600061313685828601612c51565b9250506020613147858286016130fc565b9150509250929050565b600067ffffffffffffffff82111561316c5761316b612d2d565b5b61317582612b0f565b9050602081019050919050565b600061319561319084613151565b612d8d565b9050828152602081018484840111156131b1576131b0612d28565b5b6131bc848285612dd9565b509392505050565b600082601f8301126131d9576131d8612d23565b5b81356131e9848260208601613182565b91505092915050565b6000806000806080858703121561320c5761320b6129fb565b5b600061321a87828801612c51565b945050602061322b87828801612c51565b935050604061323c87828801612b9c565b925050606085013567ffffffffffffffff81111561325d5761325c612a00565b5b613269878288016131c4565b91505092959194509250565b60006020828403121561328b5761328a6129fb565b5b6000613299848285016130fc565b91505092915050565b600080604083850312156132b9576132b86129fb565b5b60006132c785828601612c51565b92505060206132d885828601612c51565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061332957607f821691505b6020821081141561333d5761333c6132e2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061339f602c83612acb565b91506133aa82613343565b604082019050919050565b600060208201905081810360008301526133ce81613392565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061340b602083612acb565b9150613416826133d5565b602082019050919050565b6000602082019050818103600083015261343a816133fe565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061349d602183612acb565b91506134a882613441565b604082019050919050565b600060208201905081810360008301526134cc81613490565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061352f603883612acb565b915061353a826134d3565b604082019050919050565b6000602082019050818103600083015261355e81613522565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006135c1603183612acb565b91506135cc82613565565b604082019050919050565b600060208201905081810360008301526135f0816135b4565b9050919050565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b600061362d601683612acb565b9150613638826135f7565b602082019050919050565b6000602082019050818103600083015261365c81613620565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136cc82612b7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ff576136fe613692565b5b600182019050919050565b600081905092915050565b50565b600061372560008361370a565b915061373082613715565b600082019050919050565b600061374682613718565b9150819050919050565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b6000613786601783612acb565b915061379182613750565b602082019050919050565b600060208201905081810360008301526137b581613779565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613818602983612acb565b9150613823826137bc565b604082019050919050565b600060208201905081810360008301526138478161380b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006138aa602a83612acb565b91506138b58261384e565b604082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061393c602183612acb565b9150613947826138e0565b604082019050919050565b6000602082019050818103600083015261396b8161392f565b9050919050565b600061397d82612b7b565b915061398883612b7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139bd576139bc613692565b5b828201905092915050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006139fe600883612acb565b9150613a09826139c8565b602082019050919050565b60006020820190508181036000830152613a2d816139f1565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a6a601f83612acb565b9150613a7582613a34565b602082019050919050565b60006020820190508181036000830152613a9981613a5d565b9050919050565b7f436f6e7472616374204e6f7420456e61626c6564000000000000000000000000600082015250565b6000613ad6601483612acb565b9150613ae182613aa0565b602082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b6000613b42600b83612acb565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b6000613bae601b83612acb565b9150613bb982613b78565b602082019050919050565b60006020820190508181036000830152613bdd81613ba1565b9050919050565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b6000613c1a601383612acb565b9150613c2582613be4565b602082019050919050565b60006020820190508181036000830152613c4981613c0d565b9050919050565b6000613c5b82612b7b565b9150613c6683612b7b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9f57613c9e613692565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ce0601983612acb565b9150613ceb82613caa565b602082019050919050565b60006020820190508181036000830152613d0f81613cd3565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d72602183612acb565b9150613d7d82613d16565b604082019050919050565b60006020820190508181036000830152613da181613d65565b9050919050565b600081905092915050565b6000613dbe82612ac0565b613dc88185613da8565b9350613dd8818560208601612adc565b80840191505092915050565b6000613df08285613db3565b9150613dfc8284613db3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e64602683612acb565b9150613e6f82613e08565b604082019050919050565b60006020820190508181036000830152613e9381613e57565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ef6602c83612acb565b9150613f0182613e9a565b604082019050919050565b60006020820190508181036000830152613f2581613ee9565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613f88602983612acb565b9150613f9382613f2c565b604082019050919050565b60006020820190508181036000830152613fb781613f7b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061401a602483612acb565b915061402582613fbe565b604082019050919050565b600060208201905081810360008301526140498161400d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140ac603283612acb565b91506140b782614050565b604082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061411c82612b7b565b915061412783612b7b565b925082614137576141366140e2565b5b828204905092915050565b600061414d82612b7b565b915061415883612b7b565b92508282101561416b5761416a613692565b5b828203905092915050565b600061418182612b7b565b915061418c83612b7b565b92508261419c5761419b6140e2565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141dd602083612acb565b91506141e8826141a7565b602082019050919050565b6000602082019050818103600083015261420c816141d0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614249601c83612acb565b915061425482614213565b602082019050919050565b600060208201905081810360008301526142788161423c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142a68261427f565b6142b0818561428a565b93506142c0818560208601612adc565b6142c981612b0f565b840191505092915050565b60006080820190506142e96000830187612c10565b6142f66020830186612c10565b6143036040830185612ca6565b8181036060830152614315818461429b565b905095945050505050565b60008151905061432f81612a31565b92915050565b60006020828403121561434b5761434a6129fb565b5b600061435984828501614320565b9150509291505056fea264697066735822122073ec95a12e1be8633be7f3e5173a388fde605977fd2d90c9c054166549cfc2a364736f6c634300080a0033

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.