ETH Price: $2,410.22 (-2.89%)
 

Overview

Max Total Supply

115 AMI

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fumeiji.eth
Balance
4 AMI
0x8f4612e9aab90ead61a1637436bcb9fd0b606652
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:
AmiAvatarToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : AmiAvatar.sol
// SPDX-License-Identifier: UNLICENSED
// AmiAvatar.com
pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract AmiAvatarToken is ERC721, Ownable {
	uint public _price = 0.005 ether;
	uint public _lastId = 250;
	uint _currentId = 87;

	string private constant BAD_QTY = "BadQty";
	string private constant LOW_ETH = "LowEth";
	string private constant NO_STOCK = "NoStock";
	string private constant BASE_URL = "ipfs://QmeHDgnUKi8LM29x5UGnFTvbxaaWpqa3xCy1FuXeFHvvad/";

	constructor() ERC721("Ami Avatar", "AMI") {
	}

	function _baseURI() internal pure override returns (string memory) {
		return BASE_URL;
	}

	function setPrice(uint newPrice) public onlyOwner {
		_price = newPrice;
	}

	function setCurrentId(uint newCurrent) public onlyOwner {
		_currentId = newCurrent;
	}

	function setLastId(uint newLast) public onlyOwner {
		_lastId = newLast;
	}

	function ownerMint(uint id, address recipient) public onlyOwner {
		_safeMint(recipient, id);
	}

	function mintNFTBulk(uint qty) public payable {
		require(qty > 0 && qty <= 10, BAD_QTY);
		require(msg.value >= (_price * qty), LOW_ETH);
		require(_currentId + qty - 1 <= _lastId, NO_STOCK);
		for (uint i=0; i<qty; i++) {
			_safeMint(msg.sender, _currentId++);
		}
	}

	function totalSupply() public view returns (uint) {
		return _currentId - 1;
	}

	function withdraw() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_lastId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintNFTBulk","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":"id","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCurrent","type":"uint256"}],"name":"setCurrentId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLast","type":"uint256"}],"name":"setLastId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60806040526611c37937e0800060075560fa60085560576009553480156200002657600080fd5b506040518060400160405280600a81526020017f416d6920417661746172000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414d4900000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ab929190620001bb565b508060019080519060200190620000c4929190620001bb565b505050620000e7620000db620000ed60201b60201c565b620000f560201b60201c565b620002d0565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c9906200029a565b90600052602060002090601f016020900481019282620001ed576000855562000239565b82601f106200020857805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002385782518255916020019190600101906200021b565b5b5090506200024891906200024c565b5090565b5b80821115620002675760008160009055506001016200024d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b357607f821691505b60208210811415620002ca57620002c96200026b565b5b50919050565b61335180620002e06000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d15780639b37aecb1161008a578063c87b56dd11610064578063c87b56dd146104f3578063d52c57e014610530578063e985e9c514610559578063f2fde38b1461059657610166565b80639b37aecb14610478578063a22cb465146104a1578063b88d4fde146104ca57610166565b80636352211e1461036857806370a08231146103a5578063715018a6146103e25780638da5cb5b146103f957806391b7f5ed1461042457806395d89b411461044d57610166565b80631a27e85f116101235780631a27e85f1461028f578063235b6ea1146102b857806323b872dd146102e357806332fe91e61461030c5780633ccfd60b1461032857806342842e0e1461033f57610166565b806301ffc9a71461016b57806306fdde03146101a8578063073be994146101d3578063081812fc146101fe578063095ea7b31461023b57806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612106565b6105bf565b60405161019f919061214e565b60405180910390f35b3480156101b457600080fd5b506101bd6106a1565b6040516101ca9190612202565b60405180910390f35b3480156101df57600080fd5b506101e8610733565b6040516101f5919061223d565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190612284565b610739565b60405161023291906122f2565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612339565b6107be565b005b34801561027057600080fd5b506102796108d6565b604051610286919061223d565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612284565b6108ec565b005b3480156102c457600080fd5b506102cd610972565b6040516102da919061223d565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612379565b610978565b005b61032660048036038101906103219190612284565b6109d8565b005b34801561033457600080fd5b5061033d610bc3565b005b34801561034b57600080fd5b5061036660048036038101906103619190612379565b610c88565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612284565b610ca8565b60405161039c91906122f2565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906123cc565b610d5a565b6040516103d9919061223d565b60405180910390f35b3480156103ee57600080fd5b506103f7610e12565b005b34801561040557600080fd5b5061040e610e9a565b60405161041b91906122f2565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612284565b610ec4565b005b34801561045957600080fd5b50610462610f4a565b60405161046f9190612202565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612284565b610fdc565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612425565b611062565b005b3480156104d657600080fd5b506104f160048036038101906104ec919061259a565b611078565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190612284565b6110da565b6040516105279190612202565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061261d565b611181565b005b34801561056557600080fd5b50610580600480360381019061057b919061265d565b61120b565b60405161058d919061214e565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b891906123cc565b61129f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069a575061069982611397565b5b9050919050565b6060600080546106b0906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc906126cc565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b60085481565b600061074482611401565b610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90612770565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c982610ca8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561083a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083190612802565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085961146d565b73ffffffffffffffffffffffffffffffffffffffff16148061088857506108878161088261146d565b61120b565b5b6108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be90612894565b60405180910390fd5b6108d18383611475565b505050565b600060016009546108e791906128e3565b905090565b6108f461146d565b73ffffffffffffffffffffffffffffffffffffffff16610912610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90612963565b60405180910390fd5b8060088190555050565b60075481565b61098961098361146d565b8261152e565b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906129f5565b60405180910390fd5b6109d383838361160c565b505050565b6000811180156109e95750600a8111155b6040518060400160405280600681526020017f426164517479000000000000000000000000000000000000000000000000000081525090610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579190612202565b60405180910390fd5b5080600754610a6f9190612a15565b3410156040518060400160405280600681526020017f4c6f77457468000000000000000000000000000000000000000000000000000081525090610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae09190612202565b60405180910390fd5b50600854600182600954610afd9190612a6f565b610b0791906128e3565b11156040518060400160405280600781526020017f4e6f53746f636b0000000000000000000000000000000000000000000000000081525090610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b779190612202565b60405180910390fd5b5060005b81811015610bbf57610bac3360096000815480929190610ba390612ac5565b91905055611873565b8080610bb790612ac5565b915050610b84565b5050565b610bcb61146d565b73ffffffffffffffffffffffffffffffffffffffff16610be9610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690612963565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c85573d6000803e3d6000fd5b50565b610ca383838360405180602001604052806000815250611078565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890612b80565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612c12565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e1a61146d565b73ffffffffffffffffffffffffffffffffffffffff16610e38610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612963565b60405180910390fd5b610e986000611891565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ecc61146d565b73ffffffffffffffffffffffffffffffffffffffff16610eea610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790612963565b60405180910390fd5b8060078190555050565b606060018054610f59906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f85906126cc565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b5050505050905090565b610fe461146d565b73ffffffffffffffffffffffffffffffffffffffff16611002610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612963565b60405180910390fd5b8060098190555050565b61107461106d61146d565b8383611957565b5050565b61108961108361146d565b8361152e565b6110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf906129f5565b60405180910390fd5b6110d484848484611ac4565b50505050565b60606110e582611401565b611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90612ca4565b60405180910390fd5b600061112e611b20565b9050600081511161114e5760405180602001604052806000815250611179565b8061115884611b40565b604051602001611169929190612d00565b6040516020818303038152906040525b915050919050565b61118961146d565b73ffffffffffffffffffffffffffffffffffffffff166111a7610e9a565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490612963565b60405180910390fd5b6112078183611873565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a761146d565b73ffffffffffffffffffffffffffffffffffffffff166112c5610e9a565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290612963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290612d96565b60405180910390fd5b61139481611891565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114e883610ca8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061153982611401565b611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90612e28565b60405180910390fd5b600061158383610ca8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115f257508373ffffffffffffffffffffffffffffffffffffffff166115da84610739565b73ffffffffffffffffffffffffffffffffffffffff16145b806116035750611602818561120b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661162c82610ca8565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990612eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612f4c565b60405180910390fd5b6116fd838383611ca1565b611708600082611475565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175891906128e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117af9190612a6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461186e838383611ca6565b505050565b61188d828260405180602001604052806000815250611cab565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612fb8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab7919061214e565b60405180910390a3505050565b611acf84848461160c565b611adb84848484611d06565b611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061304a565b60405180910390fd5b50505050565b60606040518060600160405280603681526020016132e660369139905090565b60606000821415611b88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c9c565b600082905060005b60008214611bba578080611ba390612ac5565b915050600a82611bb39190613099565b9150611b90565b60008167ffffffffffffffff811115611bd657611bd561246f565b5b6040519080825280601f01601f191660200182016040528015611c085781602001600182028036833780820191505090505b5090505b60008514611c9557600182611c2191906128e3565b9150600a85611c3091906130ca565b6030611c3c9190612a6f565b60f81b818381518110611c5257611c516130fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c8e9190613099565b9450611c0c565b8093505050505b919050565b505050565b505050565b611cb58383611e9d565b611cc26000848484611d06565b611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061304a565b60405180910390fd5b505050565b6000611d278473ffffffffffffffffffffffffffffffffffffffff16612077565b15611e90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5061146d565b8786866040518563ffffffff1660e01b8152600401611d72949392919061317f565b602060405180830381600087803b158015611d8c57600080fd5b505af1925050508015611dbd57506040513d601f19601f82011682018060405250810190611dba91906131e0565b60015b611e40573d8060008114611ded576040519150601f19603f3d011682016040523d82523d6000602084013e611df2565b606091505b50600081511415611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f9061304a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e95565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613259565b60405180910390fd5b611f1681611401565b15611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906132c5565b60405180910390fd5b611f6260008383611ca1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb29190612a6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461207360008383611ca6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e3816120ae565b81146120ee57600080fd5b50565b600081359050612100816120da565b92915050565b60006020828403121561211c5761211b6120a4565b5b600061212a848285016120f1565b91505092915050565b60008115159050919050565b61214881612133565b82525050565b6000602082019050612163600083018461213f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a3578082015181840152602081019050612188565b838111156121b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006121d482612169565b6121de8185612174565b93506121ee818560208601612185565b6121f7816121b8565b840191505092915050565b6000602082019050818103600083015261221c81846121c9565b905092915050565b6000819050919050565b61223781612224565b82525050565b6000602082019050612252600083018461222e565b92915050565b61226181612224565b811461226c57600080fd5b50565b60008135905061227e81612258565b92915050565b60006020828403121561229a576122996120a4565b5b60006122a88482850161226f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122dc826122b1565b9050919050565b6122ec816122d1565b82525050565b600060208201905061230760008301846122e3565b92915050565b612316816122d1565b811461232157600080fd5b50565b6000813590506123338161230d565b92915050565b600080604083850312156123505761234f6120a4565b5b600061235e85828601612324565b925050602061236f8582860161226f565b9150509250929050565b600080600060608486031215612392576123916120a4565b5b60006123a086828701612324565b93505060206123b186828701612324565b92505060406123c28682870161226f565b9150509250925092565b6000602082840312156123e2576123e16120a4565b5b60006123f084828501612324565b91505092915050565b61240281612133565b811461240d57600080fd5b50565b60008135905061241f816123f9565b92915050565b6000806040838503121561243c5761243b6120a4565b5b600061244a85828601612324565b925050602061245b85828601612410565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124a7826121b8565b810181811067ffffffffffffffff821117156124c6576124c561246f565b5b80604052505050565b60006124d961209a565b90506124e5828261249e565b919050565b600067ffffffffffffffff8211156125055761250461246f565b5b61250e826121b8565b9050602081019050919050565b82818337600083830152505050565b600061253d612538846124ea565b6124cf565b9050828152602081018484840111156125595761255861246a565b5b61256484828561251b565b509392505050565b600082601f83011261258157612580612465565b5b813561259184826020860161252a565b91505092915050565b600080600080608085870312156125b4576125b36120a4565b5b60006125c287828801612324565b94505060206125d387828801612324565b93505060406125e48782880161226f565b925050606085013567ffffffffffffffff811115612605576126046120a9565b5b6126118782880161256c565b91505092959194509250565b60008060408385031215612634576126336120a4565b5b60006126428582860161226f565b925050602061265385828601612324565b9150509250929050565b60008060408385031215612674576126736120a4565b5b600061268285828601612324565b925050602061269385828601612324565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126e457607f821691505b602082108114156126f8576126f761269d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061275a602c83612174565b9150612765826126fe565b604082019050919050565b600060208201905081810360008301526127898161274d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006127ec602183612174565b91506127f782612790565b604082019050919050565b6000602082019050818103600083015261281b816127df565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061287e603883612174565b915061288982612822565b604082019050919050565b600060208201905081810360008301526128ad81612871565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128ee82612224565b91506128f983612224565b92508282101561290c5761290b6128b4565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061294d602083612174565b915061295882612917565b602082019050919050565b6000602082019050818103600083015261297c81612940565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006129df603183612174565b91506129ea82612983565b604082019050919050565b60006020820190508181036000830152612a0e816129d2565b9050919050565b6000612a2082612224565b9150612a2b83612224565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a6457612a636128b4565b5b828202905092915050565b6000612a7a82612224565b9150612a8583612224565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612aba57612ab96128b4565b5b828201905092915050565b6000612ad082612224565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b0357612b026128b4565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612b6a602983612174565b9150612b7582612b0e565b604082019050919050565b60006020820190508181036000830152612b9981612b5d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612bfc602a83612174565b9150612c0782612ba0565b604082019050919050565b60006020820190508181036000830152612c2b81612bef565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c8e602f83612174565b9150612c9982612c32565b604082019050919050565b60006020820190508181036000830152612cbd81612c81565b9050919050565b600081905092915050565b6000612cda82612169565b612ce48185612cc4565b9350612cf4818560208601612185565b80840191505092915050565b6000612d0c8285612ccf565b9150612d188284612ccf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d80602683612174565b9150612d8b82612d24565b604082019050919050565b60006020820190508181036000830152612daf81612d73565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e12602c83612174565b9150612e1d82612db6565b604082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612ea4602583612174565b9150612eaf82612e48565b604082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f36602483612174565b9150612f4182612eda565b604082019050919050565b60006020820190508181036000830152612f6581612f29565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612fa2601983612174565b9150612fad82612f6c565b602082019050919050565b60006020820190508181036000830152612fd181612f95565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613034603283612174565b915061303f82612fd8565b604082019050919050565b6000602082019050818103600083015261306381613027565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130a482612224565b91506130af83612224565b9250826130bf576130be61306a565b5b828204905092915050565b60006130d582612224565b91506130e083612224565b9250826130f0576130ef61306a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006131518261312a565b61315b8185613135565b935061316b818560208601612185565b613174816121b8565b840191505092915050565b600060808201905061319460008301876122e3565b6131a160208301866122e3565b6131ae604083018561222e565b81810360608301526131c08184613146565b905095945050505050565b6000815190506131da816120da565b92915050565b6000602082840312156131f6576131f56120a4565b5b6000613204848285016131cb565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613243602083612174565b915061324e8261320d565b602082019050919050565b6000602082019050818103600083015261327281613236565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006132af601c83612174565b91506132ba82613279565b602082019050919050565b600060208201905081810360008301526132de816132a2565b905091905056fe697066733a2f2f516d654844676e554b69384c4d3239783555476e46547662786161577071613378437931467558654648767661642fa26469706673582212201e809f5468f18b60041193bd1fde868e1c5339179068e3663e2d36e3acf6543864736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d15780639b37aecb1161008a578063c87b56dd11610064578063c87b56dd146104f3578063d52c57e014610530578063e985e9c514610559578063f2fde38b1461059657610166565b80639b37aecb14610478578063a22cb465146104a1578063b88d4fde146104ca57610166565b80636352211e1461036857806370a08231146103a5578063715018a6146103e25780638da5cb5b146103f957806391b7f5ed1461042457806395d89b411461044d57610166565b80631a27e85f116101235780631a27e85f1461028f578063235b6ea1146102b857806323b872dd146102e357806332fe91e61461030c5780633ccfd60b1461032857806342842e0e1461033f57610166565b806301ffc9a71461016b57806306fdde03146101a8578063073be994146101d3578063081812fc146101fe578063095ea7b31461023b57806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612106565b6105bf565b60405161019f919061214e565b60405180910390f35b3480156101b457600080fd5b506101bd6106a1565b6040516101ca9190612202565b60405180910390f35b3480156101df57600080fd5b506101e8610733565b6040516101f5919061223d565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190612284565b610739565b60405161023291906122f2565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612339565b6107be565b005b34801561027057600080fd5b506102796108d6565b604051610286919061223d565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612284565b6108ec565b005b3480156102c457600080fd5b506102cd610972565b6040516102da919061223d565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612379565b610978565b005b61032660048036038101906103219190612284565b6109d8565b005b34801561033457600080fd5b5061033d610bc3565b005b34801561034b57600080fd5b5061036660048036038101906103619190612379565b610c88565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612284565b610ca8565b60405161039c91906122f2565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906123cc565b610d5a565b6040516103d9919061223d565b60405180910390f35b3480156103ee57600080fd5b506103f7610e12565b005b34801561040557600080fd5b5061040e610e9a565b60405161041b91906122f2565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612284565b610ec4565b005b34801561045957600080fd5b50610462610f4a565b60405161046f9190612202565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612284565b610fdc565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612425565b611062565b005b3480156104d657600080fd5b506104f160048036038101906104ec919061259a565b611078565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190612284565b6110da565b6040516105279190612202565b60405180910390f35b34801561053c57600080fd5b506105576004803603810190610552919061261d565b611181565b005b34801561056557600080fd5b50610580600480360381019061057b919061265d565b61120b565b60405161058d919061214e565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b891906123cc565b61129f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069a575061069982611397565b5b9050919050565b6060600080546106b0906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc906126cc565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b60085481565b600061074482611401565b610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90612770565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c982610ca8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561083a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083190612802565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085961146d565b73ffffffffffffffffffffffffffffffffffffffff16148061088857506108878161088261146d565b61120b565b5b6108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be90612894565b60405180910390fd5b6108d18383611475565b505050565b600060016009546108e791906128e3565b905090565b6108f461146d565b73ffffffffffffffffffffffffffffffffffffffff16610912610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90612963565b60405180910390fd5b8060088190555050565b60075481565b61098961098361146d565b8261152e565b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906129f5565b60405180910390fd5b6109d383838361160c565b505050565b6000811180156109e95750600a8111155b6040518060400160405280600681526020017f426164517479000000000000000000000000000000000000000000000000000081525090610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579190612202565b60405180910390fd5b5080600754610a6f9190612a15565b3410156040518060400160405280600681526020017f4c6f77457468000000000000000000000000000000000000000000000000000081525090610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae09190612202565b60405180910390fd5b50600854600182600954610afd9190612a6f565b610b0791906128e3565b11156040518060400160405280600781526020017f4e6f53746f636b0000000000000000000000000000000000000000000000000081525090610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b779190612202565b60405180910390fd5b5060005b81811015610bbf57610bac3360096000815480929190610ba390612ac5565b91905055611873565b8080610bb790612ac5565b915050610b84565b5050565b610bcb61146d565b73ffffffffffffffffffffffffffffffffffffffff16610be9610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690612963565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c85573d6000803e3d6000fd5b50565b610ca383838360405180602001604052806000815250611078565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890612b80565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612c12565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e1a61146d565b73ffffffffffffffffffffffffffffffffffffffff16610e38610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612963565b60405180910390fd5b610e986000611891565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ecc61146d565b73ffffffffffffffffffffffffffffffffffffffff16610eea610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790612963565b60405180910390fd5b8060078190555050565b606060018054610f59906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f85906126cc565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b5050505050905090565b610fe461146d565b73ffffffffffffffffffffffffffffffffffffffff16611002610e9a565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612963565b60405180910390fd5b8060098190555050565b61107461106d61146d565b8383611957565b5050565b61108961108361146d565b8361152e565b6110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf906129f5565b60405180910390fd5b6110d484848484611ac4565b50505050565b60606110e582611401565b611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90612ca4565b60405180910390fd5b600061112e611b20565b9050600081511161114e5760405180602001604052806000815250611179565b8061115884611b40565b604051602001611169929190612d00565b6040516020818303038152906040525b915050919050565b61118961146d565b73ffffffffffffffffffffffffffffffffffffffff166111a7610e9a565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490612963565b60405180910390fd5b6112078183611873565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a761146d565b73ffffffffffffffffffffffffffffffffffffffff166112c5610e9a565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290612963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290612d96565b60405180910390fd5b61139481611891565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114e883610ca8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061153982611401565b611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90612e28565b60405180910390fd5b600061158383610ca8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115f257508373ffffffffffffffffffffffffffffffffffffffff166115da84610739565b73ffffffffffffffffffffffffffffffffffffffff16145b806116035750611602818561120b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661162c82610ca8565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990612eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612f4c565b60405180910390fd5b6116fd838383611ca1565b611708600082611475565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175891906128e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117af9190612a6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461186e838383611ca6565b505050565b61188d828260405180602001604052806000815250611cab565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612fb8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab7919061214e565b60405180910390a3505050565b611acf84848461160c565b611adb84848484611d06565b611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061304a565b60405180910390fd5b50505050565b60606040518060600160405280603681526020016132e660369139905090565b60606000821415611b88576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c9c565b600082905060005b60008214611bba578080611ba390612ac5565b915050600a82611bb39190613099565b9150611b90565b60008167ffffffffffffffff811115611bd657611bd561246f565b5b6040519080825280601f01601f191660200182016040528015611c085781602001600182028036833780820191505090505b5090505b60008514611c9557600182611c2191906128e3565b9150600a85611c3091906130ca565b6030611c3c9190612a6f565b60f81b818381518110611c5257611c516130fb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c8e9190613099565b9450611c0c565b8093505050505b919050565b505050565b505050565b611cb58383611e9d565b611cc26000848484611d06565b611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061304a565b60405180910390fd5b505050565b6000611d278473ffffffffffffffffffffffffffffffffffffffff16612077565b15611e90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5061146d565b8786866040518563ffffffff1660e01b8152600401611d72949392919061317f565b602060405180830381600087803b158015611d8c57600080fd5b505af1925050508015611dbd57506040513d601f19601f82011682018060405250810190611dba91906131e0565b60015b611e40573d8060008114611ded576040519150601f19603f3d011682016040523d82523d6000602084013e611df2565b606091505b50600081511415611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f9061304a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e95565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613259565b60405180910390fd5b611f1681611401565b15611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d906132c5565b60405180910390fd5b611f6260008383611ca1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb29190612a6f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461207360008383611ca6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e3816120ae565b81146120ee57600080fd5b50565b600081359050612100816120da565b92915050565b60006020828403121561211c5761211b6120a4565b5b600061212a848285016120f1565b91505092915050565b60008115159050919050565b61214881612133565b82525050565b6000602082019050612163600083018461213f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a3578082015181840152602081019050612188565b838111156121b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006121d482612169565b6121de8185612174565b93506121ee818560208601612185565b6121f7816121b8565b840191505092915050565b6000602082019050818103600083015261221c81846121c9565b905092915050565b6000819050919050565b61223781612224565b82525050565b6000602082019050612252600083018461222e565b92915050565b61226181612224565b811461226c57600080fd5b50565b60008135905061227e81612258565b92915050565b60006020828403121561229a576122996120a4565b5b60006122a88482850161226f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122dc826122b1565b9050919050565b6122ec816122d1565b82525050565b600060208201905061230760008301846122e3565b92915050565b612316816122d1565b811461232157600080fd5b50565b6000813590506123338161230d565b92915050565b600080604083850312156123505761234f6120a4565b5b600061235e85828601612324565b925050602061236f8582860161226f565b9150509250929050565b600080600060608486031215612392576123916120a4565b5b60006123a086828701612324565b93505060206123b186828701612324565b92505060406123c28682870161226f565b9150509250925092565b6000602082840312156123e2576123e16120a4565b5b60006123f084828501612324565b91505092915050565b61240281612133565b811461240d57600080fd5b50565b60008135905061241f816123f9565b92915050565b6000806040838503121561243c5761243b6120a4565b5b600061244a85828601612324565b925050602061245b85828601612410565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124a7826121b8565b810181811067ffffffffffffffff821117156124c6576124c561246f565b5b80604052505050565b60006124d961209a565b90506124e5828261249e565b919050565b600067ffffffffffffffff8211156125055761250461246f565b5b61250e826121b8565b9050602081019050919050565b82818337600083830152505050565b600061253d612538846124ea565b6124cf565b9050828152602081018484840111156125595761255861246a565b5b61256484828561251b565b509392505050565b600082601f83011261258157612580612465565b5b813561259184826020860161252a565b91505092915050565b600080600080608085870312156125b4576125b36120a4565b5b60006125c287828801612324565b94505060206125d387828801612324565b93505060406125e48782880161226f565b925050606085013567ffffffffffffffff811115612605576126046120a9565b5b6126118782880161256c565b91505092959194509250565b60008060408385031215612634576126336120a4565b5b60006126428582860161226f565b925050602061265385828601612324565b9150509250929050565b60008060408385031215612674576126736120a4565b5b600061268285828601612324565b925050602061269385828601612324565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126e457607f821691505b602082108114156126f8576126f761269d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061275a602c83612174565b9150612765826126fe565b604082019050919050565b600060208201905081810360008301526127898161274d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006127ec602183612174565b91506127f782612790565b604082019050919050565b6000602082019050818103600083015261281b816127df565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061287e603883612174565b915061288982612822565b604082019050919050565b600060208201905081810360008301526128ad81612871565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128ee82612224565b91506128f983612224565b92508282101561290c5761290b6128b4565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061294d602083612174565b915061295882612917565b602082019050919050565b6000602082019050818103600083015261297c81612940565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006129df603183612174565b91506129ea82612983565b604082019050919050565b60006020820190508181036000830152612a0e816129d2565b9050919050565b6000612a2082612224565b9150612a2b83612224565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a6457612a636128b4565b5b828202905092915050565b6000612a7a82612224565b9150612a8583612224565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612aba57612ab96128b4565b5b828201905092915050565b6000612ad082612224565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b0357612b026128b4565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612b6a602983612174565b9150612b7582612b0e565b604082019050919050565b60006020820190508181036000830152612b9981612b5d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612bfc602a83612174565b9150612c0782612ba0565b604082019050919050565b60006020820190508181036000830152612c2b81612bef565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c8e602f83612174565b9150612c9982612c32565b604082019050919050565b60006020820190508181036000830152612cbd81612c81565b9050919050565b600081905092915050565b6000612cda82612169565b612ce48185612cc4565b9350612cf4818560208601612185565b80840191505092915050565b6000612d0c8285612ccf565b9150612d188284612ccf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d80602683612174565b9150612d8b82612d24565b604082019050919050565b60006020820190508181036000830152612daf81612d73565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e12602c83612174565b9150612e1d82612db6565b604082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612ea4602583612174565b9150612eaf82612e48565b604082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f36602483612174565b9150612f4182612eda565b604082019050919050565b60006020820190508181036000830152612f6581612f29565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612fa2601983612174565b9150612fad82612f6c565b602082019050919050565b60006020820190508181036000830152612fd181612f95565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613034603283612174565b915061303f82612fd8565b604082019050919050565b6000602082019050818103600083015261306381613027565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130a482612224565b91506130af83612224565b9250826130bf576130be61306a565b5b828204905092915050565b60006130d582612224565b91506130e083612224565b9250826130f0576130ef61306a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006131518261312a565b61315b8185613135565b935061316b818560208601612185565b613174816121b8565b840191505092915050565b600060808201905061319460008301876122e3565b6131a160208301866122e3565b6131ae604083018561222e565b81810360608301526131c08184613146565b905095945050505050565b6000815190506131da816120da565b92915050565b6000602082840312156131f6576131f56120a4565b5b6000613204848285016131cb565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613243602083612174565b915061324e8261320d565b602082019050919050565b6000602082019050818103600083015261327281613236565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006132af601c83612174565b91506132ba82613279565b602082019050919050565b600060208201905081810360008301526132de816132a2565b905091905056fe697066733a2f2f516d654844676e554b69384c4d3239783555476e46547662786161577071613378437931467558654648767661642fa26469706673582212201e809f5468f18b60041193bd1fde868e1c5339179068e3663e2d36e3acf6543864736f6c63430008090033

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.