ETH Price: $2,519.78 (+3.47%)

Token

DegenFantasySports (DFSFB22)
 

Overview

Max Total Supply

218 DFSFB22

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
drewsuruncle.eth
Balance
1 DFSFB22
0xe506cf9defdd82723ce5b3ffe425decdf78a543d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DegenFantasySports

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.16;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract DegenFantasySports is ERC721, ReentrancyGuard, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix = "https://arweave.net/mDsNQwSq9CJAV1SkEWT6MQVKWwwHM15pOsK_tgSvI-I/";
    string public uriSuffix = ".json";

    uint256 public publicMintPrice = 0.05 ether;

    uint256 public maxSupply = 10000;

    uint256 public txLimit = 20;

    bool public publicMintPaused = true;

    address token = 0x12E6Abdf5BEaE6D1A6F5865fa41BE50347AF1bCe;

    constructor() ERC721("DegenFantasySports", "DFSFB22") {}

    modifier publicMintCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = supply.current() + _mintAmount;
        require(_mintAmount > 0 && _mintAmount <= txLimit, "You have exceeded the limit of mints per transaction");
        require(requestedAmount <= maxSupply, "SOLD OUT");
        require(!publicMintPaused, "Minting is not currently allowed!");
        require(msg.value >= publicMintPrice * _mintAmount, "You did not send enough ETH");
        _;
    }

    modifier airDropCompliance(uint256 _mintAmount) {
        uint256 requestedAmount = supply.current() + _mintAmount;
        require(requestedAmount <= maxSupply, "SOLD OUT");
        _;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function mint(uint256 _mintAmount) public payable publicMintCompliance(_mintAmount) nonReentrant {
        _mintLoop(msg.sender, _mintAmount);
    }

    function deposit(uint _amount) public payable {
        uint256 requestedAmount = supply.current() + _amount;
        require(requestedAmount <= maxSupply, "SOLD OUT");
        require(_amount <= txLimit, "You have exceeded the transaction maximum");
        require(_amount > 0, "You can not mint zero");
        IERC20(token).transferFrom(msg.sender, address(this), _amount);
        _mintLoop(msg.sender, _amount);
    }

    function airDrop(uint256 _mintAmount, address _receiver) public airDropCompliance(_mintAmount) onlyOwner nonReentrant {
        _mintLoop(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
    }

    function setTxLimit(uint256 _txLimit) public onlyOwner {
        txLimit = _txLimit;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

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

    function setPublicMintPaused(bool _state) public onlyOwner {
        publicMintPaused = _state;
    }

    function withdraw() public onlyOwner nonReentrant{
        (bool dev, ) = payable(0xDC9eeF462bD661D5a14146dFA05f5cdB6Db5Fecf).call{value: (address(this).balance * 75 / 1000)}("");
        require(dev);
        (bool owner, ) = payable(0xBEa0057eEe799b1Ee95C74A27372a37693496fc7).call{value: address(this).balance}("");
        require(owner);
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

    function setTokenContract(address _token) public onlyOwner {
        token = _token;
    }

    function getContractBalance() public onlyOwner view returns(uint){
        return IERC20(token).balanceOf(address(this));
    }

    function getOwner() public view returns(address){
        return Ownable.owner();
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 3 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 5 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806040815260200162004d9560409139600990816200002e919062000512565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908162000075919062000512565b5066b1a2bc2ec50000600b55612710600c556014600d556001600e60006101000a81548160ff0219169083151502179055507312e6abdf5beae6d1a6f5865fa41be50347af1bce600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010957600080fd5b506040518060400160405280601281526020017f446567656e46616e7461737953706f72747300000000000000000000000000008152506040518060400160405280600781526020017f4446534642323200000000000000000000000000000000000000000000000000815250816000908162000187919062000512565b50806001908162000199919062000512565b5050506001600681905550620001c4620001b8620001ca60201b60201c565b620001d260201b60201c565b620005f9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031a57607f821691505b60208210810362000330576200032f620002d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200039a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200035b565b620003a686836200035b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003f3620003ed620003e784620003be565b620003c8565b620003be565b9050919050565b6000819050919050565b6200040f83620003d2565b620004276200041e82620003fa565b84845462000368565b825550505050565b600090565b6200043e6200042f565b6200044b81848462000404565b505050565b5b8181101562000473576200046760008262000434565b60018101905062000451565b5050565b601f821115620004c2576200048c8162000336565b62000497846200034b565b81016020851015620004a7578190505b620004bf620004b6856200034b565b83018262000450565b50505b505050565b600082821c905092915050565b6000620004e760001984600802620004c7565b1980831691505092915050565b6000620005028383620004d4565b9150826002028217905092915050565b6200051d8262000298565b67ffffffffffffffff811115620005395762000538620002a3565b5b62000545825462000301565b6200055282828562000477565b600060209050601f8311600181146200058a576000841562000575578287015190505b620005818582620004f4565b865550620005f1565b601f1984166200059a8662000336565b60005b82811015620005c4578489015182556001820191506020850194506020810190506200059d565b86831015620005e45784890151620005e0601f891682620004d4565b8355505b6001600288020188555050505b505050505050565b61478c80620006096000396000f3fe6080604052600436106102045760003560e01c80636f9fb98a11610118578063aed38015116100a0578063c87b56dd1161006f578063c87b56dd14610711578063d5abeb011461074e578063dc53fd9214610779578063e985e9c5146107a4578063f2fde38b146107e157610204565b8063aed380151461067a578063b6b55f25146106a3578063b88d4fde146106bf578063bbcd5bbe146106e857610204565b8063893d20e8116100e7578063893d20e8146105b45780638da5cb5b146105df57806395d89b411461060a578063a0712d6814610635578063a22cb4651461065157610204565b80636f9fb98a1461050c57806370a0823114610537578063715018a6146105745780637ec4a6591461058b57610204565b806333d9d5fd1161019b5780635503a0e81161016a5780635503a0e8146104255780635c85974f1461045057806362b99ad4146104795780636352211e146104a45780636caae832146104e157610204565b806333d9d5fd1461037d5780633ccfd60b146103a857806342842e0e146103bf578063438b6300146103e857610204565b806316ba10e0116101d757806316ba10e0146102d757806318160ddd1461030057806323b872dd1461032b578063339493481461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612c38565b61080a565b60405161023d9190612c80565b60405180910390f35b34801561025257600080fd5b5061025b6108ec565b6040516102689190612d2b565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612d83565b61097e565b6040516102a59190612df1565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612e38565b610a03565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612fad565b610b1a565b005b34801561030c57600080fd5b50610315610ba9565b6040516103229190613005565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613020565b610bba565b005b34801561036057600080fd5b5061037b6004803603810190610376919061309f565b610c1a565b005b34801561038957600080fd5b50610392610cb3565b60405161039f9190612c80565b60405180910390f35b3480156103b457600080fd5b506103bd610cc6565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613020565b610ec8565b005b3480156103f457600080fd5b5061040f600480360381019061040a91906130cc565b610ee8565b60405161041c91906131b7565b60405180910390f35b34801561043157600080fd5b5061043a610ff2565b6040516104479190612d2b565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612d83565b611080565b005b34801561048557600080fd5b5061048e611106565b60405161049b9190612d2b565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612d83565b611194565b6040516104d89190612df1565b60405180910390f35b3480156104ed57600080fd5b506104f6611245565b6040516105039190613005565b60405180910390f35b34801561051857600080fd5b5061052161124b565b60405161052e9190613005565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906130cc565b61136a565b60405161056b9190613005565b60405180910390f35b34801561058057600080fd5b50610589611421565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612fad565b6114a9565b005b3480156105c057600080fd5b506105c9611538565b6040516105d69190612df1565b60405180910390f35b3480156105eb57600080fd5b506105f4611547565b6040516106019190612df1565b60405180910390f35b34801561061657600080fd5b5061061f611571565b60405161062c9190612d2b565b60405180910390f35b61064f600480360381019061064a9190612d83565b611603565b005b34801561065d57600080fd5b50610678600480360381019061067391906131d9565b6117b7565b005b34801561068657600080fd5b506106a1600480360381019061069c9190613219565b6117cd565b005b6106bd60048036038101906106b89190612d83565b61190d565b005b3480156106cb57600080fd5b506106e660048036038101906106e191906132fa565b611aa4565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906130cc565b611b06565b005b34801561071d57600080fd5b5061073860048036038101906107339190612d83565b611bc6565b6040516107459190612d2b565b60405180910390f35b34801561075a57600080fd5b50610763611c70565b6040516107709190613005565b60405180910390f35b34801561078557600080fd5b5061078e611c76565b60405161079b9190613005565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061337d565b611c7c565b6040516107d89190612c80565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906130cc565b611d10565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e557506108e482611e07565b5b9050919050565b6060600080546108fb906133ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610927906133ec565b80156109745780601f1061094957610100808354040283529160200191610974565b820191906000526020600020905b81548152906001019060200180831161095757829003601f168201915b5050505050905090565b600061098982611e71565b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf9061348f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0e82611194565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613521565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9d611edd565b73ffffffffffffffffffffffffffffffffffffffff161480610acc5750610acb81610ac6611edd565b611c7c565b5b610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906135b3565b60405180910390fd5b610b158383611ee5565b505050565b610b22611edd565b73ffffffffffffffffffffffffffffffffffffffff16610b40611547565b73ffffffffffffffffffffffffffffffffffffffff1614610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9061361f565b60405180910390fd5b80600a9081610ba591906137eb565b5050565b6000610bb56008611f9e565b905090565b610bcb610bc5611edd565b82611fac565b610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c019061392f565b60405180910390fd5b610c1583838361208a565b505050565b610c22611edd565b73ffffffffffffffffffffffffffffffffffffffff16610c40611547565b73ffffffffffffffffffffffffffffffffffffffff1614610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061361f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b610cce611edd565b73ffffffffffffffffffffffffffffffffffffffff16610cec611547565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061361f565b60405180910390fd5b600260065403610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061399b565b60405180910390fd5b6002600681905550600073dc9eef462bd661d5a14146dfa05f5cdb6db5fecf73ffffffffffffffffffffffffffffffffffffffff166103e8604b47610dcc91906139ea565b610dd69190613a73565b604051610de290613ad5565b60006040518083038185875af1925050503d8060008114610e1f576040519150601f19603f3d011682016040523d82523d6000602084013e610e24565b606091505b5050905080610e3257600080fd5b600073bea0057eee799b1ee95c74a27372a37693496fc773ffffffffffffffffffffffffffffffffffffffff1647604051610e6c90613ad5565b60006040518083038185875af1925050503d8060008114610ea9576040519150601f19603f3d011682016040523d82523d6000602084013e610eae565b606091505b5050905080610ebc57600080fd5b50506001600681905550565b610ee383838360405180602001604052806000815250611aa4565b505050565b60606000610ef58361136a565b905060008167ffffffffffffffff811115610f1357610f12612e82565b5b604051908082528060200260200182016040528015610f415781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f5e5750600c548211155b15610fe6576000610f6e83611194565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fd25782848381518110610fb757610fb6613aea565b5b6020026020010181815250508180610fce90613b19565b9250505b8280610fdd90613b19565b93505050610f4d565b82945050505050919050565b600a8054610fff906133ec565b80601f016020809104026020016040519081016040528092919081815260200182805461102b906133ec565b80156110785780601f1061104d57610100808354040283529160200191611078565b820191906000526020600020905b81548152906001019060200180831161105b57829003601f168201915b505050505081565b611088611edd565b73ffffffffffffffffffffffffffffffffffffffff166110a6611547565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061361f565b60405180910390fd5b80600d8190555050565b60098054611113906133ec565b80601f016020809104026020016040519081016040528092919081815260200182805461113f906133ec565b801561118c5780601f106111615761010080835404028352916020019161118c565b820191906000526020600020905b81548152906001019060200180831161116f57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613bd3565b60405180910390fd5b80915050919050565b600d5481565b6000611255611edd565b73ffffffffffffffffffffffffffffffffffffffff16611273611547565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c09061361f565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113249190612df1565b602060405180830381865afa158015611341573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113659190613c08565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613ca7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611429611edd565b73ffffffffffffffffffffffffffffffffffffffff16611447611547565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114949061361f565b60405180910390fd5b6114a760006122f0565b565b6114b1611edd565b73ffffffffffffffffffffffffffffffffffffffff166114cf611547565b73ffffffffffffffffffffffffffffffffffffffff1614611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c9061361f565b60405180910390fd5b806009908161153491906137eb565b5050565b6000611542611547565b905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611580906133ec565b80601f01602080910402602001604051908101604052809291908181526020018280546115ac906133ec565b80156115f95780601f106115ce576101008083540402835291602001916115f9565b820191906000526020600020905b8154815290600101906020018083116115dc57829003601f168201915b5050505050905090565b806000816116116008611f9e565b61161b9190613cc7565b905060008211801561162f5750600d548211155b61166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613d6d565b60405180910390fd5b600c548111156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613dd9565b60405180910390fd5b600e60009054906101000a900460ff1615611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613e6b565b60405180910390fd5b81600b5461171191906139ea565b341015611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613ed7565b60405180910390fd5b600260065403611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061399b565b60405180910390fd5b60026006819055506117aa33846123b6565b6001600681905550505050565b6117c96117c2611edd565b83836123f6565b5050565b816000816117db6008611f9e565b6117e59190613cc7565b9050600c5481111561182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613dd9565b60405180910390fd5b611834611edd565b73ffffffffffffffffffffffffffffffffffffffff16611852611547565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f9061361f565b60405180910390fd5b6002600654036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061399b565b60405180910390fd5b60026006819055506118ff83856123b6565b600160068190555050505050565b60008161191a6008611f9e565b6119249190613cc7565b9050600c5481111561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613dd9565b60405180910390fd5b600d548211156119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790613f69565b60405180910390fd5b600082116119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613fd5565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611a5293929190613ff5565b6020604051808303816000875af1158015611a71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a959190614041565b50611aa033836123b6565b5050565b611ab5611aaf611edd565b83611fac565b611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061392f565b60405180910390fd5b611b0084848484612562565b50505050565b611b0e611edd565b73ffffffffffffffffffffffffffffffffffffffff16611b2c611547565b73ffffffffffffffffffffffffffffffffffffffff1614611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b799061361f565b60405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060611bd182611e71565b611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c07906140e0565b60405180910390fd5b6000611c1a6125be565b90506000815111611c3a5760405180602001604052806000815250611c68565b80611c4484612650565b600a604051602001611c58939291906141bf565b6040516020818303038152906040525b915050919050565b600c5481565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d18611edd565b73ffffffffffffffffffffffffffffffffffffffff16611d36611547565b73ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d839061361f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290614262565b60405180910390fd5b611e04816122f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f5883611194565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611fb782611e71565b611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed906142f4565b60405180910390fd5b600061200183611194565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061204357506120428185611c7c565b5b8061208157508373ffffffffffffffffffffffffffffffffffffffff166120698461097e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120aa82611194565b73ffffffffffffffffffffffffffffffffffffffff1614612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790614386565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361216f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216690614418565b60405180910390fd5b61217a8383836127b0565b612185600082611ee5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d59190614438565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222c9190613cc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122eb8383836127b5565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156123f1576123cb60086127ba565b6123de836123d96008611f9e565b6127d0565b80806123e990613b19565b9150506123b9565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b906144b8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125559190612c80565b60405180910390a3505050565b61256d84848461208a565b612579848484846127ee565b6125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af9061454a565b60405180910390fd5b50505050565b6060600980546125cd906133ec565b80601f01602080910402602001604051908101604052809291908181526020018280546125f9906133ec565b80156126465780601f1061261b57610100808354040283529160200191612646565b820191906000526020600020905b81548152906001019060200180831161262957829003601f168201915b5050505050905090565b606060008203612697576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ab565b600082905060005b600082146126c95780806126b290613b19565b915050600a826126c29190613a73565b915061269f565b60008167ffffffffffffffff8111156126e5576126e4612e82565b5b6040519080825280601f01601f1916602001820160405280156127175781602001600182028036833780820191505090505b5090505b600085146127a4576001826127309190614438565b9150600a8561273f919061456a565b603061274b9190613cc7565b60f81b81838151811061276157612760613aea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561279d9190613a73565b945061271b565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6127ea828260405180602001604052806000815250612975565b5050565b600061280f8473ffffffffffffffffffffffffffffffffffffffff166129d0565b15612968578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612838611edd565b8786866040518563ffffffff1660e01b815260040161285a94939291906145f0565b6020604051808303816000875af192505050801561289657506040513d601f19601f820116820180604052508101906128939190614651565b60015b612918573d80600081146128c6576040519150601f19603f3d011682016040523d82523d6000602084013e6128cb565b606091505b506000815103612910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129079061454a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296d565b600190505b949350505050565b61297f83836129f3565b61298c60008484846127ee565b6129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061454a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a59906146ca565b60405180910390fd5b612a6b81611e71565b15612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290614736565b60405180910390fd5b612ab7600083836127b0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b079190613cc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc8600083836127b5565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c1581612be0565b8114612c2057600080fd5b50565b600081359050612c3281612c0c565b92915050565b600060208284031215612c4e57612c4d612bd6565b5b6000612c5c84828501612c23565b91505092915050565b60008115159050919050565b612c7a81612c65565b82525050565b6000602082019050612c956000830184612c71565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cd5578082015181840152602081019050612cba565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cfd82612c9b565b612d078185612ca6565b9350612d17818560208601612cb7565b612d2081612ce1565b840191505092915050565b60006020820190508181036000830152612d458184612cf2565b905092915050565b6000819050919050565b612d6081612d4d565b8114612d6b57600080fd5b50565b600081359050612d7d81612d57565b92915050565b600060208284031215612d9957612d98612bd6565b5b6000612da784828501612d6e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ddb82612db0565b9050919050565b612deb81612dd0565b82525050565b6000602082019050612e066000830184612de2565b92915050565b612e1581612dd0565b8114612e2057600080fd5b50565b600081359050612e3281612e0c565b92915050565b60008060408385031215612e4f57612e4e612bd6565b5b6000612e5d85828601612e23565b9250506020612e6e85828601612d6e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612eba82612ce1565b810181811067ffffffffffffffff82111715612ed957612ed8612e82565b5b80604052505050565b6000612eec612bcc565b9050612ef88282612eb1565b919050565b600067ffffffffffffffff821115612f1857612f17612e82565b5b612f2182612ce1565b9050602081019050919050565b82818337600083830152505050565b6000612f50612f4b84612efd565b612ee2565b905082815260208101848484011115612f6c57612f6b612e7d565b5b612f77848285612f2e565b509392505050565b600082601f830112612f9457612f93612e78565b5b8135612fa4848260208601612f3d565b91505092915050565b600060208284031215612fc357612fc2612bd6565b5b600082013567ffffffffffffffff811115612fe157612fe0612bdb565b5b612fed84828501612f7f565b91505092915050565b612fff81612d4d565b82525050565b600060208201905061301a6000830184612ff6565b92915050565b60008060006060848603121561303957613038612bd6565b5b600061304786828701612e23565b935050602061305886828701612e23565b925050604061306986828701612d6e565b9150509250925092565b61307c81612c65565b811461308757600080fd5b50565b60008135905061309981613073565b92915050565b6000602082840312156130b5576130b4612bd6565b5b60006130c38482850161308a565b91505092915050565b6000602082840312156130e2576130e1612bd6565b5b60006130f084828501612e23565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61312e81612d4d565b82525050565b60006131408383613125565b60208301905092915050565b6000602082019050919050565b6000613164826130f9565b61316e8185613104565b935061317983613115565b8060005b838110156131aa5781516131918882613134565b975061319c8361314c565b92505060018101905061317d565b5085935050505092915050565b600060208201905081810360008301526131d18184613159565b905092915050565b600080604083850312156131f0576131ef612bd6565b5b60006131fe85828601612e23565b925050602061320f8582860161308a565b9150509250929050565b600080604083850312156132305761322f612bd6565b5b600061323e85828601612d6e565b925050602061324f85828601612e23565b9150509250929050565b600067ffffffffffffffff82111561327457613273612e82565b5b61327d82612ce1565b9050602081019050919050565b600061329d61329884613259565b612ee2565b9050828152602081018484840111156132b9576132b8612e7d565b5b6132c4848285612f2e565b509392505050565b600082601f8301126132e1576132e0612e78565b5b81356132f184826020860161328a565b91505092915050565b6000806000806080858703121561331457613313612bd6565b5b600061332287828801612e23565b945050602061333387828801612e23565b935050604061334487828801612d6e565b925050606085013567ffffffffffffffff81111561336557613364612bdb565b5b613371878288016132cc565b91505092959194509250565b6000806040838503121561339457613393612bd6565b5b60006133a285828601612e23565b92505060206133b385828601612e23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061340457607f821691505b602082108103613417576134166133bd565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613479602c83612ca6565b91506134848261341d565b604082019050919050565b600060208201905081810360008301526134a88161346c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061350b602183612ca6565b9150613516826134af565b604082019050919050565b6000602082019050818103600083015261353a816134fe565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061359d603883612ca6565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613609602083612ca6565b9150613614826135d3565b602082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613664565b6136ab8683613664565b95508019841693508086168417925050509392505050565b6000819050919050565b60006136e86136e36136de84612d4d565b6136c3565b612d4d565b9050919050565b6000819050919050565b613702836136cd565b61371661370e826136ef565b848454613671565b825550505050565b600090565b61372b61371e565b6137368184846136f9565b505050565b5b8181101561375a5761374f600082613723565b60018101905061373c565b5050565b601f82111561379f576137708161363f565b61377984613654565b81016020851015613788578190505b61379c61379485613654565b83018261373b565b50505b505050565b600082821c905092915050565b60006137c2600019846008026137a4565b1980831691505092915050565b60006137db83836137b1565b9150826002028217905092915050565b6137f482612c9b565b67ffffffffffffffff81111561380d5761380c612e82565b5b61381782546133ec565b61382282828561375e565b600060209050601f8311600181146138555760008415613843578287015190505b61384d85826137cf565b8655506138b5565b601f1984166138638661363f565b60005b8281101561388b57848901518255600182019150602085019450602081019050613866565b868310156138a857848901516138a4601f8916826137b1565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613919603183612ca6565b9150613924826138bd565b604082019050919050565b600060208201905081810360008301526139488161390c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613985601f83612ca6565b91506139908261394f565b602082019050919050565b600060208201905081810360008301526139b481613978565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139f582612d4d565b9150613a0083612d4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3957613a386139bb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a7e82612d4d565b9150613a8983612d4d565b925082613a9957613a98613a44565b5b828204905092915050565b600081905092915050565b50565b6000613abf600083613aa4565b9150613aca82613aaf565b600082019050919050565b6000613ae082613ab2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b2482612d4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b5657613b556139bb565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613bbd602983612ca6565b9150613bc882613b61565b604082019050919050565b60006020820190508181036000830152613bec81613bb0565b9050919050565b600081519050613c0281612d57565b92915050565b600060208284031215613c1e57613c1d612bd6565b5b6000613c2c84828501613bf3565b91505092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613c91602a83612ca6565b9150613c9c82613c35565b604082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b6000613cd282612d4d565b9150613cdd83612d4d565b9250828201905080821115613cf557613cf46139bb565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b6000613d57603483612ca6565b9150613d6282613cfb565b604082019050919050565b60006020820190508181036000830152613d8681613d4a565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b6000613dc3600883612ca6565b9150613dce82613d8d565b602082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e55602183612ca6565b9150613e6082613df9565b604082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b7f596f7520646964206e6f742073656e6420656e6f756768204554480000000000600082015250565b6000613ec1601b83612ca6565b9150613ecc82613e8b565b602082019050919050565b60006020820190508181036000830152613ef081613eb4565b9050919050565b7f596f75206861766520657863656564656420746865207472616e73616374696f60008201527f6e206d6178696d756d0000000000000000000000000000000000000000000000602082015250565b6000613f53602983612ca6565b9150613f5e82613ef7565b604082019050919050565b60006020820190508181036000830152613f8281613f46565b9050919050565b7f596f752063616e206e6f74206d696e74207a65726f0000000000000000000000600082015250565b6000613fbf601583612ca6565b9150613fca82613f89565b602082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b600060608201905061400a6000830186612de2565b6140176020830185612de2565b6140246040830184612ff6565b949350505050565b60008151905061403b81613073565b92915050565b60006020828403121561405757614056612bd6565b5b60006140658482850161402c565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140ca602f83612ca6565b91506140d58261406e565b604082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b600081905092915050565b600061411682612c9b565b6141208185614100565b9350614130818560208601612cb7565b80840191505092915050565b60008154614149816133ec565b6141538186614100565b9450600182166000811461416e5760018114614183576141b6565b60ff19831686528115158202860193506141b6565b61418c8561363f565b60005b838110156141ae5781548189015260018201915060208101905061418f565b838801955050505b50505092915050565b60006141cb828661410b565b91506141d7828561410b565b91506141e3828461413c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061424c602683612ca6565b9150614257826141f0565b604082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142de602c83612ca6565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614370602583612ca6565b915061437b82614314565b604082019050919050565b6000602082019050818103600083015261439f81614363565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614402602483612ca6565b915061440d826143a6565b604082019050919050565b60006020820190508181036000830152614431816143f5565b9050919050565b600061444382612d4d565b915061444e83612d4d565b9250828203905081811115614466576144656139bb565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006144a2601983612ca6565b91506144ad8261446c565b602082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614534603283612ca6565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b600061457582612d4d565b915061458083612d4d565b9250826145905761458f613a44565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006145c28261459b565b6145cc81856145a6565b93506145dc818560208601612cb7565b6145e581612ce1565b840191505092915050565b60006080820190506146056000830187612de2565b6146126020830186612de2565b61461f6040830185612ff6565b818103606083015261463181846145b7565b905095945050505050565b60008151905061464b81612c0c565b92915050565b60006020828403121561466757614666612bd6565b5b60006146758482850161463c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006146b4602083612ca6565b91506146bf8261467e565b602082019050919050565b600060208201905081810360008301526146e3816146a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614720601c83612ca6565b915061472b826146ea565b602082019050919050565b6000602082019050818103600083015261474f81614713565b905091905056fea2646970667358221220cd8793b6578c4ebe88b6e17626a4261349c54595c928241ff731e874e3a0535364736f6c6343000810003368747470733a2f2f617277656176652e6e65742f6d44734e5177537139434a415631536b455754364d51564b577777484d3135704f734b5f74675376492d492f

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636f9fb98a11610118578063aed38015116100a0578063c87b56dd1161006f578063c87b56dd14610711578063d5abeb011461074e578063dc53fd9214610779578063e985e9c5146107a4578063f2fde38b146107e157610204565b8063aed380151461067a578063b6b55f25146106a3578063b88d4fde146106bf578063bbcd5bbe146106e857610204565b8063893d20e8116100e7578063893d20e8146105b45780638da5cb5b146105df57806395d89b411461060a578063a0712d6814610635578063a22cb4651461065157610204565b80636f9fb98a1461050c57806370a0823114610537578063715018a6146105745780637ec4a6591461058b57610204565b806333d9d5fd1161019b5780635503a0e81161016a5780635503a0e8146104255780635c85974f1461045057806362b99ad4146104795780636352211e146104a45780636caae832146104e157610204565b806333d9d5fd1461037d5780633ccfd60b146103a857806342842e0e146103bf578063438b6300146103e857610204565b806316ba10e0116101d757806316ba10e0146102d757806318160ddd1461030057806323b872dd1461032b578063339493481461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612c38565b61080a565b60405161023d9190612c80565b60405180910390f35b34801561025257600080fd5b5061025b6108ec565b6040516102689190612d2b565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612d83565b61097e565b6040516102a59190612df1565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612e38565b610a03565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612fad565b610b1a565b005b34801561030c57600080fd5b50610315610ba9565b6040516103229190613005565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613020565b610bba565b005b34801561036057600080fd5b5061037b6004803603810190610376919061309f565b610c1a565b005b34801561038957600080fd5b50610392610cb3565b60405161039f9190612c80565b60405180910390f35b3480156103b457600080fd5b506103bd610cc6565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613020565b610ec8565b005b3480156103f457600080fd5b5061040f600480360381019061040a91906130cc565b610ee8565b60405161041c91906131b7565b60405180910390f35b34801561043157600080fd5b5061043a610ff2565b6040516104479190612d2b565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612d83565b611080565b005b34801561048557600080fd5b5061048e611106565b60405161049b9190612d2b565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190612d83565b611194565b6040516104d89190612df1565b60405180910390f35b3480156104ed57600080fd5b506104f6611245565b6040516105039190613005565b60405180910390f35b34801561051857600080fd5b5061052161124b565b60405161052e9190613005565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906130cc565b61136a565b60405161056b9190613005565b60405180910390f35b34801561058057600080fd5b50610589611421565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612fad565b6114a9565b005b3480156105c057600080fd5b506105c9611538565b6040516105d69190612df1565b60405180910390f35b3480156105eb57600080fd5b506105f4611547565b6040516106019190612df1565b60405180910390f35b34801561061657600080fd5b5061061f611571565b60405161062c9190612d2b565b60405180910390f35b61064f600480360381019061064a9190612d83565b611603565b005b34801561065d57600080fd5b50610678600480360381019061067391906131d9565b6117b7565b005b34801561068657600080fd5b506106a1600480360381019061069c9190613219565b6117cd565b005b6106bd60048036038101906106b89190612d83565b61190d565b005b3480156106cb57600080fd5b506106e660048036038101906106e191906132fa565b611aa4565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906130cc565b611b06565b005b34801561071d57600080fd5b5061073860048036038101906107339190612d83565b611bc6565b6040516107459190612d2b565b60405180910390f35b34801561075a57600080fd5b50610763611c70565b6040516107709190613005565b60405180910390f35b34801561078557600080fd5b5061078e611c76565b60405161079b9190613005565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061337d565b611c7c565b6040516107d89190612c80565b60405180910390f35b3480156107ed57600080fd5b50610808600480360381019061080391906130cc565b611d10565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e557506108e482611e07565b5b9050919050565b6060600080546108fb906133ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610927906133ec565b80156109745780601f1061094957610100808354040283529160200191610974565b820191906000526020600020905b81548152906001019060200180831161095757829003601f168201915b5050505050905090565b600061098982611e71565b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf9061348f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0e82611194565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590613521565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9d611edd565b73ffffffffffffffffffffffffffffffffffffffff161480610acc5750610acb81610ac6611edd565b611c7c565b5b610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906135b3565b60405180910390fd5b610b158383611ee5565b505050565b610b22611edd565b73ffffffffffffffffffffffffffffffffffffffff16610b40611547565b73ffffffffffffffffffffffffffffffffffffffff1614610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9061361f565b60405180910390fd5b80600a9081610ba591906137eb565b5050565b6000610bb56008611f9e565b905090565b610bcb610bc5611edd565b82611fac565b610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c019061392f565b60405180910390fd5b610c1583838361208a565b505050565b610c22611edd565b73ffffffffffffffffffffffffffffffffffffffff16610c40611547565b73ffffffffffffffffffffffffffffffffffffffff1614610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061361f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b610cce611edd565b73ffffffffffffffffffffffffffffffffffffffff16610cec611547565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061361f565b60405180910390fd5b600260065403610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061399b565b60405180910390fd5b6002600681905550600073dc9eef462bd661d5a14146dfa05f5cdb6db5fecf73ffffffffffffffffffffffffffffffffffffffff166103e8604b47610dcc91906139ea565b610dd69190613a73565b604051610de290613ad5565b60006040518083038185875af1925050503d8060008114610e1f576040519150601f19603f3d011682016040523d82523d6000602084013e610e24565b606091505b5050905080610e3257600080fd5b600073bea0057eee799b1ee95c74a27372a37693496fc773ffffffffffffffffffffffffffffffffffffffff1647604051610e6c90613ad5565b60006040518083038185875af1925050503d8060008114610ea9576040519150601f19603f3d011682016040523d82523d6000602084013e610eae565b606091505b5050905080610ebc57600080fd5b50506001600681905550565b610ee383838360405180602001604052806000815250611aa4565b505050565b60606000610ef58361136a565b905060008167ffffffffffffffff811115610f1357610f12612e82565b5b604051908082528060200260200182016040528015610f415781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f5e5750600c548211155b15610fe6576000610f6e83611194565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fd25782848381518110610fb757610fb6613aea565b5b6020026020010181815250508180610fce90613b19565b9250505b8280610fdd90613b19565b93505050610f4d565b82945050505050919050565b600a8054610fff906133ec565b80601f016020809104026020016040519081016040528092919081815260200182805461102b906133ec565b80156110785780601f1061104d57610100808354040283529160200191611078565b820191906000526020600020905b81548152906001019060200180831161105b57829003601f168201915b505050505081565b611088611edd565b73ffffffffffffffffffffffffffffffffffffffff166110a6611547565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061361f565b60405180910390fd5b80600d8190555050565b60098054611113906133ec565b80601f016020809104026020016040519081016040528092919081815260200182805461113f906133ec565b801561118c5780601f106111615761010080835404028352916020019161118c565b820191906000526020600020905b81548152906001019060200180831161116f57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613bd3565b60405180910390fd5b80915050919050565b600d5481565b6000611255611edd565b73ffffffffffffffffffffffffffffffffffffffff16611273611547565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c09061361f565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113249190612df1565b602060405180830381865afa158015611341573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113659190613c08565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613ca7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611429611edd565b73ffffffffffffffffffffffffffffffffffffffff16611447611547565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114949061361f565b60405180910390fd5b6114a760006122f0565b565b6114b1611edd565b73ffffffffffffffffffffffffffffffffffffffff166114cf611547565b73ffffffffffffffffffffffffffffffffffffffff1614611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c9061361f565b60405180910390fd5b806009908161153491906137eb565b5050565b6000611542611547565b905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611580906133ec565b80601f01602080910402602001604051908101604052809291908181526020018280546115ac906133ec565b80156115f95780601f106115ce576101008083540402835291602001916115f9565b820191906000526020600020905b8154815290600101906020018083116115dc57829003601f168201915b5050505050905090565b806000816116116008611f9e565b61161b9190613cc7565b905060008211801561162f5750600d548211155b61166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613d6d565b60405180910390fd5b600c548111156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613dd9565b60405180910390fd5b600e60009054906101000a900460ff1615611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613e6b565b60405180910390fd5b81600b5461171191906139ea565b341015611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613ed7565b60405180910390fd5b600260065403611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061399b565b60405180910390fd5b60026006819055506117aa33846123b6565b6001600681905550505050565b6117c96117c2611edd565b83836123f6565b5050565b816000816117db6008611f9e565b6117e59190613cc7565b9050600c5481111561182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613dd9565b60405180910390fd5b611834611edd565b73ffffffffffffffffffffffffffffffffffffffff16611852611547565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f9061361f565b60405180910390fd5b6002600654036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061399b565b60405180910390fd5b60026006819055506118ff83856123b6565b600160068190555050505050565b60008161191a6008611f9e565b6119249190613cc7565b9050600c5481111561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613dd9565b60405180910390fd5b600d548211156119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790613f69565b60405180910390fd5b600082116119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613fd5565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611a5293929190613ff5565b6020604051808303816000875af1158015611a71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a959190614041565b50611aa033836123b6565b5050565b611ab5611aaf611edd565b83611fac565b611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061392f565b60405180910390fd5b611b0084848484612562565b50505050565b611b0e611edd565b73ffffffffffffffffffffffffffffffffffffffff16611b2c611547565b73ffffffffffffffffffffffffffffffffffffffff1614611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b799061361f565b60405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060611bd182611e71565b611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c07906140e0565b60405180910390fd5b6000611c1a6125be565b90506000815111611c3a5760405180602001604052806000815250611c68565b80611c4484612650565b600a604051602001611c58939291906141bf565b6040516020818303038152906040525b915050919050565b600c5481565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d18611edd565b73ffffffffffffffffffffffffffffffffffffffff16611d36611547565b73ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d839061361f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290614262565b60405180910390fd5b611e04816122f0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f5883611194565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611fb782611e71565b611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed906142f4565b60405180910390fd5b600061200183611194565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061204357506120428185611c7c565b5b8061208157508373ffffffffffffffffffffffffffffffffffffffff166120698461097e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120aa82611194565b73ffffffffffffffffffffffffffffffffffffffff1614612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790614386565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361216f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216690614418565b60405180910390fd5b61217a8383836127b0565b612185600082611ee5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d59190614438565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222c9190613cc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122eb8383836127b5565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156123f1576123cb60086127ba565b6123de836123d96008611f9e565b6127d0565b80806123e990613b19565b9150506123b9565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b906144b8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125559190612c80565b60405180910390a3505050565b61256d84848461208a565b612579848484846127ee565b6125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af9061454a565b60405180910390fd5b50505050565b6060600980546125cd906133ec565b80601f01602080910402602001604051908101604052809291908181526020018280546125f9906133ec565b80156126465780601f1061261b57610100808354040283529160200191612646565b820191906000526020600020905b81548152906001019060200180831161262957829003601f168201915b5050505050905090565b606060008203612697576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127ab565b600082905060005b600082146126c95780806126b290613b19565b915050600a826126c29190613a73565b915061269f565b60008167ffffffffffffffff8111156126e5576126e4612e82565b5b6040519080825280601f01601f1916602001820160405280156127175781602001600182028036833780820191505090505b5090505b600085146127a4576001826127309190614438565b9150600a8561273f919061456a565b603061274b9190613cc7565b60f81b81838151811061276157612760613aea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561279d9190613a73565b945061271b565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6127ea828260405180602001604052806000815250612975565b5050565b600061280f8473ffffffffffffffffffffffffffffffffffffffff166129d0565b15612968578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612838611edd565b8786866040518563ffffffff1660e01b815260040161285a94939291906145f0565b6020604051808303816000875af192505050801561289657506040513d601f19601f820116820180604052508101906128939190614651565b60015b612918573d80600081146128c6576040519150601f19603f3d011682016040523d82523d6000602084013e6128cb565b606091505b506000815103612910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129079061454a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296d565b600190505b949350505050565b61297f83836129f3565b61298c60008484846127ee565b6129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061454a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a59906146ca565b60405180910390fd5b612a6b81611e71565b15612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290614736565b60405180910390fd5b612ab7600083836127b0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b079190613cc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc8600083836127b5565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c1581612be0565b8114612c2057600080fd5b50565b600081359050612c3281612c0c565b92915050565b600060208284031215612c4e57612c4d612bd6565b5b6000612c5c84828501612c23565b91505092915050565b60008115159050919050565b612c7a81612c65565b82525050565b6000602082019050612c956000830184612c71565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cd5578082015181840152602081019050612cba565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cfd82612c9b565b612d078185612ca6565b9350612d17818560208601612cb7565b612d2081612ce1565b840191505092915050565b60006020820190508181036000830152612d458184612cf2565b905092915050565b6000819050919050565b612d6081612d4d565b8114612d6b57600080fd5b50565b600081359050612d7d81612d57565b92915050565b600060208284031215612d9957612d98612bd6565b5b6000612da784828501612d6e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ddb82612db0565b9050919050565b612deb81612dd0565b82525050565b6000602082019050612e066000830184612de2565b92915050565b612e1581612dd0565b8114612e2057600080fd5b50565b600081359050612e3281612e0c565b92915050565b60008060408385031215612e4f57612e4e612bd6565b5b6000612e5d85828601612e23565b9250506020612e6e85828601612d6e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612eba82612ce1565b810181811067ffffffffffffffff82111715612ed957612ed8612e82565b5b80604052505050565b6000612eec612bcc565b9050612ef88282612eb1565b919050565b600067ffffffffffffffff821115612f1857612f17612e82565b5b612f2182612ce1565b9050602081019050919050565b82818337600083830152505050565b6000612f50612f4b84612efd565b612ee2565b905082815260208101848484011115612f6c57612f6b612e7d565b5b612f77848285612f2e565b509392505050565b600082601f830112612f9457612f93612e78565b5b8135612fa4848260208601612f3d565b91505092915050565b600060208284031215612fc357612fc2612bd6565b5b600082013567ffffffffffffffff811115612fe157612fe0612bdb565b5b612fed84828501612f7f565b91505092915050565b612fff81612d4d565b82525050565b600060208201905061301a6000830184612ff6565b92915050565b60008060006060848603121561303957613038612bd6565b5b600061304786828701612e23565b935050602061305886828701612e23565b925050604061306986828701612d6e565b9150509250925092565b61307c81612c65565b811461308757600080fd5b50565b60008135905061309981613073565b92915050565b6000602082840312156130b5576130b4612bd6565b5b60006130c38482850161308a565b91505092915050565b6000602082840312156130e2576130e1612bd6565b5b60006130f084828501612e23565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61312e81612d4d565b82525050565b60006131408383613125565b60208301905092915050565b6000602082019050919050565b6000613164826130f9565b61316e8185613104565b935061317983613115565b8060005b838110156131aa5781516131918882613134565b975061319c8361314c565b92505060018101905061317d565b5085935050505092915050565b600060208201905081810360008301526131d18184613159565b905092915050565b600080604083850312156131f0576131ef612bd6565b5b60006131fe85828601612e23565b925050602061320f8582860161308a565b9150509250929050565b600080604083850312156132305761322f612bd6565b5b600061323e85828601612d6e565b925050602061324f85828601612e23565b9150509250929050565b600067ffffffffffffffff82111561327457613273612e82565b5b61327d82612ce1565b9050602081019050919050565b600061329d61329884613259565b612ee2565b9050828152602081018484840111156132b9576132b8612e7d565b5b6132c4848285612f2e565b509392505050565b600082601f8301126132e1576132e0612e78565b5b81356132f184826020860161328a565b91505092915050565b6000806000806080858703121561331457613313612bd6565b5b600061332287828801612e23565b945050602061333387828801612e23565b935050604061334487828801612d6e565b925050606085013567ffffffffffffffff81111561336557613364612bdb565b5b613371878288016132cc565b91505092959194509250565b6000806040838503121561339457613393612bd6565b5b60006133a285828601612e23565b92505060206133b385828601612e23565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061340457607f821691505b602082108103613417576134166133bd565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613479602c83612ca6565b91506134848261341d565b604082019050919050565b600060208201905081810360008301526134a88161346c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061350b602183612ca6565b9150613516826134af565b604082019050919050565b6000602082019050818103600083015261353a816134fe565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061359d603883612ca6565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613609602083612ca6565b9150613614826135d3565b602082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613664565b6136ab8683613664565b95508019841693508086168417925050509392505050565b6000819050919050565b60006136e86136e36136de84612d4d565b6136c3565b612d4d565b9050919050565b6000819050919050565b613702836136cd565b61371661370e826136ef565b848454613671565b825550505050565b600090565b61372b61371e565b6137368184846136f9565b505050565b5b8181101561375a5761374f600082613723565b60018101905061373c565b5050565b601f82111561379f576137708161363f565b61377984613654565b81016020851015613788578190505b61379c61379485613654565b83018261373b565b50505b505050565b600082821c905092915050565b60006137c2600019846008026137a4565b1980831691505092915050565b60006137db83836137b1565b9150826002028217905092915050565b6137f482612c9b565b67ffffffffffffffff81111561380d5761380c612e82565b5b61381782546133ec565b61382282828561375e565b600060209050601f8311600181146138555760008415613843578287015190505b61384d85826137cf565b8655506138b5565b601f1984166138638661363f565b60005b8281101561388b57848901518255600182019150602085019450602081019050613866565b868310156138a857848901516138a4601f8916826137b1565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613919603183612ca6565b9150613924826138bd565b604082019050919050565b600060208201905081810360008301526139488161390c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613985601f83612ca6565b91506139908261394f565b602082019050919050565b600060208201905081810360008301526139b481613978565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139f582612d4d565b9150613a0083612d4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3957613a386139bb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a7e82612d4d565b9150613a8983612d4d565b925082613a9957613a98613a44565b5b828204905092915050565b600081905092915050565b50565b6000613abf600083613aa4565b9150613aca82613aaf565b600082019050919050565b6000613ae082613ab2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b2482612d4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b5657613b556139bb565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613bbd602983612ca6565b9150613bc882613b61565b604082019050919050565b60006020820190508181036000830152613bec81613bb0565b9050919050565b600081519050613c0281612d57565b92915050565b600060208284031215613c1e57613c1d612bd6565b5b6000613c2c84828501613bf3565b91505092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613c91602a83612ca6565b9150613c9c82613c35565b604082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b6000613cd282612d4d565b9150613cdd83612d4d565b9250828201905080821115613cf557613cf46139bb565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b6000613d57603483612ca6565b9150613d6282613cfb565b604082019050919050565b60006020820190508181036000830152613d8681613d4a565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b6000613dc3600883612ca6565b9150613dce82613d8d565b602082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e55602183612ca6565b9150613e6082613df9565b604082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b7f596f7520646964206e6f742073656e6420656e6f756768204554480000000000600082015250565b6000613ec1601b83612ca6565b9150613ecc82613e8b565b602082019050919050565b60006020820190508181036000830152613ef081613eb4565b9050919050565b7f596f75206861766520657863656564656420746865207472616e73616374696f60008201527f6e206d6178696d756d0000000000000000000000000000000000000000000000602082015250565b6000613f53602983612ca6565b9150613f5e82613ef7565b604082019050919050565b60006020820190508181036000830152613f8281613f46565b9050919050565b7f596f752063616e206e6f74206d696e74207a65726f0000000000000000000000600082015250565b6000613fbf601583612ca6565b9150613fca82613f89565b602082019050919050565b60006020820190508181036000830152613fee81613fb2565b9050919050565b600060608201905061400a6000830186612de2565b6140176020830185612de2565b6140246040830184612ff6565b949350505050565b60008151905061403b81613073565b92915050565b60006020828403121561405757614056612bd6565b5b60006140658482850161402c565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140ca602f83612ca6565b91506140d58261406e565b604082019050919050565b600060208201905081810360008301526140f9816140bd565b9050919050565b600081905092915050565b600061411682612c9b565b6141208185614100565b9350614130818560208601612cb7565b80840191505092915050565b60008154614149816133ec565b6141538186614100565b9450600182166000811461416e5760018114614183576141b6565b60ff19831686528115158202860193506141b6565b61418c8561363f565b60005b838110156141ae5781548189015260018201915060208101905061418f565b838801955050505b50505092915050565b60006141cb828661410b565b91506141d7828561410b565b91506141e3828461413c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061424c602683612ca6565b9150614257826141f0565b604082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142de602c83612ca6565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614370602583612ca6565b915061437b82614314565b604082019050919050565b6000602082019050818103600083015261439f81614363565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614402602483612ca6565b915061440d826143a6565b604082019050919050565b60006020820190508181036000830152614431816143f5565b9050919050565b600061444382612d4d565b915061444e83612d4d565b9250828203905081811115614466576144656139bb565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006144a2601983612ca6565b91506144ad8261446c565b602082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614534603283612ca6565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b600061457582612d4d565b915061458083612d4d565b9250826145905761458f613a44565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006145c28261459b565b6145cc81856145a6565b93506145dc818560208601612cb7565b6145e581612ce1565b840191505092915050565b60006080820190506146056000830187612de2565b6146126020830186612de2565b61461f6040830185612ff6565b818103606083015261463181846145b7565b905095945050505050565b60008151905061464b81612c0c565b92915050565b60006020828403121561466757614666612bd6565b5b60006146758482850161463c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006146b4602083612ca6565b91506146bf8261467e565b602082019050919050565b600060208201905081810360008301526146e3816146a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614720601c83612ca6565b915061472b826146ea565b602082019050919050565b6000602082019050818103600083015261474f81614713565b905091905056fea2646970667358221220cd8793b6578c4ebe88b6e17626a4261349c54595c928241ff731e874e3a0535364736f6c63430008100033

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.