ETH Price: $2,977.63 (+0.23%)
Gas: 7 Gwei

Token

PunkedDoods (Dood)
 

Overview

Max Total Supply

5,000 Dood

Holders

1,846

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
c4t.eth
Balance
3 Dood
0x560805d557eba6a00e5618e019a216efa47775d9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PunkedDoods

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : PunkedDoods.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./ERC721EnumerableB.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract PunkedDoods is ERC721EnumerableB, Ownable {
    using Strings for uint256;

    string public PROVENANCE = "";
    uint256 public TOTAL_SUPPLY = 5000;

    bool public is_locked = true;

    uint256 public price = 0.015 ether;

    string private _baseTokenURI = "";
    string private _tokenURISuffix = "";

    constructor() ERC721B("PunkedDoods", "Dood") {}

    //external
    fallback() external payable {}

    receive() external payable {}

    function mint(uint256 quantity) external payable {
        uint256 balance = totalSupply();
        require(!is_locked, "Sale is locked");
        require(balance + quantity <= TOTAL_SUPPLY, "Exceeds supply");
        require(msg.value >= price * quantity, "Ether sent is not correct");

        for (uint256 i; i < quantity; ++i) {
            _safeMint(msg.sender, balance + i);
        }
    }

    //onlyOwner
    function gift(uint256 quantity, address recipient) external onlyOwner {
        uint256 balance = totalSupply();
        require(balance + quantity <= TOTAL_SUPPLY, "Exceeds supply");

        for (uint256 i; i < quantity; ++i) {
            _safeMint(recipient, balance + i);
        }
    }

    function setLocked(bool is_locked_) external onlyOwner {
        is_locked = is_locked_;
    }

    function setMaxSupply(uint256 maxSupply) external onlyOwner {
        require(
            maxSupply > totalSupply(),
            "Specified supply is lower than current balance"
        );
        TOTAL_SUPPLY = maxSupply;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function setProvenance(string memory provenanceHash) external onlyOwner {
        PROVENANCE = provenanceHash;
    }

    function withdraw() external onlyOwner {
        require(address(this).balance >= 0, "No funds available");
        Address.sendValue(payable(owner()), address(this).balance);
    }

    //metadata
    function setBaseURI(string memory baseURI, string memory suffix)
        external
        onlyOwner
    {
        _baseTokenURI = baseURI;
        _tokenURISuffix = suffix;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            string(
                abi.encodePacked(
                    _baseTokenURI,
                    tokenId.toString(),
                    _tokenURISuffix
                )
            );
    }
}

File 2 of 13 : ERC721EnumerableB.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

import "./ERC721B.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721EnumerableB is ERC721B, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721B)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256 tokenId)
    {
        require(
            index < ERC721B.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }

        require(false, "ERC721Enumerable: owner index out of bounds");
    }

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

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

File 3 of 13 : 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 4 of 13 : 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 5 of 13 : ERC721B.sol
// SPDX-License-Identifier: BSD-3-Clause

pragma solidity ^0.8.0;

/********************
* @author: Squeebo *
********************/

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

abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    // 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");

        uint count;
        for( uint i = 0; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }

        return count;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721B.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 tokenId < _owners.length && _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 = ERC721B.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);
        _owners.push(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 = ERC721B.ownerOf(tokenId);

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

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

        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(ERC721B.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721B.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.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 6 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : 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 12 of 13 : 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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"is_locked_","type":"bool"}],"name":"setLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180602001604052806000815250600690805190602001906200002b9291906200024a565b506113886007556001600860006101000a81548160ff02191690831515021790555066354a6ba7a1800060095560405180602001604052806000815250600a90805190602001906200007f9291906200024a565b5060405180602001604052806000815250600b9080519060200190620000a79291906200024a565b50348015620000b557600080fd5b506040518060400160405280600b81526020017f50756e6b6564446f6f64730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f446f6f640000000000000000000000000000000000000000000000000000000081525081600090805190602001906200013a9291906200024a565b508060019080519060200190620001539291906200024a565b505050620001766200016a6200017c60201b60201c565b6200018460201b60201c565b6200035f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025890620002fa565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b600060028204905060018216806200031357607f821691505b602082108114156200032a576200032962000330565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6140f3806200036f6000396000f3fe6080604052600436106101dc5760003560e01c806370a0823111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461068f578063e985e9c5146106cc578063f2fde38b14610709578063ffe630b514610732576101e3565b8063a0712d68146105f6578063a22cb46514610612578063a63c500f1461063b578063b88d4fde14610666576101e3565b8063902d55a5116100d1578063902d55a51461054c57806391b7f5ed1461057757806395d89b41146105a0578063a035b1fe146105cb576101e3565b806370a08231146104a4578063715018a6146104e157806383a076be146104f85780638da5cb5b14610521576101e3565b80632f745c591161017a5780636352211e116101495780636352211e146103ea5780636373a6b1146104275780636790a9de146104525780636f8b44b01461047b576101e3565b80632f745c59146103305780633ccfd60b1461036d57806342842e0e146103845780634f6ccce7146103ad576101e3565b8063095ea7b3116101b6578063095ea7b31461028a57806318160ddd146102b3578063211e28b6146102de57806323b872dd14610307576101e3565b806301ffc9a7146101e557806306fdde0314610222578063081812fc1461024d576101e3565b366101e357005b005b3480156101f157600080fd5b5061020c60048036038101906102079190612b38565b61075b565b6040516102199190613226565b60405180910390f35b34801561022e57600080fd5b506102376107d5565b6040516102449190613241565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612c37565b610867565b60405161028191906131bf565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612ad3565b6108ec565b005b3480156102bf57600080fd5b506102c8610a04565b6040516102d59190613583565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612b0f565b610a11565b005b34801561031357600080fd5b5061032e600480360381019061032991906129cd565b610aaa565b005b34801561033c57600080fd5b5061035760048036038101906103529190612ad3565b610b0a565b6040516103649190613583565b60405180910390f35b34801561037957600080fd5b50610382610c79565b005b34801561039057600080fd5b506103ab60048036038101906103a691906129cd565b610d4c565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612c37565b610d6c565b6040516103e19190613583565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190612c37565b610dbf565b60405161041e91906131bf565b60405180910390f35b34801561043357600080fd5b5061043c610ea2565b6040516104499190613241565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612bcb565b610f30565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612c37565b610fde565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190612968565b6110ad565b6040516104d89190613583565b60405180910390f35b3480156104ed57600080fd5b506104f66111f3565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612c60565b61127b565b005b34801561052d57600080fd5b5061053661138a565b60405161054391906131bf565b60405180910390f35b34801561055857600080fd5b506105616113b4565b60405161056e9190613583565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190612c37565b6113ba565b005b3480156105ac57600080fd5b506105b5611440565b6040516105c29190613241565b60405180910390f35b3480156105d757600080fd5b506105e06114d2565b6040516105ed9190613583565b60405180910390f35b610610600480360381019061060b9190612c37565b6114d8565b005b34801561061e57600080fd5b5061063960048036038101906106349190612a97565b61160a565b005b34801561064757600080fd5b5061065061178b565b60405161065d9190613226565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612a1c565b61179e565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612c37565b611800565b6040516106c39190613241565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612991565b61187f565b6040516107009190613226565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612968565b611913565b005b34801561073e57600080fd5b5061075960048036038101906107549190612b8a565b611a0b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ce57506107cd82611aa1565b5b9050919050565b6060600080546107e490613853565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613853565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611b83565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613463565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610dbf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f906134e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611c31565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611c31565b61187f565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec906133e3565b60405180910390fd5b6109ff8383611c39565b505050565b6000600280549050905090565b610a19611c31565b73ffffffffffffffffffffffffffffffffffffffff16610a3761138a565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490613483565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b610abb610ab5611c31565b82611cf2565b610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190613523565b60405180910390fd5b610b05838383611dd0565b505050565b6000610b15836110ad565b8210610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906132a3565b60405180910390fd5b6000805b600280549050811015610c2f5760028181548110610ba1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c1e5783821415610c11578092505050610c73565b81610c1b906138b6565b91505b80610c28906138b6565b9050610b5a565b506000610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906132a3565b60405180910390fd5b505b92915050565b610c81611c31565b73ffffffffffffffffffffffffffffffffffffffff16610c9f61138a565b73ffffffffffffffffffffffffffffffffffffffff1614610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613483565b60405180910390fd5b6000471015610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613283565b60405180910390fd5b610d4a610d4461138a565b47611faf565b565b610d678383836040518060200160405280600081525061179e565b505050565b6000610d76610a04565b8210610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90613543565b60405180910390fd5b819050919050565b60008060028381548110610dfc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613423565b60405180910390fd5b80915050919050565b60068054610eaf90613853565b80601f0160208091040260200160405190810160405280929190818152602001828054610edb90613853565b8015610f285780601f10610efd57610100808354040283529160200191610f28565b820191906000526020600020905b815481529060010190602001808311610f0b57829003601f168201915b505050505081565b610f38611c31565b73ffffffffffffffffffffffffffffffffffffffff16610f5661138a565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390613483565b60405180910390fd5b81600a9080519060200190610fc292919061278c565b5080600b9080519060200190610fd992919061278c565b505050565b610fe6611c31565b73ffffffffffffffffffffffffffffffffffffffff1661100461138a565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613483565b60405180910390fd5b611062610a04565b81116110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613323565b60405180910390fd5b8060078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613403565b60405180910390fd5b600080600090505b6002805490508110156111e9576002818154811061116d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111d857816111d5906138b6565b91505b806111e2906138b6565b9050611126565b5080915050919050565b6111fb611c31565b73ffffffffffffffffffffffffffffffffffffffff1661121961138a565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690613483565b60405180910390fd5b61127960006120a3565b565b611283611c31565b73ffffffffffffffffffffffffffffffffffffffff166112a161138a565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90613483565b60405180910390fd5b6000611301610a04565b905060075483826113129190613688565b1115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613263565b60405180910390fd5b60005b838110156113845761137383828461136e9190613688565b612169565b8061137d906138b6565b9050611356565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b6113c2611c31565b73ffffffffffffffffffffffffffffffffffffffff166113e061138a565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90613483565b60405180910390fd5b8060098190555050565b60606001805461144f90613853565b80601f016020809104026020016040519081016040528092919081815260200182805461147b90613853565b80156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b5050505050905090565b60095481565b60006114e2610a04565b9050600860009054906101000a900460ff1615611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613563565b60405180910390fd5b60075482826115439190613688565b1115611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90613263565b60405180910390fd5b81600954611592919061370f565b3410156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613503565b60405180910390fd5b60005b82811015611605576115f43382846115ef9190613688565b612169565b806115fe906138b6565b90506115d7565b505050565b611612611c31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613363565b60405180910390fd5b806004600061168d611c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173a611c31565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161177f9190613226565b60405180910390a35050565b600860009054906101000a900460ff1681565b6117af6117a9611c31565b83611cf2565b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613523565b60405180910390fd5b6117fa84848484612187565b50505050565b606061180b82611b83565b61184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906134c3565b60405180910390fd5b600a611855836121e3565b600b60405160200161186993929190613179565b6040516020818303038152906040529050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191b611c31565b73ffffffffffffffffffffffffffffffffffffffff1661193961138a565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906132e3565b60405180910390fd5b611a08816120a3565b50565b611a13611c31565b73ffffffffffffffffffffffffffffffffffffffff16611a3161138a565b73ffffffffffffffffffffffffffffffffffffffff1614611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90613483565b60405180910390fd5b8060069080519060200190611a9d92919061278c565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b7c5750611b7b82612390565b5b9050919050565b600060028054905082108015611c2a5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611be6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cac83610dbf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cfd82611b83565b611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d33906133c3565b60405180910390fd5b6000611d4783610dbf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611db657508373ffffffffffffffffffffffffffffffffffffffff16611d9e84610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dc75750611dc6818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df082610dbf565b73ffffffffffffffffffffffffffffffffffffffff1614611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906134a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613343565b60405180910390fd5b611ec18383836123fa565b611ecc600082611c39565b8160028281548110611f07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe9906133a3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612018906131aa565b60006040518083038185875af1925050503d8060008114612055576040519150601f19603f3d011682016040523d82523d6000602084013e61205a565b606091505b505090508061209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613383565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121838282604051806020016040528060008152506123ff565b5050565b612192848484611dd0565b61219e8484848461245a565b6121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d4906132c3565b60405180910390fd5b50505050565b6060600082141561222b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061238b565b600082905060005b6000821461225d578080612246906138b6565b915050600a8261225691906136de565b9150612233565b60008167ffffffffffffffff81111561229f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122d15781602001600182028036833780820191505090505b5090505b60008514612384576001826122ea9190613769565b9150600a856122f991906138ff565b60306123059190613688565b60f81b818381518110612341577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237d91906136de565b94506122d5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b61240983836125f1565b612416600084848461245a565b612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c906132c3565b60405180910390fd5b505050565b600061247b8473ffffffffffffffffffffffffffffffffffffffff16612779565b156125e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a4611c31565b8786866040518563ffffffff1660e01b81526004016124c694939291906131da565b602060405180830381600087803b1580156124e057600080fd5b505af192505050801561251157506040513d601f19601f8201168201806040525081019061250e9190612b61565b60015b612594573d8060008114612541576040519150601f19603f3d011682016040523d82523d6000602084013e612546565b606091505b5060008151141561258c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612583906132c3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125e9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890613443565b60405180910390fd5b61266a81611b83565b156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190613303565b60405180910390fd5b6126b6600083836123fa565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461279890613853565b90600052602060002090601f0160209004810192826127ba5760008555612801565b82601f106127d357805160ff1916838001178555612801565b82800160010185558215612801579182015b828111156128005782518255916020019190600101906127e5565b5b50905061280e9190612812565b5090565b5b8082111561282b576000816000905550600101612813565b5090565b600061284261283d846135c3565b61359e565b90508281526020810184848401111561285a57600080fd5b612865848285613811565b509392505050565b600061288061287b846135f4565b61359e565b90508281526020810184848401111561289857600080fd5b6128a3848285613811565b509392505050565b6000813590506128ba81614061565b92915050565b6000813590506128cf81614078565b92915050565b6000813590506128e48161408f565b92915050565b6000815190506128f98161408f565b92915050565b600082601f83011261291057600080fd5b813561292084826020860161282f565b91505092915050565b600082601f83011261293a57600080fd5b813561294a84826020860161286d565b91505092915050565b600081359050612962816140a6565b92915050565b60006020828403121561297a57600080fd5b6000612988848285016128ab565b91505092915050565b600080604083850312156129a457600080fd5b60006129b2858286016128ab565b92505060206129c3858286016128ab565b9150509250929050565b6000806000606084860312156129e257600080fd5b60006129f0868287016128ab565b9350506020612a01868287016128ab565b9250506040612a1286828701612953565b9150509250925092565b60008060008060808587031215612a3257600080fd5b6000612a40878288016128ab565b9450506020612a51878288016128ab565b9350506040612a6287828801612953565b925050606085013567ffffffffffffffff811115612a7f57600080fd5b612a8b878288016128ff565b91505092959194509250565b60008060408385031215612aaa57600080fd5b6000612ab8858286016128ab565b9250506020612ac9858286016128c0565b9150509250929050565b60008060408385031215612ae657600080fd5b6000612af4858286016128ab565b9250506020612b0585828601612953565b9150509250929050565b600060208284031215612b2157600080fd5b6000612b2f848285016128c0565b91505092915050565b600060208284031215612b4a57600080fd5b6000612b58848285016128d5565b91505092915050565b600060208284031215612b7357600080fd5b6000612b81848285016128ea565b91505092915050565b600060208284031215612b9c57600080fd5b600082013567ffffffffffffffff811115612bb657600080fd5b612bc284828501612929565b91505092915050565b60008060408385031215612bde57600080fd5b600083013567ffffffffffffffff811115612bf857600080fd5b612c0485828601612929565b925050602083013567ffffffffffffffff811115612c2157600080fd5b612c2d85828601612929565b9150509250929050565b600060208284031215612c4957600080fd5b6000612c5784828501612953565b91505092915050565b60008060408385031215612c7357600080fd5b6000612c8185828601612953565b9250506020612c92858286016128ab565b9150509250929050565b612ca58161379d565b82525050565b612cb4816137af565b82525050565b6000612cc58261363a565b612ccf8185613650565b9350612cdf818560208601613820565b612ce8816139ec565b840191505092915050565b6000612cfe82613645565b612d08818561366c565b9350612d18818560208601613820565b612d21816139ec565b840191505092915050565b6000612d3782613645565b612d41818561367d565b9350612d51818560208601613820565b80840191505092915050565b60008154612d6a81613853565b612d74818661367d565b94506001821660008114612d8f5760018114612da057612dd3565b60ff19831686528186019350612dd3565b612da985613625565b60005b83811015612dcb57815481890152600182019150602081019050612dac565b838801955050505b50505092915050565b6000612de9600e8361366c565b9150612df4826139fd565b602082019050919050565b6000612e0c60128361366c565b9150612e1782613a26565b602082019050919050565b6000612e2f602b8361366c565b9150612e3a82613a4f565b604082019050919050565b6000612e5260328361366c565b9150612e5d82613a9e565b604082019050919050565b6000612e7560268361366c565b9150612e8082613aed565b604082019050919050565b6000612e98601c8361366c565b9150612ea382613b3c565b602082019050919050565b6000612ebb602e8361366c565b9150612ec682613b65565b604082019050919050565b6000612ede60248361366c565b9150612ee982613bb4565b604082019050919050565b6000612f0160198361366c565b9150612f0c82613c03565b602082019050919050565b6000612f24603a8361366c565b9150612f2f82613c2c565b604082019050919050565b6000612f47601d8361366c565b9150612f5282613c7b565b602082019050919050565b6000612f6a602c8361366c565b9150612f7582613ca4565b604082019050919050565b6000612f8d60388361366c565b9150612f9882613cf3565b604082019050919050565b6000612fb0602a8361366c565b9150612fbb82613d42565b604082019050919050565b6000612fd360298361366c565b9150612fde82613d91565b604082019050919050565b6000612ff660208361366c565b915061300182613de0565b602082019050919050565b6000613019602c8361366c565b915061302482613e09565b604082019050919050565b600061303c60208361366c565b915061304782613e58565b602082019050919050565b600061305f60298361366c565b915061306a82613e81565b604082019050919050565b6000613082602f8361366c565b915061308d82613ed0565b604082019050919050565b60006130a560218361366c565b91506130b082613f1f565b604082019050919050565b60006130c860198361366c565b91506130d382613f6e565b602082019050919050565b60006130eb600083613661565b91506130f682613f97565b600082019050919050565b600061310e60318361366c565b915061311982613f9a565b604082019050919050565b6000613131602c8361366c565b915061313c82613fe9565b604082019050919050565b6000613154600e8361366c565b915061315f82614038565b602082019050919050565b61317381613807565b82525050565b60006131858286612d5d565b91506131918285612d2c565b915061319d8284612d5d565b9150819050949350505050565b60006131b5826130de565b9150819050919050565b60006020820190506131d46000830184612c9c565b92915050565b60006080820190506131ef6000830187612c9c565b6131fc6020830186612c9c565b613209604083018561316a565b818103606083015261321b8184612cba565b905095945050505050565b600060208201905061323b6000830184612cab565b92915050565b6000602082019050818103600083015261325b8184612cf3565b905092915050565b6000602082019050818103600083015261327c81612ddc565b9050919050565b6000602082019050818103600083015261329c81612dff565b9050919050565b600060208201905081810360008301526132bc81612e22565b9050919050565b600060208201905081810360008301526132dc81612e45565b9050919050565b600060208201905081810360008301526132fc81612e68565b9050919050565b6000602082019050818103600083015261331c81612e8b565b9050919050565b6000602082019050818103600083015261333c81612eae565b9050919050565b6000602082019050818103600083015261335c81612ed1565b9050919050565b6000602082019050818103600083015261337c81612ef4565b9050919050565b6000602082019050818103600083015261339c81612f17565b9050919050565b600060208201905081810360008301526133bc81612f3a565b9050919050565b600060208201905081810360008301526133dc81612f5d565b9050919050565b600060208201905081810360008301526133fc81612f80565b9050919050565b6000602082019050818103600083015261341c81612fa3565b9050919050565b6000602082019050818103600083015261343c81612fc6565b9050919050565b6000602082019050818103600083015261345c81612fe9565b9050919050565b6000602082019050818103600083015261347c8161300c565b9050919050565b6000602082019050818103600083015261349c8161302f565b9050919050565b600060208201905081810360008301526134bc81613052565b9050919050565b600060208201905081810360008301526134dc81613075565b9050919050565b600060208201905081810360008301526134fc81613098565b9050919050565b6000602082019050818103600083015261351c816130bb565b9050919050565b6000602082019050818103600083015261353c81613101565b9050919050565b6000602082019050818103600083015261355c81613124565b9050919050565b6000602082019050818103600083015261357c81613147565b9050919050565b6000602082019050613598600083018461316a565b92915050565b60006135a86135b9565b90506135b48282613885565b919050565b6000604051905090565b600067ffffffffffffffff8211156135de576135dd6139bd565b5b6135e7826139ec565b9050602081019050919050565b600067ffffffffffffffff82111561360f5761360e6139bd565b5b613618826139ec565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061369382613807565b915061369e83613807565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136d3576136d2613930565b5b828201905092915050565b60006136e982613807565b91506136f483613807565b9250826137045761370361395f565b5b828204905092915050565b600061371a82613807565b915061372583613807565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561375e5761375d613930565b5b828202905092915050565b600061377482613807565b915061377f83613807565b92508282101561379257613791613930565b5b828203905092915050565b60006137a8826137e7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561383e578082015181840152602081019050613823565b8381111561384d576000848401525b50505050565b6000600282049050600182168061386b57607f821691505b6020821081141561387f5761387e61398e565b5b50919050565b61388e826139ec565b810181811067ffffffffffffffff821117156138ad576138ac6139bd565b5b80604052505050565b60006138c182613807565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138f4576138f3613930565b5b600182019050919050565b600061390a82613807565b915061391583613807565b9250826139255761392461395f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206c6f636b6564000000000000000000000000000000000000600082015250565b61406a8161379d565b811461407557600080fd5b50565b614081816137af565b811461408c57600080fd5b50565b614098816137bb565b81146140a357600080fd5b50565b6140af81613807565b81146140ba57600080fd5b5056fea26469706673582212201ff4caaa62bf046242dd335f28216eaffc27e7ff4709759e3371c59a026fd73f64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c806370a0823111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461068f578063e985e9c5146106cc578063f2fde38b14610709578063ffe630b514610732576101e3565b8063a0712d68146105f6578063a22cb46514610612578063a63c500f1461063b578063b88d4fde14610666576101e3565b8063902d55a5116100d1578063902d55a51461054c57806391b7f5ed1461057757806395d89b41146105a0578063a035b1fe146105cb576101e3565b806370a08231146104a4578063715018a6146104e157806383a076be146104f85780638da5cb5b14610521576101e3565b80632f745c591161017a5780636352211e116101495780636352211e146103ea5780636373a6b1146104275780636790a9de146104525780636f8b44b01461047b576101e3565b80632f745c59146103305780633ccfd60b1461036d57806342842e0e146103845780634f6ccce7146103ad576101e3565b8063095ea7b3116101b6578063095ea7b31461028a57806318160ddd146102b3578063211e28b6146102de57806323b872dd14610307576101e3565b806301ffc9a7146101e557806306fdde0314610222578063081812fc1461024d576101e3565b366101e357005b005b3480156101f157600080fd5b5061020c60048036038101906102079190612b38565b61075b565b6040516102199190613226565b60405180910390f35b34801561022e57600080fd5b506102376107d5565b6040516102449190613241565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612c37565b610867565b60405161028191906131bf565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612ad3565b6108ec565b005b3480156102bf57600080fd5b506102c8610a04565b6040516102d59190613583565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612b0f565b610a11565b005b34801561031357600080fd5b5061032e600480360381019061032991906129cd565b610aaa565b005b34801561033c57600080fd5b5061035760048036038101906103529190612ad3565b610b0a565b6040516103649190613583565b60405180910390f35b34801561037957600080fd5b50610382610c79565b005b34801561039057600080fd5b506103ab60048036038101906103a691906129cd565b610d4c565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612c37565b610d6c565b6040516103e19190613583565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190612c37565b610dbf565b60405161041e91906131bf565b60405180910390f35b34801561043357600080fd5b5061043c610ea2565b6040516104499190613241565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612bcb565b610f30565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612c37565b610fde565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190612968565b6110ad565b6040516104d89190613583565b60405180910390f35b3480156104ed57600080fd5b506104f66111f3565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612c60565b61127b565b005b34801561052d57600080fd5b5061053661138a565b60405161054391906131bf565b60405180910390f35b34801561055857600080fd5b506105616113b4565b60405161056e9190613583565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190612c37565b6113ba565b005b3480156105ac57600080fd5b506105b5611440565b6040516105c29190613241565b60405180910390f35b3480156105d757600080fd5b506105e06114d2565b6040516105ed9190613583565b60405180910390f35b610610600480360381019061060b9190612c37565b6114d8565b005b34801561061e57600080fd5b5061063960048036038101906106349190612a97565b61160a565b005b34801561064757600080fd5b5061065061178b565b60405161065d9190613226565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612a1c565b61179e565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612c37565b611800565b6040516106c39190613241565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612991565b61187f565b6040516107009190613226565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612968565b611913565b005b34801561073e57600080fd5b5061075960048036038101906107549190612b8a565b611a0b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ce57506107cd82611aa1565b5b9050919050565b6060600080546107e490613853565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613853565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611b83565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613463565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610dbf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f906134e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611c31565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611c31565b61187f565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec906133e3565b60405180910390fd5b6109ff8383611c39565b505050565b6000600280549050905090565b610a19611c31565b73ffffffffffffffffffffffffffffffffffffffff16610a3761138a565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490613483565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b610abb610ab5611c31565b82611cf2565b610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190613523565b60405180910390fd5b610b05838383611dd0565b505050565b6000610b15836110ad565b8210610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906132a3565b60405180910390fd5b6000805b600280549050811015610c2f5760028181548110610ba1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c1e5783821415610c11578092505050610c73565b81610c1b906138b6565b91505b80610c28906138b6565b9050610b5a565b506000610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906132a3565b60405180910390fd5b505b92915050565b610c81611c31565b73ffffffffffffffffffffffffffffffffffffffff16610c9f61138a565b73ffffffffffffffffffffffffffffffffffffffff1614610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613483565b60405180910390fd5b6000471015610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613283565b60405180910390fd5b610d4a610d4461138a565b47611faf565b565b610d678383836040518060200160405280600081525061179e565b505050565b6000610d76610a04565b8210610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90613543565b60405180910390fd5b819050919050565b60008060028381548110610dfc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613423565b60405180910390fd5b80915050919050565b60068054610eaf90613853565b80601f0160208091040260200160405190810160405280929190818152602001828054610edb90613853565b8015610f285780601f10610efd57610100808354040283529160200191610f28565b820191906000526020600020905b815481529060010190602001808311610f0b57829003601f168201915b505050505081565b610f38611c31565b73ffffffffffffffffffffffffffffffffffffffff16610f5661138a565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390613483565b60405180910390fd5b81600a9080519060200190610fc292919061278c565b5080600b9080519060200190610fd992919061278c565b505050565b610fe6611c31565b73ffffffffffffffffffffffffffffffffffffffff1661100461138a565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613483565b60405180910390fd5b611062610a04565b81116110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613323565b60405180910390fd5b8060078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613403565b60405180910390fd5b600080600090505b6002805490508110156111e9576002818154811061116d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111d857816111d5906138b6565b91505b806111e2906138b6565b9050611126565b5080915050919050565b6111fb611c31565b73ffffffffffffffffffffffffffffffffffffffff1661121961138a565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690613483565b60405180910390fd5b61127960006120a3565b565b611283611c31565b73ffffffffffffffffffffffffffffffffffffffff166112a161138a565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90613483565b60405180910390fd5b6000611301610a04565b905060075483826113129190613688565b1115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613263565b60405180910390fd5b60005b838110156113845761137383828461136e9190613688565b612169565b8061137d906138b6565b9050611356565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b6113c2611c31565b73ffffffffffffffffffffffffffffffffffffffff166113e061138a565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90613483565b60405180910390fd5b8060098190555050565b60606001805461144f90613853565b80601f016020809104026020016040519081016040528092919081815260200182805461147b90613853565b80156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b5050505050905090565b60095481565b60006114e2610a04565b9050600860009054906101000a900460ff1615611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613563565b60405180910390fd5b60075482826115439190613688565b1115611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90613263565b60405180910390fd5b81600954611592919061370f565b3410156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613503565b60405180910390fd5b60005b82811015611605576115f43382846115ef9190613688565b612169565b806115fe906138b6565b90506115d7565b505050565b611612611c31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613363565b60405180910390fd5b806004600061168d611c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661173a611c31565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161177f9190613226565b60405180910390a35050565b600860009054906101000a900460ff1681565b6117af6117a9611c31565b83611cf2565b6117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613523565b60405180910390fd5b6117fa84848484612187565b50505050565b606061180b82611b83565b61184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906134c3565b60405180910390fd5b600a611855836121e3565b600b60405160200161186993929190613179565b6040516020818303038152906040529050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191b611c31565b73ffffffffffffffffffffffffffffffffffffffff1661193961138a565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906132e3565b60405180910390fd5b611a08816120a3565b50565b611a13611c31565b73ffffffffffffffffffffffffffffffffffffffff16611a3161138a565b73ffffffffffffffffffffffffffffffffffffffff1614611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90613483565b60405180910390fd5b8060069080519060200190611a9d92919061278c565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b6c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b7c5750611b7b82612390565b5b9050919050565b600060028054905082108015611c2a5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110611be6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cac83610dbf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cfd82611b83565b611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d33906133c3565b60405180910390fd5b6000611d4783610dbf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611db657508373ffffffffffffffffffffffffffffffffffffffff16611d9e84610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dc75750611dc6818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df082610dbf565b73ffffffffffffffffffffffffffffffffffffffff1614611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906134a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613343565b60405180910390fd5b611ec18383836123fa565b611ecc600082611c39565b8160028281548110611f07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe9906133a3565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612018906131aa565b60006040518083038185875af1925050503d8060008114612055576040519150601f19603f3d011682016040523d82523d6000602084013e61205a565b606091505b505090508061209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613383565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121838282604051806020016040528060008152506123ff565b5050565b612192848484611dd0565b61219e8484848461245a565b6121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d4906132c3565b60405180910390fd5b50505050565b6060600082141561222b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061238b565b600082905060005b6000821461225d578080612246906138b6565b915050600a8261225691906136de565b9150612233565b60008167ffffffffffffffff81111561229f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122d15781602001600182028036833780820191505090505b5090505b60008514612384576001826122ea9190613769565b9150600a856122f991906138ff565b60306123059190613688565b60f81b818381518110612341577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237d91906136de565b94506122d5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b61240983836125f1565b612416600084848461245a565b612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c906132c3565b60405180910390fd5b505050565b600061247b8473ffffffffffffffffffffffffffffffffffffffff16612779565b156125e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a4611c31565b8786866040518563ffffffff1660e01b81526004016124c694939291906131da565b602060405180830381600087803b1580156124e057600080fd5b505af192505050801561251157506040513d601f19601f8201168201806040525081019061250e9190612b61565b60015b612594573d8060008114612541576040519150601f19603f3d011682016040523d82523d6000602084013e612546565b606091505b5060008151141561258c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612583906132c3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125e9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890613443565b60405180910390fd5b61266a81611b83565b156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190613303565b60405180910390fd5b6126b6600083836123fa565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461279890613853565b90600052602060002090601f0160209004810192826127ba5760008555612801565b82601f106127d357805160ff1916838001178555612801565b82800160010185558215612801579182015b828111156128005782518255916020019190600101906127e5565b5b50905061280e9190612812565b5090565b5b8082111561282b576000816000905550600101612813565b5090565b600061284261283d846135c3565b61359e565b90508281526020810184848401111561285a57600080fd5b612865848285613811565b509392505050565b600061288061287b846135f4565b61359e565b90508281526020810184848401111561289857600080fd5b6128a3848285613811565b509392505050565b6000813590506128ba81614061565b92915050565b6000813590506128cf81614078565b92915050565b6000813590506128e48161408f565b92915050565b6000815190506128f98161408f565b92915050565b600082601f83011261291057600080fd5b813561292084826020860161282f565b91505092915050565b600082601f83011261293a57600080fd5b813561294a84826020860161286d565b91505092915050565b600081359050612962816140a6565b92915050565b60006020828403121561297a57600080fd5b6000612988848285016128ab565b91505092915050565b600080604083850312156129a457600080fd5b60006129b2858286016128ab565b92505060206129c3858286016128ab565b9150509250929050565b6000806000606084860312156129e257600080fd5b60006129f0868287016128ab565b9350506020612a01868287016128ab565b9250506040612a1286828701612953565b9150509250925092565b60008060008060808587031215612a3257600080fd5b6000612a40878288016128ab565b9450506020612a51878288016128ab565b9350506040612a6287828801612953565b925050606085013567ffffffffffffffff811115612a7f57600080fd5b612a8b878288016128ff565b91505092959194509250565b60008060408385031215612aaa57600080fd5b6000612ab8858286016128ab565b9250506020612ac9858286016128c0565b9150509250929050565b60008060408385031215612ae657600080fd5b6000612af4858286016128ab565b9250506020612b0585828601612953565b9150509250929050565b600060208284031215612b2157600080fd5b6000612b2f848285016128c0565b91505092915050565b600060208284031215612b4a57600080fd5b6000612b58848285016128d5565b91505092915050565b600060208284031215612b7357600080fd5b6000612b81848285016128ea565b91505092915050565b600060208284031215612b9c57600080fd5b600082013567ffffffffffffffff811115612bb657600080fd5b612bc284828501612929565b91505092915050565b60008060408385031215612bde57600080fd5b600083013567ffffffffffffffff811115612bf857600080fd5b612c0485828601612929565b925050602083013567ffffffffffffffff811115612c2157600080fd5b612c2d85828601612929565b9150509250929050565b600060208284031215612c4957600080fd5b6000612c5784828501612953565b91505092915050565b60008060408385031215612c7357600080fd5b6000612c8185828601612953565b9250506020612c92858286016128ab565b9150509250929050565b612ca58161379d565b82525050565b612cb4816137af565b82525050565b6000612cc58261363a565b612ccf8185613650565b9350612cdf818560208601613820565b612ce8816139ec565b840191505092915050565b6000612cfe82613645565b612d08818561366c565b9350612d18818560208601613820565b612d21816139ec565b840191505092915050565b6000612d3782613645565b612d41818561367d565b9350612d51818560208601613820565b80840191505092915050565b60008154612d6a81613853565b612d74818661367d565b94506001821660008114612d8f5760018114612da057612dd3565b60ff19831686528186019350612dd3565b612da985613625565b60005b83811015612dcb57815481890152600182019150602081019050612dac565b838801955050505b50505092915050565b6000612de9600e8361366c565b9150612df4826139fd565b602082019050919050565b6000612e0c60128361366c565b9150612e1782613a26565b602082019050919050565b6000612e2f602b8361366c565b9150612e3a82613a4f565b604082019050919050565b6000612e5260328361366c565b9150612e5d82613a9e565b604082019050919050565b6000612e7560268361366c565b9150612e8082613aed565b604082019050919050565b6000612e98601c8361366c565b9150612ea382613b3c565b602082019050919050565b6000612ebb602e8361366c565b9150612ec682613b65565b604082019050919050565b6000612ede60248361366c565b9150612ee982613bb4565b604082019050919050565b6000612f0160198361366c565b9150612f0c82613c03565b602082019050919050565b6000612f24603a8361366c565b9150612f2f82613c2c565b604082019050919050565b6000612f47601d8361366c565b9150612f5282613c7b565b602082019050919050565b6000612f6a602c8361366c565b9150612f7582613ca4565b604082019050919050565b6000612f8d60388361366c565b9150612f9882613cf3565b604082019050919050565b6000612fb0602a8361366c565b9150612fbb82613d42565b604082019050919050565b6000612fd360298361366c565b9150612fde82613d91565b604082019050919050565b6000612ff660208361366c565b915061300182613de0565b602082019050919050565b6000613019602c8361366c565b915061302482613e09565b604082019050919050565b600061303c60208361366c565b915061304782613e58565b602082019050919050565b600061305f60298361366c565b915061306a82613e81565b604082019050919050565b6000613082602f8361366c565b915061308d82613ed0565b604082019050919050565b60006130a560218361366c565b91506130b082613f1f565b604082019050919050565b60006130c860198361366c565b91506130d382613f6e565b602082019050919050565b60006130eb600083613661565b91506130f682613f97565b600082019050919050565b600061310e60318361366c565b915061311982613f9a565b604082019050919050565b6000613131602c8361366c565b915061313c82613fe9565b604082019050919050565b6000613154600e8361366c565b915061315f82614038565b602082019050919050565b61317381613807565b82525050565b60006131858286612d5d565b91506131918285612d2c565b915061319d8284612d5d565b9150819050949350505050565b60006131b5826130de565b9150819050919050565b60006020820190506131d46000830184612c9c565b92915050565b60006080820190506131ef6000830187612c9c565b6131fc6020830186612c9c565b613209604083018561316a565b818103606083015261321b8184612cba565b905095945050505050565b600060208201905061323b6000830184612cab565b92915050565b6000602082019050818103600083015261325b8184612cf3565b905092915050565b6000602082019050818103600083015261327c81612ddc565b9050919050565b6000602082019050818103600083015261329c81612dff565b9050919050565b600060208201905081810360008301526132bc81612e22565b9050919050565b600060208201905081810360008301526132dc81612e45565b9050919050565b600060208201905081810360008301526132fc81612e68565b9050919050565b6000602082019050818103600083015261331c81612e8b565b9050919050565b6000602082019050818103600083015261333c81612eae565b9050919050565b6000602082019050818103600083015261335c81612ed1565b9050919050565b6000602082019050818103600083015261337c81612ef4565b9050919050565b6000602082019050818103600083015261339c81612f17565b9050919050565b600060208201905081810360008301526133bc81612f3a565b9050919050565b600060208201905081810360008301526133dc81612f5d565b9050919050565b600060208201905081810360008301526133fc81612f80565b9050919050565b6000602082019050818103600083015261341c81612fa3565b9050919050565b6000602082019050818103600083015261343c81612fc6565b9050919050565b6000602082019050818103600083015261345c81612fe9565b9050919050565b6000602082019050818103600083015261347c8161300c565b9050919050565b6000602082019050818103600083015261349c8161302f565b9050919050565b600060208201905081810360008301526134bc81613052565b9050919050565b600060208201905081810360008301526134dc81613075565b9050919050565b600060208201905081810360008301526134fc81613098565b9050919050565b6000602082019050818103600083015261351c816130bb565b9050919050565b6000602082019050818103600083015261353c81613101565b9050919050565b6000602082019050818103600083015261355c81613124565b9050919050565b6000602082019050818103600083015261357c81613147565b9050919050565b6000602082019050613598600083018461316a565b92915050565b60006135a86135b9565b90506135b48282613885565b919050565b6000604051905090565b600067ffffffffffffffff8211156135de576135dd6139bd565b5b6135e7826139ec565b9050602081019050919050565b600067ffffffffffffffff82111561360f5761360e6139bd565b5b613618826139ec565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061369382613807565b915061369e83613807565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136d3576136d2613930565b5b828201905092915050565b60006136e982613807565b91506136f483613807565b9250826137045761370361395f565b5b828204905092915050565b600061371a82613807565b915061372583613807565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561375e5761375d613930565b5b828202905092915050565b600061377482613807565b915061377f83613807565b92508282101561379257613791613930565b5b828203905092915050565b60006137a8826137e7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561383e578082015181840152602081019050613823565b8381111561384d576000848401525b50505050565b6000600282049050600182168061386b57607f821691505b6020821081141561387f5761387e61398e565b5b50919050565b61388e826139ec565b810181811067ffffffffffffffff821117156138ad576138ac6139bd565b5b80604052505050565b60006138c182613807565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138f4576138f3613930565b5b600182019050919050565b600061390a82613807565b915061391583613807565b9250826139255761392461395f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53706563696669656420737570706c79206973206c6f776572207468616e206360008201527f757272656e742062616c616e6365000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206c6f636b6564000000000000000000000000000000000000600082015250565b61406a8161379d565b811461407557600080fd5b50565b614081816137af565b811461408c57600080fd5b50565b614098816137bb565b81146140a357600080fd5b50565b6140af81613807565b81146140ba57600080fd5b5056fea26469706673582212201ff4caaa62bf046242dd335f28216eaffc27e7ff4709759e3371c59a026fd73f64736f6c63430008040033

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.