ETH Price: $2,359.92 (+0.76%)

Token

LuckyDoge (LuckyDoge)
 

Overview

Max Total Supply

0 LuckyDoge

Holders

225

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LuckyDoge
0xdb168e6fcd6dfb6b73631a33c70d2380f9c26798
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Lucky Doge Club is a collection of 10000 Lucky Doge NFTs which are chosen carefully from 20 Quadrillion doges via algorithm by combining hundreds of properties with varying rarities in different categories.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LuckyDoge

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : LuckyDoge.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.8.0 < 0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

interface OtherHolder {
    function balanceOf(address owner) external view returns (uint256 balance);
}

contract LuckyDoge is ERC721, Ownable, Pausable {
    using Strings for uint;
    string private baseURI = 'https://gateway.pinata.cloud/ipfs/QmfL3cX1M6iLA46oXbtnXo9hBhrnJJ99k1yjvfmAgTpQQ8/';
    uint private maxSupply = 10000;
    uint private maxGrant = 600;
    uint private mintedSupply = 0;
    uint256 private grantMintedNum = 0;
    uint private basePrice;

    address[] otherHolderAddress;

    uint private grantNums;
    mapping(address => bool) private grants;

    constructor() ERC721("LuckyDoge", "LuckyDoge") {
        // 0.01 ETH
        basePrice = 10000000000000000;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

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

    function setBasePrice(uint _basePrice) external onlyOwner {
        basePrice = _basePrice;
    }

    function getBasePrice() public view returns (string memory) {
        return basePrice.toString();
    }

    function setMaxGrant(uint _maxGrant) external onlyOwner {
        maxGrant = _maxGrant;
    }

    function setHolderOwner(address[] memory _address) external onlyOwner {
        otherHolderAddress = _address;
    }

    function mintDoges(uint _amount) public payable whenNotPaused {
        require(msg.value >= basePrice * _amount, "Not enough ETH sent");
        require(mintedSupply < maxSupply, "Max supply reached");
        require(mintedSupply + _amount <= maxSupply, "Exceeds max supply");

        for (uint i = 0; i < _amount; i++) {
            mint();
        }
    }

    function mintWithGrant() public payable whenNotPaused {
        require(allowGrant(), "You have no chance [1]");
        require(grantMintedNum < maxGrant, "You have no chance [2]");
        mint();
        grantMintedNum++;
        grants[msg.sender] = true;
    }

    function mint() internal {
        _safeMint(msg.sender, mintedSupply);
        mintedSupply++;
    }

    function getBalanceOf(address _address, uint target) public view returns (uint256) {
        return OtherHolder(otherHolderAddress[target]).balanceOf(_address);
    }

    function allowGrant() public view returns (bool) {
        if (grants[msg.sender]) {
            return false;
        }

        for (uint i = 0; i < otherHolderAddress.length; i++) {
            if (getBalanceOf(msg.sender, i) > 0) {
                return true;
            }
        }

        return false;
    }

    function mintedLength() public view returns (uint[] memory) {
        uint[] memory arr = new uint[](2);
        arr[0] = mintedSupply;
        arr[1] = grantMintedNum;
        return arr;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"allowGrant","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"target","type":"uint256"}],"name":"getBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBasePrice","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintDoges","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintWithGrant","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedLength","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_basePrice","type":"uint256"}],"name":"setBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"setHolderOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxGrant","type":"uint256"}],"name":"setMaxGrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280605181526020016200447160519139600790805190602001906200003592919062000217565b506127106008556102586009556000600a556000600b553480156200005957600080fd5b506040518060400160405280600981526020017f4c75636b79446f676500000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4c75636b79446f676500000000000000000000000000000000000000000000008152508160009080519060200190620000de92919062000217565b508060019080519060200190620000f792919062000217565b5050506200011a6200010e6200014960201b60201c565b6200015160201b60201c565b6000600660146101000a81548160ff021916908315150217905550662386f26fc10000600c819055506200032c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022590620002c7565b90600052602060002090601f01602090048101928262000249576000855562000295565b82601f106200026457805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029457825182559160200191906001019062000277565b5b509050620002a49190620002a8565b5090565b5b80821115620002c3576000816000905550600101620002a9565b5090565b60006002820490506001821680620002e057607f821691505b60208210811415620002f757620002f6620002fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614135806200033c6000396000f3fe6080604052600436106101cd5760003560e01c80635c975abb116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146105fa578063de4b326214610637578063e985e9c514610660578063f2fde38b1461069d576101cd565b806395d89b4114610552578063a22cb4651461057d578063b49f4afd146105a6578063b88d4fde146105d1576101cd565b8063715018a6116100d1578063715018a6146104bc5780638456cb59146104d35780638da5cb5b146104ea57806394d45b5914610515576101cd565b80635c975abb146104175780636352211e1461044257806370a082311461047f576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461039057806342e68957146103b9578063478c4ebb146103c357806355f804b3146103ee576101cd565b806323b872dd14610310578063347301e6146103395780633ccfd60b146103625780633f4ba83a14610379576101cd565b806308eee430116101ab57806308eee43014610277578063095ea7b3146102a057806310d7a754146102c95780631421d74f146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612ce4565b6106c6565b6040516102069190613308565b60405180910390f35b34801561021b57600080fd5b506102246107a8565b6040516102319190613323565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d87565b61083a565b60405161026e919061327f565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d87565b6108bf565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612c5b565b610945565b005b3480156102d557600080fd5b506102de610a5d565b6040516102eb9190613308565b60405180910390f35b61030e60048036038101906103099190612d87565b610b02565b005b34801561031c57600080fd5b5061033760048036038101906103329190612b45565b610c5c565b005b34801561034557600080fd5b50610360600480360381019061035b9190612c9b565b610cbc565b005b34801561036e57600080fd5b50610377610d52565b005b34801561038557600080fd5b5061038e610e1e565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612b45565b610ea4565b005b6103c1610ec4565b005b3480156103cf57600080fd5b506103d8611013565b6040516103e591906132e6565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612d3e565b6110b0565b005b34801561042357600080fd5b5061042c611146565b6040516104399190613308565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612d87565b61115d565b604051610476919061327f565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612ad8565b61120f565b6040516104b39190613625565b60405180910390f35b3480156104c857600080fd5b506104d16112c7565b005b3480156104df57600080fd5b506104e861134f565b005b3480156104f657600080fd5b506104ff6113d5565b60405161050c919061327f565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612c5b565b6113ff565b6040516105499190613625565b60405180910390f35b34801561055e57600080fd5b506105676114d0565b6040516105749190613323565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612c1b565b611562565b005b3480156105b257600080fd5b506105bb6116e3565b6040516105c89190613323565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612b98565b6116f5565b005b34801561060657600080fd5b50610621600480360381019061061c9190612d87565b611757565b60405161062e9190613323565b60405180910390f35b34801561064357600080fd5b5061065e60048036038101906106599190612d87565b6117fe565b005b34801561066c57600080fd5b5061068760048036038101906106829190612b05565b611884565b6040516106949190613308565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612ad8565b611918565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a157506107a082611a10565b5b9050919050565b6060600080546107b79061393a565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061393a565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b600061084582611a7a565b610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90613505565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108c7611ae6565b73ffffffffffffffffffffffffffffffffffffffff166108e56113d5565b73ffffffffffffffffffffffffffffffffffffffff161461093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093290613525565b60405180910390fd5b8060098190555050565b60006109508261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906135a5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e0611ae6565b73ffffffffffffffffffffffffffffffffffffffff161480610a0f5750610a0e81610a09611ae6565b611884565b5b610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590613465565b60405180910390fd5b610a588383611aee565b505050565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610aba5760009050610aff565b60005b600d80549050811015610af9576000610ad633836113ff565b1115610ae6576001915050610aff565b8080610af19061399d565b915050610abd565b50600090505b90565b610b0a611146565b15610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190613445565b60405180910390fd5b80600c54610b5891906137f6565b341015610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190613585565b60405180910390fd5b600854600a5410610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd7906135e5565b60405180910390fd5b60085481600a54610bf1919061376f565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906134c5565b60405180910390fd5b60005b81811015610c5857610c45611ba7565b8080610c509061399d565b915050610c35565b5050565b610c6d610c67611ae6565b82611bcd565b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906135c5565b60405180910390fd5b610cb7838383611cab565b505050565b610cc4611ae6565b73ffffffffffffffffffffffffffffffffffffffff16610ce26113d5565b73ffffffffffffffffffffffffffffffffffffffff1614610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613525565b60405180910390fd5b80600d9080519060200190610d4e9291906127af565b5050565b610d5a611ae6565b73ffffffffffffffffffffffffffffffffffffffff16610d786113d5565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613525565b60405180910390fd5b610dd66113d5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e1b573d6000803e3d6000fd5b50565b610e26611ae6565b73ffffffffffffffffffffffffffffffffffffffff16610e446113d5565b73ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613525565b60405180910390fd5b610ea2611f07565b565b610ebf838383604051806020016040528060008152506116f5565b505050565b610ecc611146565b15610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613445565b60405180910390fd5b610f14610a5d565b610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a906133c5565b60405180910390fd5b600954600b5410610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613605565b60405180910390fd5b610fa1611ba7565b600b6000815480929190610fb49061399d565b91905055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60606000600267ffffffffffffffff81111561103257611031613ad3565b5b6040519080825280602002602001820160405280156110605781602001602082028036833780820191505090505b509050600a548160008151811061107a57611079613aa4565b5b602002602001018181525050600b548160018151811061109d5761109c613aa4565b5b6020026020010181815250508091505090565b6110b8611ae6565b73ffffffffffffffffffffffffffffffffffffffff166110d66113d5565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613525565b60405180910390fd5b8060079080519060200190611142929190612839565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd906134a5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790613485565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112cf611ae6565b73ffffffffffffffffffffffffffffffffffffffff166112ed6113d5565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613525565b60405180910390fd5b61134d6000611fa9565b565b611357611ae6565b73ffffffffffffffffffffffffffffffffffffffff166113756113d5565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290613525565b60405180910390fd5b6113d361206f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d828154811061141557611414613aa4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611478919061327f565b60206040518083038186803b15801561149057600080fd5b505afa1580156114a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c89190612db4565b905092915050565b6060600180546114df9061393a565b80601f016020809104026020016040519081016040528092919081815260200182805461150b9061393a565b80156115585780601f1061152d57610100808354040283529160200191611558565b820191906000526020600020905b81548152906001019060200180831161153b57829003601f168201915b5050505050905090565b61156a611ae6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613405565b60405180910390fd5b80600560006115e5611ae6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611692611ae6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116d79190613308565b60405180910390a35050565b60606116f0600c54612112565b905090565b611706611700611ae6565b83611bcd565b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c906135c5565b60405180910390fd5b61175184848484612273565b50505050565b606061176282611a7a565b6117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890613565565b60405180910390fd5b60006117ab6122cf565b905060008151116117cb57604051806020016040528060008152506117f6565b806117d584612112565b6040516020016117e692919061325b565b6040516020818303038152906040525b915050919050565b611806611ae6565b73ffffffffffffffffffffffffffffffffffffffff166118246113d5565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613525565b60405180910390fd5b80600c8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611920611ae6565b73ffffffffffffffffffffffffffffffffffffffff1661193e6113d5565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613525565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613385565b60405180910390fd5b611a0d81611fa9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b618361115d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611bb333600a54612361565b600a6000815480929190611bc69061399d565b9190505550565b6000611bd882611a7a565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90613425565b60405180910390fd5b6000611c228361115d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9157508373ffffffffffffffffffffffffffffffffffffffff16611c798461083a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ca25750611ca18185611884565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ccb8261115d565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613545565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906133e5565b60405180910390fd5b611d9c83838361237f565b611da7600082611aee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df79190613850565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4e919061376f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f0f611146565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613345565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f92611ae6565b604051611f9f919061327f565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612077611146565b156120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae90613445565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120fb611ae6565b604051612108919061327f565b60405180910390a1565b6060600082141561215a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226e565b600082905060005b6000821461218c5780806121759061399d565b915050600a8261218591906137c5565b9150612162565b60008167ffffffffffffffff8111156121a8576121a7613ad3565b5b6040519080825280601f01601f1916602001820160405280156121da5781602001600182028036833780820191505090505b5090505b60008514612267576001826121f39190613850565b9150600a8561220291906139e6565b603061220e919061376f565b60f81b81838151811061222457612223613aa4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561226091906137c5565b94506121de565b8093505050505b919050565b61227e848484611cab565b61228a848484846123d7565b6122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090613365565b60405180910390fd5b50505050565b6060600780546122de9061393a565b80601f016020809104026020016040519081016040528092919081815260200182805461230a9061393a565b80156123575780601f1061232c57610100808354040283529160200191612357565b820191906000526020600020905b81548152906001019060200180831161233a57829003601f168201915b5050505050905090565b61237b82826040518060200160405280600081525061256e565b5050565b612387611146565b156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90613445565b60405180910390fd5b6123d28383836125c9565b505050565b60006123f88473ffffffffffffffffffffffffffffffffffffffff166125ce565b15612561578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612421611ae6565b8786866040518563ffffffff1660e01b8152600401612443949392919061329a565b602060405180830381600087803b15801561245d57600080fd5b505af192505050801561248e57506040513d601f19601f8201168201806040525081019061248b9190612d11565b60015b612511573d80600081146124be576040519150601f19603f3d011682016040523d82523d6000602084013e6124c3565b606091505b50600081511415612509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250090613365565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612566565b600190505b949350505050565b61257883836125e1565b61258560008484846123d7565b6125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb90613365565b60405180910390fd5b505050565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612648906134e5565b60405180910390fd5b61265a81611a7a565b1561269a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612691906133a5565b60405180910390fd5b6126a66000838361237f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f6919061376f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054828255906000526020600020908101928215612828579160200282015b828111156128275782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906127cf565b5b50905061283591906128bf565b5090565b8280546128459061393a565b90600052602060002090601f01602090048101928261286757600085556128ae565b82601f1061288057805160ff19168380011785556128ae565b828001600101855582156128ae579182015b828111156128ad578251825591602001919060010190612892565b5b5090506128bb91906128bf565b5090565b5b808211156128d85760008160009055506001016128c0565b5090565b60006128ef6128ea84613665565b613640565b9050808382526020820190508285602086028201111561291257612911613b07565b5b60005b85811015612942578161292888826129d0565b845260208401935060208301925050600181019050612915565b5050509392505050565b600061295f61295a84613691565b613640565b90508281526020810184848401111561297b5761297a613b0c565b5b6129868482856138f8565b509392505050565b60006129a161299c846136c2565b613640565b9050828152602081018484840111156129bd576129bc613b0c565b5b6129c88482856138f8565b509392505050565b6000813590506129df816140a3565b92915050565b600082601f8301126129fa576129f9613b02565b5b8135612a0a8482602086016128dc565b91505092915050565b600081359050612a22816140ba565b92915050565b600081359050612a37816140d1565b92915050565b600081519050612a4c816140d1565b92915050565b600082601f830112612a6757612a66613b02565b5b8135612a7784826020860161294c565b91505092915050565b600082601f830112612a9557612a94613b02565b5b8135612aa584826020860161298e565b91505092915050565b600081359050612abd816140e8565b92915050565b600081519050612ad2816140e8565b92915050565b600060208284031215612aee57612aed613b16565b5b6000612afc848285016129d0565b91505092915050565b60008060408385031215612b1c57612b1b613b16565b5b6000612b2a858286016129d0565b9250506020612b3b858286016129d0565b9150509250929050565b600080600060608486031215612b5e57612b5d613b16565b5b6000612b6c868287016129d0565b9350506020612b7d868287016129d0565b9250506040612b8e86828701612aae565b9150509250925092565b60008060008060808587031215612bb257612bb1613b16565b5b6000612bc0878288016129d0565b9450506020612bd1878288016129d0565b9350506040612be287828801612aae565b925050606085013567ffffffffffffffff811115612c0357612c02613b11565b5b612c0f87828801612a52565b91505092959194509250565b60008060408385031215612c3257612c31613b16565b5b6000612c40858286016129d0565b9250506020612c5185828601612a13565b9150509250929050565b60008060408385031215612c7257612c71613b16565b5b6000612c80858286016129d0565b9250506020612c9185828601612aae565b9150509250929050565b600060208284031215612cb157612cb0613b16565b5b600082013567ffffffffffffffff811115612ccf57612cce613b11565b5b612cdb848285016129e5565b91505092915050565b600060208284031215612cfa57612cf9613b16565b5b6000612d0884828501612a28565b91505092915050565b600060208284031215612d2757612d26613b16565b5b6000612d3584828501612a3d565b91505092915050565b600060208284031215612d5457612d53613b16565b5b600082013567ffffffffffffffff811115612d7257612d71613b11565b5b612d7e84828501612a80565b91505092915050565b600060208284031215612d9d57612d9c613b16565b5b6000612dab84828501612aae565b91505092915050565b600060208284031215612dca57612dc9613b16565b5b6000612dd884828501612ac3565b91505092915050565b6000612ded838361323d565b60208301905092915050565b612e0281613884565b82525050565b6000612e1382613703565b612e1d8185613731565b9350612e28836136f3565b8060005b83811015612e59578151612e408882612de1565b9750612e4b83613724565b925050600181019050612e2c565b5085935050505092915050565b612e6f81613896565b82525050565b6000612e808261370e565b612e8a8185613742565b9350612e9a818560208601613907565b612ea381613b1b565b840191505092915050565b6000612eb982613719565b612ec38185613753565b9350612ed3818560208601613907565b612edc81613b1b565b840191505092915050565b6000612ef282613719565b612efc8185613764565b9350612f0c818560208601613907565b80840191505092915050565b6000612f25601483613753565b9150612f3082613b2c565b602082019050919050565b6000612f48603283613753565b9150612f5382613b55565b604082019050919050565b6000612f6b602683613753565b9150612f7682613ba4565b604082019050919050565b6000612f8e601c83613753565b9150612f9982613bf3565b602082019050919050565b6000612fb1601683613753565b9150612fbc82613c1c565b602082019050919050565b6000612fd4602483613753565b9150612fdf82613c45565b604082019050919050565b6000612ff7601983613753565b915061300282613c94565b602082019050919050565b600061301a602c83613753565b915061302582613cbd565b604082019050919050565b600061303d601083613753565b915061304882613d0c565b602082019050919050565b6000613060603883613753565b915061306b82613d35565b604082019050919050565b6000613083602a83613753565b915061308e82613d84565b604082019050919050565b60006130a6602983613753565b91506130b182613dd3565b604082019050919050565b60006130c9601283613753565b91506130d482613e22565b602082019050919050565b60006130ec602083613753565b91506130f782613e4b565b602082019050919050565b600061310f602c83613753565b915061311a82613e74565b604082019050919050565b6000613132602083613753565b915061313d82613ec3565b602082019050919050565b6000613155602983613753565b915061316082613eec565b604082019050919050565b6000613178602f83613753565b915061318382613f3b565b604082019050919050565b600061319b601383613753565b91506131a682613f8a565b602082019050919050565b60006131be602183613753565b91506131c982613fb3565b604082019050919050565b60006131e1603183613753565b91506131ec82614002565b604082019050919050565b6000613204601283613753565b915061320f82614051565b602082019050919050565b6000613227601683613753565b91506132328261407a565b602082019050919050565b613246816138ee565b82525050565b613255816138ee565b82525050565b60006132678285612ee7565b91506132738284612ee7565b91508190509392505050565b60006020820190506132946000830184612df9565b92915050565b60006080820190506132af6000830187612df9565b6132bc6020830186612df9565b6132c9604083018561324c565b81810360608301526132db8184612e75565b905095945050505050565b600060208201905081810360008301526133008184612e08565b905092915050565b600060208201905061331d6000830184612e66565b92915050565b6000602082019050818103600083015261333d8184612eae565b905092915050565b6000602082019050818103600083015261335e81612f18565b9050919050565b6000602082019050818103600083015261337e81612f3b565b9050919050565b6000602082019050818103600083015261339e81612f5e565b9050919050565b600060208201905081810360008301526133be81612f81565b9050919050565b600060208201905081810360008301526133de81612fa4565b9050919050565b600060208201905081810360008301526133fe81612fc7565b9050919050565b6000602082019050818103600083015261341e81612fea565b9050919050565b6000602082019050818103600083015261343e8161300d565b9050919050565b6000602082019050818103600083015261345e81613030565b9050919050565b6000602082019050818103600083015261347e81613053565b9050919050565b6000602082019050818103600083015261349e81613076565b9050919050565b600060208201905081810360008301526134be81613099565b9050919050565b600060208201905081810360008301526134de816130bc565b9050919050565b600060208201905081810360008301526134fe816130df565b9050919050565b6000602082019050818103600083015261351e81613102565b9050919050565b6000602082019050818103600083015261353e81613125565b9050919050565b6000602082019050818103600083015261355e81613148565b9050919050565b6000602082019050818103600083015261357e8161316b565b9050919050565b6000602082019050818103600083015261359e8161318e565b9050919050565b600060208201905081810360008301526135be816131b1565b9050919050565b600060208201905081810360008301526135de816131d4565b9050919050565b600060208201905081810360008301526135fe816131f7565b9050919050565b6000602082019050818103600083015261361e8161321a565b9050919050565b600060208201905061363a600083018461324c565b92915050565b600061364a61365b565b9050613656828261396c565b919050565b6000604051905090565b600067ffffffffffffffff8211156136805761367f613ad3565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136ac576136ab613ad3565b5b6136b582613b1b565b9050602081019050919050565b600067ffffffffffffffff8211156136dd576136dc613ad3565b5b6136e682613b1b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061377a826138ee565b9150613785836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137ba576137b9613a17565b5b828201905092915050565b60006137d0826138ee565b91506137db836138ee565b9250826137eb576137ea613a46565b5b828204905092915050565b6000613801826138ee565b915061380c836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384557613844613a17565b5b828202905092915050565b600061385b826138ee565b9150613866836138ee565b92508282101561387957613878613a17565b5b828203905092915050565b600061388f826138ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392557808201518184015260208101905061390a565b83811115613934576000848401525b50505050565b6000600282049050600182168061395257607f821691505b6020821081141561396657613965613a75565b5b50919050565b61397582613b1b565b810181811067ffffffffffffffff8211171561399457613993613ad3565b5b80604052505050565b60006139a8826138ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139db576139da613a17565b5b600182019050919050565b60006139f1826138ee565b91506139fc836138ee565b925082613a0c57613a0b613a46565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752068617665206e6f206368616e6365205b315d00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f596f752068617665206e6f206368616e6365205b325d00000000000000000000600082015250565b6140ac81613884565b81146140b757600080fd5b50565b6140c381613896565b81146140ce57600080fd5b50565b6140da816138a2565b81146140e557600080fd5b50565b6140f1816138ee565b81146140fc57600080fd5b5056fea264697066735822122005e8da7ee2e918f1e29c5dc41bfd607a07862081976b6a97aeb76b7e4063d59164736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d664c336358314d36694c4134366f5862746e586f39684268726e4a4a39396b31796a76666d416754705151382f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80635c975abb116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146105fa578063de4b326214610637578063e985e9c514610660578063f2fde38b1461069d576101cd565b806395d89b4114610552578063a22cb4651461057d578063b49f4afd146105a6578063b88d4fde146105d1576101cd565b8063715018a6116100d1578063715018a6146104bc5780638456cb59146104d35780638da5cb5b146104ea57806394d45b5914610515576101cd565b80635c975abb146104175780636352211e1461044257806370a082311461047f576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461039057806342e68957146103b9578063478c4ebb146103c357806355f804b3146103ee576101cd565b806323b872dd14610310578063347301e6146103395780633ccfd60b146103625780633f4ba83a14610379576101cd565b806308eee430116101ab57806308eee43014610277578063095ea7b3146102a057806310d7a754146102c95780631421d74f146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612ce4565b6106c6565b6040516102069190613308565b60405180910390f35b34801561021b57600080fd5b506102246107a8565b6040516102319190613323565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d87565b61083a565b60405161026e919061327f565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d87565b6108bf565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612c5b565b610945565b005b3480156102d557600080fd5b506102de610a5d565b6040516102eb9190613308565b60405180910390f35b61030e60048036038101906103099190612d87565b610b02565b005b34801561031c57600080fd5b5061033760048036038101906103329190612b45565b610c5c565b005b34801561034557600080fd5b50610360600480360381019061035b9190612c9b565b610cbc565b005b34801561036e57600080fd5b50610377610d52565b005b34801561038557600080fd5b5061038e610e1e565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612b45565b610ea4565b005b6103c1610ec4565b005b3480156103cf57600080fd5b506103d8611013565b6040516103e591906132e6565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612d3e565b6110b0565b005b34801561042357600080fd5b5061042c611146565b6040516104399190613308565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612d87565b61115d565b604051610476919061327f565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612ad8565b61120f565b6040516104b39190613625565b60405180910390f35b3480156104c857600080fd5b506104d16112c7565b005b3480156104df57600080fd5b506104e861134f565b005b3480156104f657600080fd5b506104ff6113d5565b60405161050c919061327f565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612c5b565b6113ff565b6040516105499190613625565b60405180910390f35b34801561055e57600080fd5b506105676114d0565b6040516105749190613323565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612c1b565b611562565b005b3480156105b257600080fd5b506105bb6116e3565b6040516105c89190613323565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612b98565b6116f5565b005b34801561060657600080fd5b50610621600480360381019061061c9190612d87565b611757565b60405161062e9190613323565b60405180910390f35b34801561064357600080fd5b5061065e60048036038101906106599190612d87565b6117fe565b005b34801561066c57600080fd5b5061068760048036038101906106829190612b05565b611884565b6040516106949190613308565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612ad8565b611918565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a157506107a082611a10565b5b9050919050565b6060600080546107b79061393a565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061393a565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b600061084582611a7a565b610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90613505565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108c7611ae6565b73ffffffffffffffffffffffffffffffffffffffff166108e56113d5565b73ffffffffffffffffffffffffffffffffffffffff161461093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093290613525565b60405180910390fd5b8060098190555050565b60006109508261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906135a5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e0611ae6565b73ffffffffffffffffffffffffffffffffffffffff161480610a0f5750610a0e81610a09611ae6565b611884565b5b610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590613465565b60405180910390fd5b610a588383611aee565b505050565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610aba5760009050610aff565b60005b600d80549050811015610af9576000610ad633836113ff565b1115610ae6576001915050610aff565b8080610af19061399d565b915050610abd565b50600090505b90565b610b0a611146565b15610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190613445565b60405180910390fd5b80600c54610b5891906137f6565b341015610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190613585565b60405180910390fd5b600854600a5410610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd7906135e5565b60405180910390fd5b60085481600a54610bf1919061376f565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906134c5565b60405180910390fd5b60005b81811015610c5857610c45611ba7565b8080610c509061399d565b915050610c35565b5050565b610c6d610c67611ae6565b82611bcd565b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906135c5565b60405180910390fd5b610cb7838383611cab565b505050565b610cc4611ae6565b73ffffffffffffffffffffffffffffffffffffffff16610ce26113d5565b73ffffffffffffffffffffffffffffffffffffffff1614610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613525565b60405180910390fd5b80600d9080519060200190610d4e9291906127af565b5050565b610d5a611ae6565b73ffffffffffffffffffffffffffffffffffffffff16610d786113d5565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613525565b60405180910390fd5b610dd66113d5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e1b573d6000803e3d6000fd5b50565b610e26611ae6565b73ffffffffffffffffffffffffffffffffffffffff16610e446113d5565b73ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613525565b60405180910390fd5b610ea2611f07565b565b610ebf838383604051806020016040528060008152506116f5565b505050565b610ecc611146565b15610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613445565b60405180910390fd5b610f14610a5d565b610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a906133c5565b60405180910390fd5b600954600b5410610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613605565b60405180910390fd5b610fa1611ba7565b600b6000815480929190610fb49061399d565b91905055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60606000600267ffffffffffffffff81111561103257611031613ad3565b5b6040519080825280602002602001820160405280156110605781602001602082028036833780820191505090505b509050600a548160008151811061107a57611079613aa4565b5b602002602001018181525050600b548160018151811061109d5761109c613aa4565b5b6020026020010181815250508091505090565b6110b8611ae6565b73ffffffffffffffffffffffffffffffffffffffff166110d66113d5565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613525565b60405180910390fd5b8060079080519060200190611142929190612839565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd906134a5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790613485565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112cf611ae6565b73ffffffffffffffffffffffffffffffffffffffff166112ed6113d5565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90613525565b60405180910390fd5b61134d6000611fa9565b565b611357611ae6565b73ffffffffffffffffffffffffffffffffffffffff166113756113d5565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290613525565b60405180910390fd5b6113d361206f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d828154811061141557611414613aa4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611478919061327f565b60206040518083038186803b15801561149057600080fd5b505afa1580156114a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c89190612db4565b905092915050565b6060600180546114df9061393a565b80601f016020809104026020016040519081016040528092919081815260200182805461150b9061393a565b80156115585780601f1061152d57610100808354040283529160200191611558565b820191906000526020600020905b81548152906001019060200180831161153b57829003601f168201915b5050505050905090565b61156a611ae6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613405565b60405180910390fd5b80600560006115e5611ae6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611692611ae6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116d79190613308565b60405180910390a35050565b60606116f0600c54612112565b905090565b611706611700611ae6565b83611bcd565b611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c906135c5565b60405180910390fd5b61175184848484612273565b50505050565b606061176282611a7a565b6117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890613565565b60405180910390fd5b60006117ab6122cf565b905060008151116117cb57604051806020016040528060008152506117f6565b806117d584612112565b6040516020016117e692919061325b565b6040516020818303038152906040525b915050919050565b611806611ae6565b73ffffffffffffffffffffffffffffffffffffffff166118246113d5565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190613525565b60405180910390fd5b80600c8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611920611ae6565b73ffffffffffffffffffffffffffffffffffffffff1661193e6113d5565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613525565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613385565b60405180910390fd5b611a0d81611fa9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b618361115d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611bb333600a54612361565b600a6000815480929190611bc69061399d565b9190505550565b6000611bd882611a7a565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90613425565b60405180910390fd5b6000611c228361115d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9157508373ffffffffffffffffffffffffffffffffffffffff16611c798461083a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ca25750611ca18185611884565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ccb8261115d565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613545565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906133e5565b60405180910390fd5b611d9c83838361237f565b611da7600082611aee565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df79190613850565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4e919061376f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f0f611146565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613345565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f92611ae6565b604051611f9f919061327f565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612077611146565b156120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae90613445565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120fb611ae6565b604051612108919061327f565b60405180910390a1565b6060600082141561215a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226e565b600082905060005b6000821461218c5780806121759061399d565b915050600a8261218591906137c5565b9150612162565b60008167ffffffffffffffff8111156121a8576121a7613ad3565b5b6040519080825280601f01601f1916602001820160405280156121da5781602001600182028036833780820191505090505b5090505b60008514612267576001826121f39190613850565b9150600a8561220291906139e6565b603061220e919061376f565b60f81b81838151811061222457612223613aa4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561226091906137c5565b94506121de565b8093505050505b919050565b61227e848484611cab565b61228a848484846123d7565b6122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090613365565b60405180910390fd5b50505050565b6060600780546122de9061393a565b80601f016020809104026020016040519081016040528092919081815260200182805461230a9061393a565b80156123575780601f1061232c57610100808354040283529160200191612357565b820191906000526020600020905b81548152906001019060200180831161233a57829003601f168201915b5050505050905090565b61237b82826040518060200160405280600081525061256e565b5050565b612387611146565b156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90613445565b60405180910390fd5b6123d28383836125c9565b505050565b60006123f88473ffffffffffffffffffffffffffffffffffffffff166125ce565b15612561578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612421611ae6565b8786866040518563ffffffff1660e01b8152600401612443949392919061329a565b602060405180830381600087803b15801561245d57600080fd5b505af192505050801561248e57506040513d601f19601f8201168201806040525081019061248b9190612d11565b60015b612511573d80600081146124be576040519150601f19603f3d011682016040523d82523d6000602084013e6124c3565b606091505b50600081511415612509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250090613365565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612566565b600190505b949350505050565b61257883836125e1565b61258560008484846123d7565b6125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb90613365565b60405180910390fd5b505050565b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612648906134e5565b60405180910390fd5b61265a81611a7a565b1561269a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612691906133a5565b60405180910390fd5b6126a66000838361237f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f6919061376f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054828255906000526020600020908101928215612828579160200282015b828111156128275782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906127cf565b5b50905061283591906128bf565b5090565b8280546128459061393a565b90600052602060002090601f01602090048101928261286757600085556128ae565b82601f1061288057805160ff19168380011785556128ae565b828001600101855582156128ae579182015b828111156128ad578251825591602001919060010190612892565b5b5090506128bb91906128bf565b5090565b5b808211156128d85760008160009055506001016128c0565b5090565b60006128ef6128ea84613665565b613640565b9050808382526020820190508285602086028201111561291257612911613b07565b5b60005b85811015612942578161292888826129d0565b845260208401935060208301925050600181019050612915565b5050509392505050565b600061295f61295a84613691565b613640565b90508281526020810184848401111561297b5761297a613b0c565b5b6129868482856138f8565b509392505050565b60006129a161299c846136c2565b613640565b9050828152602081018484840111156129bd576129bc613b0c565b5b6129c88482856138f8565b509392505050565b6000813590506129df816140a3565b92915050565b600082601f8301126129fa576129f9613b02565b5b8135612a0a8482602086016128dc565b91505092915050565b600081359050612a22816140ba565b92915050565b600081359050612a37816140d1565b92915050565b600081519050612a4c816140d1565b92915050565b600082601f830112612a6757612a66613b02565b5b8135612a7784826020860161294c565b91505092915050565b600082601f830112612a9557612a94613b02565b5b8135612aa584826020860161298e565b91505092915050565b600081359050612abd816140e8565b92915050565b600081519050612ad2816140e8565b92915050565b600060208284031215612aee57612aed613b16565b5b6000612afc848285016129d0565b91505092915050565b60008060408385031215612b1c57612b1b613b16565b5b6000612b2a858286016129d0565b9250506020612b3b858286016129d0565b9150509250929050565b600080600060608486031215612b5e57612b5d613b16565b5b6000612b6c868287016129d0565b9350506020612b7d868287016129d0565b9250506040612b8e86828701612aae565b9150509250925092565b60008060008060808587031215612bb257612bb1613b16565b5b6000612bc0878288016129d0565b9450506020612bd1878288016129d0565b9350506040612be287828801612aae565b925050606085013567ffffffffffffffff811115612c0357612c02613b11565b5b612c0f87828801612a52565b91505092959194509250565b60008060408385031215612c3257612c31613b16565b5b6000612c40858286016129d0565b9250506020612c5185828601612a13565b9150509250929050565b60008060408385031215612c7257612c71613b16565b5b6000612c80858286016129d0565b9250506020612c9185828601612aae565b9150509250929050565b600060208284031215612cb157612cb0613b16565b5b600082013567ffffffffffffffff811115612ccf57612cce613b11565b5b612cdb848285016129e5565b91505092915050565b600060208284031215612cfa57612cf9613b16565b5b6000612d0884828501612a28565b91505092915050565b600060208284031215612d2757612d26613b16565b5b6000612d3584828501612a3d565b91505092915050565b600060208284031215612d5457612d53613b16565b5b600082013567ffffffffffffffff811115612d7257612d71613b11565b5b612d7e84828501612a80565b91505092915050565b600060208284031215612d9d57612d9c613b16565b5b6000612dab84828501612aae565b91505092915050565b600060208284031215612dca57612dc9613b16565b5b6000612dd884828501612ac3565b91505092915050565b6000612ded838361323d565b60208301905092915050565b612e0281613884565b82525050565b6000612e1382613703565b612e1d8185613731565b9350612e28836136f3565b8060005b83811015612e59578151612e408882612de1565b9750612e4b83613724565b925050600181019050612e2c565b5085935050505092915050565b612e6f81613896565b82525050565b6000612e808261370e565b612e8a8185613742565b9350612e9a818560208601613907565b612ea381613b1b565b840191505092915050565b6000612eb982613719565b612ec38185613753565b9350612ed3818560208601613907565b612edc81613b1b565b840191505092915050565b6000612ef282613719565b612efc8185613764565b9350612f0c818560208601613907565b80840191505092915050565b6000612f25601483613753565b9150612f3082613b2c565b602082019050919050565b6000612f48603283613753565b9150612f5382613b55565b604082019050919050565b6000612f6b602683613753565b9150612f7682613ba4565b604082019050919050565b6000612f8e601c83613753565b9150612f9982613bf3565b602082019050919050565b6000612fb1601683613753565b9150612fbc82613c1c565b602082019050919050565b6000612fd4602483613753565b9150612fdf82613c45565b604082019050919050565b6000612ff7601983613753565b915061300282613c94565b602082019050919050565b600061301a602c83613753565b915061302582613cbd565b604082019050919050565b600061303d601083613753565b915061304882613d0c565b602082019050919050565b6000613060603883613753565b915061306b82613d35565b604082019050919050565b6000613083602a83613753565b915061308e82613d84565b604082019050919050565b60006130a6602983613753565b91506130b182613dd3565b604082019050919050565b60006130c9601283613753565b91506130d482613e22565b602082019050919050565b60006130ec602083613753565b91506130f782613e4b565b602082019050919050565b600061310f602c83613753565b915061311a82613e74565b604082019050919050565b6000613132602083613753565b915061313d82613ec3565b602082019050919050565b6000613155602983613753565b915061316082613eec565b604082019050919050565b6000613178602f83613753565b915061318382613f3b565b604082019050919050565b600061319b601383613753565b91506131a682613f8a565b602082019050919050565b60006131be602183613753565b91506131c982613fb3565b604082019050919050565b60006131e1603183613753565b91506131ec82614002565b604082019050919050565b6000613204601283613753565b915061320f82614051565b602082019050919050565b6000613227601683613753565b91506132328261407a565b602082019050919050565b613246816138ee565b82525050565b613255816138ee565b82525050565b60006132678285612ee7565b91506132738284612ee7565b91508190509392505050565b60006020820190506132946000830184612df9565b92915050565b60006080820190506132af6000830187612df9565b6132bc6020830186612df9565b6132c9604083018561324c565b81810360608301526132db8184612e75565b905095945050505050565b600060208201905081810360008301526133008184612e08565b905092915050565b600060208201905061331d6000830184612e66565b92915050565b6000602082019050818103600083015261333d8184612eae565b905092915050565b6000602082019050818103600083015261335e81612f18565b9050919050565b6000602082019050818103600083015261337e81612f3b565b9050919050565b6000602082019050818103600083015261339e81612f5e565b9050919050565b600060208201905081810360008301526133be81612f81565b9050919050565b600060208201905081810360008301526133de81612fa4565b9050919050565b600060208201905081810360008301526133fe81612fc7565b9050919050565b6000602082019050818103600083015261341e81612fea565b9050919050565b6000602082019050818103600083015261343e8161300d565b9050919050565b6000602082019050818103600083015261345e81613030565b9050919050565b6000602082019050818103600083015261347e81613053565b9050919050565b6000602082019050818103600083015261349e81613076565b9050919050565b600060208201905081810360008301526134be81613099565b9050919050565b600060208201905081810360008301526134de816130bc565b9050919050565b600060208201905081810360008301526134fe816130df565b9050919050565b6000602082019050818103600083015261351e81613102565b9050919050565b6000602082019050818103600083015261353e81613125565b9050919050565b6000602082019050818103600083015261355e81613148565b9050919050565b6000602082019050818103600083015261357e8161316b565b9050919050565b6000602082019050818103600083015261359e8161318e565b9050919050565b600060208201905081810360008301526135be816131b1565b9050919050565b600060208201905081810360008301526135de816131d4565b9050919050565b600060208201905081810360008301526135fe816131f7565b9050919050565b6000602082019050818103600083015261361e8161321a565b9050919050565b600060208201905061363a600083018461324c565b92915050565b600061364a61365b565b9050613656828261396c565b919050565b6000604051905090565b600067ffffffffffffffff8211156136805761367f613ad3565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136ac576136ab613ad3565b5b6136b582613b1b565b9050602081019050919050565b600067ffffffffffffffff8211156136dd576136dc613ad3565b5b6136e682613b1b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061377a826138ee565b9150613785836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137ba576137b9613a17565b5b828201905092915050565b60006137d0826138ee565b91506137db836138ee565b9250826137eb576137ea613a46565b5b828204905092915050565b6000613801826138ee565b915061380c836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561384557613844613a17565b5b828202905092915050565b600061385b826138ee565b9150613866836138ee565b92508282101561387957613878613a17565b5b828203905092915050565b600061388f826138ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561392557808201518184015260208101905061390a565b83811115613934576000848401525b50505050565b6000600282049050600182168061395257607f821691505b6020821081141561396657613965613a75565b5b50919050565b61397582613b1b565b810181811067ffffffffffffffff8211171561399457613993613ad3565b5b80604052505050565b60006139a8826138ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139db576139da613a17565b5b600182019050919050565b60006139f1826138ee565b91506139fc836138ee565b925082613a0c57613a0b613a46565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752068617665206e6f206368616e6365205b315d00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f596f752068617665206e6f206368616e6365205b325d00000000000000000000600082015250565b6140ac81613884565b81146140b757600080fd5b50565b6140c381613896565b81146140ce57600080fd5b50565b6140da816138a2565b81146140e557600080fd5b50565b6140f1816138ee565b81146140fc57600080fd5b5056fea264697066735822122005e8da7ee2e918f1e29c5dc41bfd607a07862081976b6a97aeb76b7e4063d59164736f6c63430008060033

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.