ETH Price: $2,410.23 (-0.62%)

Token

GUNBULL (GUNBULL)
 

Overview

Max Total Supply

204 GUNBULL

Holders

122

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tuoluo.eth
Balance
1 GUNBULL
0xfc7d1491dfcdcf6e72bf202e6d3bf5cc55e5b5ee
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:
GUNBULL

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : bear.sol
// https://gunbull.org/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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);
}

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;
}

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);
}

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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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);
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

abstract contract ERC721Burnable is Context, ERC721 {
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

library Counters {
    struct Counter {
        uint256 _value; // default: 0
    }

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

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

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

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

contract ERC721NFT is
    Context,
    ERC721Enumerable,
    ERC721Burnable
{
    using Counters for Counters.Counter;

    uint public StartTimestamp;
    uint public EndTimestamp;
    uint public Price;

    uint public totalAmount;
    uint public LimitEarlyBird;
    uint public totalSell;

    uint private SoldAmount;
    uint public TeamMintAmount;

    Counters.Counter private _tokenIdTracker;

    string internal _baseTokenURI;
    mapping(address => uint) public EarlyBird;
    mapping(address => uint) public WhiteList;
    mapping(address => bool) public MintDone;
    mapping(address => uint) public userMintAmount;
    address public Admin;

    modifier onlyAdmin() {
        require(msg.sender == Admin, "");
        _;
    }

    modifier LimitTotalAmount() {
        require(SoldAmount < (3001 - LimitEarlyBird - 333) , "Sell Out");
        _;
    }

    modifier SoldStatus() {
        require( !MintDone[_msgSender()] , "Only Buy Once");
        _;
    }

    modifier LimitValue() {
        require( msg.value >= Price , "Value too low");
        _;
    }

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI
    ) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;

        StartTimestamp = 1638194400;
        EndTimestamp = StartTimestamp + 3600 * 4;
        Price = 8 * 1e16;
        LimitEarlyBird = 113;
        Admin = msg.sender;
        // Admin = 0x25e15F2D794457522Cff57aF252F2cf84cF08744;
    }

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

    // WhiteList Mint
    function WhiteListMint() external payable LimitValue SoldStatus {
        require(block.timestamp >= StartTimestamp, "NOT START");
        require(WhiteList[_msgSender()] != 0, "You have to be in the list");
        if (msg.value < Price ) {
            return;
        } else if (msg.value >= 2 * Price ) {
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            WhiteList[_msgSender()] -= 2;

            MintDone[_msgSender()] = true;
            SoldAmount +=2;
            userMintAmount[msg.sender] += 2;

            payable(0x25e15F2D794457522Cff57aF252F2cf84cF08744).transfer(address(this).balance);
            return;
        } else {
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            WhiteList[_msgSender()] -= 1;

            SoldAmount ++;
            userMintAmount[msg.sender] ++;
            payable(0x25e15F2D794457522Cff57aF252F2cf84cF08744).transfer(address(this).balance);
        }

        if (WhiteList[_msgSender()] == 0) {
            MintDone[msg.sender] = true;
        }

    }

    // Private Mint
    function EarlyBirdMint() external SoldStatus {
        require(block.timestamp >= StartTimestamp, "NOT START");
        require(EarlyBird[_msgSender()] > 0, "You're not in the Early Bird List");

        if (EarlyBird[_msgSender()] == 1 ) {
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            EarlyBird[_msgSender()] -= 1;
            userMintAmount[msg.sender] ++;
        }

        if (EarlyBird[_msgSender()] == 2 ) {
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            EarlyBird[_msgSender()] -= 2;
            userMintAmount[msg.sender] += 2;
        }

        if (EarlyBird[_msgSender()] == 0) {
            MintDone[msg.sender] = true;
        }
    }

    // public Mint
    function mint() public payable SoldStatus LimitTotalAmount LimitValue {

        require(userMintAmount[msg.sender] < 2 , "Only Buy 2 NFT");
        require(block.timestamp > EndTimestamp , "Waiting for the private placement end");

        if (msg.value >= 2 * Price ) {
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            if (WhiteList[_msgSender()]>1) {
                WhiteList[_msgSender()] -=2 ;
            }
            payable(0x25e15F2D794457522Cff57aF252F2cf84cF08744).transfer(address(this).balance);
            SoldAmount += 2;
            userMintAmount[msg.sender] += 2;
        } else {
            _mint(_msgSender(), _tokenIdTracker.current());
            _tokenIdTracker.increment();
            if (WhiteList[_msgSender()]>0) {
                WhiteList[_msgSender()] -=1 ;
            }
            payable(0x25e15F2D794457522Cff57aF252F2cf84cF08744).transfer(address(this).balance);
            SoldAmount ++;
            userMintAmount[msg.sender] += 1;
        }

        if (userMintAmount[msg.sender] == 2) {
            MintDone[_msgSender()] = true;
        }
    }

    function addEarlyBird(address[] memory _addr, uint[] memory _amount) external onlyAdmin {
        for (uint i=0; i<_addr.length;i++) {
            EarlyBird[_addr[i]] = _amount[i];
        }
    }

    function addWhiteList(address[] memory _addr, uint[] memory _amount) external onlyAdmin {
        for (uint i=0; i<_addr.length;i++) {
            WhiteList[_addr[i]] = _amount[i];
        }
    }

    function teamMint() external onlyAdmin {
        for (uint i=0; i<37; i++) {
            _mint(address(0x25e15F2D794457522Cff57aF252F2cf84cF08744), _tokenIdTracker.current());
            _tokenIdTracker.increment();
        }
        TeamMintAmount += 37 ;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

contract GUNBULL is ERC721NFT {
    bool public UpgradeIPFS;
    constructor()
    ERC721NFT("GUNBULL", "GUNBULL", "https://gunbull.org/metadata/json/") 
    {}

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Legends Of The World : URI query for nonexistent token");

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

    function _upgradeIPFS(string memory _uri) external onlyAdmin {
        require(!UpgradeIPFS, "IPFS Enable");
        _baseTokenURI = _uri;
        UpgradeIPFS = true;
    }

    receive () external payable {}

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"Admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"EarlyBird","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EarlyBirdMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"EndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LimitEarlyBird","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MintDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UpgradeIPFS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"_upgradeIPFS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"addEarlyBird","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f47554e42554c4c000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f47554e42554c4c000000000000000000000000000000000000000000000000008152506040518060600160405280602281526020016200577e6022913982828160009080519060200190620000b29291906200016b565b508060019080519060200190620000cb9291906200016b565b5050508060139080519060200190620000e69291906200016b565b506361a4dce0600a81905550613840600a546200010491906200021b565b600b8190555067011c37937e080000600c819055506071600e8190555033601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000316565b828054620001799062000282565b90600052602060002090601f0160209004810192826200019d5760008555620001e9565b82601f10620001b857805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e8578251825591602001919060010190620001cb565b5b509050620001f89190620001fc565b5090565b5b8082111562000217576000816000905550600101620001fd565b5090565b6000620002288262000278565b9150620002358362000278565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200026d576200026c620002b8565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200029b57607f821691505b60208210811415620002b257620002b1620002e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61545880620003266000396000f3fe60806040526004361061021e5760003560e01c806373ff167011610123578063b342f19c116100ab578063cd0b32791161006f578063cd0b3279146107e8578063e0202f8714610813578063e5d28aee1461083e578063e985e9c514610855578063ff1b636d1461089257610225565b8063b342f19c14610715578063b88d4fde14610740578063ba7a86b814610769578063c87b56dd14610780578063cb214c5e146107bd57610225565b80639dfde201116100f25780639dfde2011461061e578063a0d41d9f14610649578063a22cb46514610672578063a3200a921461069b578063afe88cb8146106d857610225565b806373ff167014610562578063784be37c1461058b5780638a2132b4146105c857806395d89b41146105f357610225565b80632f745c59116101a65780634f6ccce7116101755780634f6ccce714610443578063504471aa146104805780636352211e146104ab5780636bc20157146104e857806370a082311461052557610225565b80632f745c59146103aa57806342842e0e146103e757806342966c68146104105780634580ecb41461043957610225565b80630a4adac0116101ed5780630a4adac0146102f85780631249c58b1461032157806318160ddd1461032b5780631a39d8ef1461035657806323b872dd1461038157610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613e40565b6108bd565b60405161025e919061444a565b60405180910390f35b34801561027357600080fd5b5061027c6108cf565b6040516102899190614465565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613ee3565b610961565b6040516102c691906143e3565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613d88565b6109e6565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613dc8565b610afe565b005b610329610c2a565b005b34801561033757600080fd5b5061034061124c565b60405161034d91906147e7565b60405180910390f35b34801561036257600080fd5b5061036b611259565b60405161037891906147e7565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613c72565b61125f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613d88565b6112bf565b6040516103de91906147e7565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613c72565b611364565b005b34801561041c57600080fd5b5061043760048036038101906104329190613ee3565b611384565b005b6104416113e0565b005b34801561044f57600080fd5b5061046a60048036038101906104659190613ee3565b611977565b60405161047791906147e7565b60405180910390f35b34801561048c57600080fd5b506104956119e8565b6040516104a291906147e7565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613ee3565b6119ee565b6040516104df91906143e3565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613c05565b611aa0565b60405161051c91906147e7565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190613c05565b611ab8565b60405161055991906147e7565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613e9a565b611b70565b005b34801561059757600080fd5b506105b260048036038101906105ad9190613c05565b611c85565b6040516105bf91906147e7565b60405180910390f35b3480156105d457600080fd5b506105dd611c9d565b6040516105ea91906147e7565b60405180910390f35b3480156105ff57600080fd5b50610608611ca3565b6040516106159190614465565b60405180910390f35b34801561062a57600080fd5b50610633611d35565b60405161064091906147e7565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613dc8565b611d3b565b005b34801561067e57600080fd5b5061069960048036038101906106949190613d48565b611e67565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613c05565b611fe8565b6040516106cf91906147e7565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613c05565b612000565b60405161070c919061444a565b60405180910390f35b34801561072157600080fd5b5061072a612020565b60405161073791906147e7565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613cc5565b612026565b005b34801561077557600080fd5b5061077e612088565b005b34801561078c57600080fd5b506107a760048036038101906107a29190613ee3565b612185565b6040516107b49190614465565b60405180910390f35b3480156107c957600080fd5b506107d261222c565b6040516107df91906147e7565b60405180910390f35b3480156107f457600080fd5b506107fd612232565b60405161080a919061444a565b60405180910390f35b34801561081f57600080fd5b50610828612245565b60405161083591906147e7565b60405180910390f35b34801561084a57600080fd5b5061085361224b565b005b34801561086157600080fd5b5061087c60048036038101906108779190613c32565b6126cb565b604051610889919061444a565b60405180910390f35b34801561089e57600080fd5b506108a761275f565b6040516108b491906143e3565b60405180910390f35b60006108c882612785565b9050919050565b6060600080546108de90614aef565b80601f016020809104026020016040519081016040528092919081815260200182805461090a90614aef565b80156109575780601f1061092c57610100808354040283529160200191610957565b820191906000526020600020905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b600061096c826127ff565b6109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906146a7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f1826119ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906146e7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8161286b565b73ffffffffffffffffffffffffffffffffffffffff161480610ab05750610aaf81610aaa61286b565b6126cb565b5b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906145e7565b60405180910390fd5b610af98383612873565b505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614707565b60405180910390fd5b60005b8251811015610c2557818181518110610bad57610bac614c88565b5b602002602001015160146000858481518110610bcc57610bcb614c88565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610c1d90614b52565b915050610b91565b505050565b60166000610c3661286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590614647565b60405180910390fd5b61014d600e54610bb9610cd19190614a05565b610cdb9190614a05565b60105410610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614507565b60405180910390fd5b600c54341015610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90614667565b60405180910390fd5b6002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90614747565b60405180910390fd5b600b544211610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906145a7565b60405180910390fd5b600c546002610e3891906149ab565b341061100557610e58610e4961286b565b610e53601261292c565b61293a565b610e626012612b08565b610e7c610e6d61286b565b610e77601261292c565b61293a565b610e866012612b08565b600160156000610e9461286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610f3457600260156000610ee361286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2c9190614a05565b925050819055505b7325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f8e573d6000803e3d6000fd5b50600260106000828254610fa29190614924565b925050819055506002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff99190614924565b925050819055506111a2565b61101f61101061286b565b61101a601261292c565b61293a565b6110296012612b08565b60006015600061103761286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156110d75760016015600061108661286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110cf9190614a05565b925050819055505b7325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611131573d6000803e3d6000fd5b506010600081548092919061114590614b52565b91905055506001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119a9190614924565b925050819055505b6002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561124a576001601660006111f861286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b565b6000600880549050905090565b600d5481565b61127061126a61286b565b82612b1e565b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614727565b60405180910390fd5b6112ba838383612bfc565b505050565b60006112ca83611ab8565b821061130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290614487565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61137f83838360405180602001604052806000815250612026565b505050565b61139561138f61286b565b82612b1e565b6113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906147a7565b60405180910390fd5b6113dd81612e58565b50565b600c54341015611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90614667565b60405180910390fd5b6016600061143161286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090614647565b60405180910390fd5b600a544210156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614587565b60405180910390fd5b60006015600061150c61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906144e7565b60405180910390fd5b600c5434101561159757611975565b600c5460026115a691906149ab565b3410611782576115c66115b761286b565b6115c1601261292c565b61293a565b6115d06012612b08565b6115ea6115db61286b565b6115e5601261292c565b61293a565b6115f46012612b08565b60026015600061160261286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164b9190614a05565b9250508190555060016016600061166061286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002601060008282546116c49190614924565b925050819055506002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461171b9190614924565b925050819055507325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561177c573d6000803e3d6000fd5b50611975565b61179c61178d61286b565b611797601261292c565b61293a565b6117a66012612b08565b6001601560006117b461286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117fd9190614a05565b925050819055506010600081548092919061181790614b52565b9190505550601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061186c90614b52565b91905055507325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118cb573d6000803e3d6000fd5b506000601560006118da61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611974576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b565b600061198161124c565b82106119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b990614767565b60405180910390fd5b600882815481106119d6576119d5614c88565b5b90600052602060002001549050919050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90614627565b60405180910390fd5b80915050919050565b60156020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090614607565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790614707565b60405180910390fd5b601860149054906101000a900460ff1615611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4790614787565b60405180910390fd5b8060139080519060200190611c669291906138dd565b506001601860146101000a81548160ff02191690831515021790555050565b60176020528060005260406000206000915090505481565b600a5481565b606060018054611cb290614aef565b80601f0160208091040260200160405190810160405280929190818152602001828054611cde90614aef565b8015611d2b5780601f10611d0057610100808354040283529160200191611d2b565b820191906000526020600020905b815481529060010190602001808311611d0e57829003601f168201915b5050505050905090565b600c5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614707565b60405180910390fd5b60005b8251811015611e6257818181518110611dea57611de9614c88565b5b602002602001015160156000858481518110611e0957611e08614c88565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e5a90614b52565b915050611dce565b505050565b611e6f61286b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614547565b60405180910390fd5b8060056000611eea61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f9761286b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fdc919061444a565b60405180910390a35050565b60146020528060005260406000206000915090505481565b60166020528060005260406000206000915054906101000a900460ff1681565b600b5481565b61203761203161286b565b83612b1e565b612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614727565b60405180910390fd5b61208284848484612f69565b50505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90614707565b60405180910390fd5b60005b60258110156121685761214b7325e15f2d794457522cff57af252f2cf84cf08744612146601261292c565b61293a565b6121556012612b08565b808061216090614b52565b91505061211b565b5060256011600082825461217c9190614924565b92505081905550565b6060612190826127ff565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c6906145c7565b60405180910390fd5b60006121d9612fc5565b905060008151116121f95760405180602001604052806000815250612224565b8061220384613057565b6040516020016122149291906143b4565b6040516020818303038152906040525b915050919050565b60115481565b601860149054906101000a900460ff1681565b600f5481565b6016600061225761286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690614647565b60405180910390fd5b600a54421015612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90614587565b60405180910390fd5b60006014600061233261286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a4906147c7565b60405180910390fd5b6001601460006123bb61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156124d45761241661240761286b565b612411601261292c565b61293a565b6124206012612b08565b60016014600061242e61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124779190614a05565b92505081905550601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124ce90614b52565b91905055505b6002601460006124e261286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156126215761253d61252e61286b565b612538601261292c565b61293a565b6125476012612b08565b61256161255261286b565b61255c601261292c565b61293a565b61256b6012612b08565b60026014600061257961286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c29190614a05565b925050819055506002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126199190614924565b925050819055505b60006014600061262f61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156126c9576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127f857506127f7826131b8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e6836119ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190614687565b60405180910390fd5b6129b3816127ff565b156129f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ea906144c7565b60405180910390fd5b6129ff6000838361329a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4f9190614924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b6000612b29826127ff565b612b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5f90614567565b60405180910390fd5b6000612b73836119ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612be257508373ffffffffffffffffffffffffffffffffffffffff16612bca84610961565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bf35750612bf281856126cb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c1c826119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c69906146c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd990614527565b60405180910390fd5b612ced83838361329a565b612cf8600082612873565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d489190614a05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d9f9190614924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612e63826119ee565b9050612e718160008461329a565b612e7c600083612873565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ecc9190614a05565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612f74848484612bfc565b612f80848484846132aa565b612fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb6906144a7565b60405180910390fd5b50505050565b606060138054612fd490614aef565b80601f016020809104026020016040519081016040528092919081815260200182805461300090614aef565b801561304d5780601f106130225761010080835404028352916020019161304d565b820191906000526020600020905b81548152906001019060200180831161303057829003601f168201915b5050505050905090565b6060600082141561309f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b3565b600082905060005b600082146130d15780806130ba90614b52565b915050600a826130ca919061497a565b91506130a7565b60008167ffffffffffffffff8111156130ed576130ec614cb7565b5b6040519080825280601f01601f19166020018201604052801561311f5781602001600182028036833780820191505090505b5090505b600085146131ac576001826131389190614a05565b9150600a856131479190614b9b565b60306131539190614924565b60f81b81838151811061316957613168614c88565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a5919061497a565b9450613123565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061328357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613293575061329282613441565b5b9050919050565b6132a58383836134ab565b505050565b60006132cb8473ffffffffffffffffffffffffffffffffffffffff166135bf565b15613434578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132f461286b565b8786866040518563ffffffff1660e01b815260040161331694939291906143fe565b602060405180830381600087803b15801561333057600080fd5b505af192505050801561336157506040513d601f19601f8201168201806040525081019061335e9190613e6d565b60015b6133e4573d8060008114613391576040519150601f19603f3d011682016040523d82523d6000602084013e613396565b606091505b506000815114156133dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d3906144a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613439565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134b68383836135d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134f9576134f4816135d7565b613538565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613537576135368382613620565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561357b576135768161378d565b6135ba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135b9576135b8828261385e565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161362d84611ab8565b6136379190614a05565b905060006007600084815260200190815260200160002054905081811461371c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137a19190614a05565b90506000600960008481526020019081526020016000205490506000600883815481106137d1576137d0614c88565b5b9060005260206000200154905080600883815481106137f3576137f2614c88565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061384257613841614c59565b5b6001900381819060005260206000200160009055905550505050565b600061386983611ab8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546138e990614aef565b90600052602060002090601f01602090048101928261390b5760008555613952565b82601f1061392457805160ff1916838001178555613952565b82800160010185558215613952579182015b82811115613951578251825591602001919060010190613936565b5b50905061395f9190613963565b5090565b5b8082111561397c576000816000905550600101613964565b5090565b600061399361398e84614827565b614802565b905080838252602082019050828560208602820111156139b6576139b5614ceb565b5b60005b858110156139e657816139cc8882613ae4565b8452602084019350602083019250506001810190506139b9565b5050509392505050565b6000613a036139fe84614853565b614802565b90508083825260208201905082856020860282011115613a2657613a25614ceb565b5b60005b85811015613a565781613a3c8882613bf0565b845260208401935060208301925050600181019050613a29565b5050509392505050565b6000613a73613a6e8461487f565b614802565b905082815260208101848484011115613a8f57613a8e614cf0565b5b613a9a848285614aad565b509392505050565b6000613ab5613ab0846148b0565b614802565b905082815260208101848484011115613ad157613ad0614cf0565b5b613adc848285614aad565b509392505050565b600081359050613af3816153c6565b92915050565b600082601f830112613b0e57613b0d614ce6565b5b8135613b1e848260208601613980565b91505092915050565b600082601f830112613b3c57613b3b614ce6565b5b8135613b4c8482602086016139f0565b91505092915050565b600081359050613b64816153dd565b92915050565b600081359050613b79816153f4565b92915050565b600081519050613b8e816153f4565b92915050565b600082601f830112613ba957613ba8614ce6565b5b8135613bb9848260208601613a60565b91505092915050565b600082601f830112613bd757613bd6614ce6565b5b8135613be7848260208601613aa2565b91505092915050565b600081359050613bff8161540b565b92915050565b600060208284031215613c1b57613c1a614cfa565b5b6000613c2984828501613ae4565b91505092915050565b60008060408385031215613c4957613c48614cfa565b5b6000613c5785828601613ae4565b9250506020613c6885828601613ae4565b9150509250929050565b600080600060608486031215613c8b57613c8a614cfa565b5b6000613c9986828701613ae4565b9350506020613caa86828701613ae4565b9250506040613cbb86828701613bf0565b9150509250925092565b60008060008060808587031215613cdf57613cde614cfa565b5b6000613ced87828801613ae4565b9450506020613cfe87828801613ae4565b9350506040613d0f87828801613bf0565b925050606085013567ffffffffffffffff811115613d3057613d2f614cf5565b5b613d3c87828801613b94565b91505092959194509250565b60008060408385031215613d5f57613d5e614cfa565b5b6000613d6d85828601613ae4565b9250506020613d7e85828601613b55565b9150509250929050565b60008060408385031215613d9f57613d9e614cfa565b5b6000613dad85828601613ae4565b9250506020613dbe85828601613bf0565b9150509250929050565b60008060408385031215613ddf57613dde614cfa565b5b600083013567ffffffffffffffff811115613dfd57613dfc614cf5565b5b613e0985828601613af9565b925050602083013567ffffffffffffffff811115613e2a57613e29614cf5565b5b613e3685828601613b27565b9150509250929050565b600060208284031215613e5657613e55614cfa565b5b6000613e6484828501613b6a565b91505092915050565b600060208284031215613e8357613e82614cfa565b5b6000613e9184828501613b7f565b91505092915050565b600060208284031215613eb057613eaf614cfa565b5b600082013567ffffffffffffffff811115613ece57613ecd614cf5565b5b613eda84828501613bc2565b91505092915050565b600060208284031215613ef957613ef8614cfa565b5b6000613f0784828501613bf0565b91505092915050565b613f1981614a39565b82525050565b613f2881614a4b565b82525050565b6000613f39826148e1565b613f4381856148f7565b9350613f53818560208601614abc565b613f5c81614cff565b840191505092915050565b6000613f72826148ec565b613f7c8185614908565b9350613f8c818560208601614abc565b613f9581614cff565b840191505092915050565b6000613fab826148ec565b613fb58185614919565b9350613fc5818560208601614abc565b80840191505092915050565b6000613fde602b83614908565b9150613fe982614d10565b604082019050919050565b6000614001603283614908565b915061400c82614d5f565b604082019050919050565b6000614024601c83614908565b915061402f82614dae565b602082019050919050565b6000614047601a83614908565b915061405282614dd7565b602082019050919050565b600061406a600883614908565b915061407582614e00565b602082019050919050565b600061408d602483614908565b915061409882614e29565b604082019050919050565b60006140b0601983614908565b91506140bb82614e78565b602082019050919050565b60006140d3602c83614908565b91506140de82614ea1565b604082019050919050565b60006140f6600983614908565b915061410182614ef0565b602082019050919050565b6000614119602583614908565b915061412482614f19565b604082019050919050565b600061413c603683614908565b915061414782614f68565b604082019050919050565b600061415f603883614908565b915061416a82614fb7565b604082019050919050565b6000614182602a83614908565b915061418d82615006565b604082019050919050565b60006141a5602983614908565b91506141b082615055565b604082019050919050565b60006141c8600d83614908565b91506141d3826150a4565b602082019050919050565b60006141eb600d83614908565b91506141f6826150cd565b602082019050919050565b600061420e602083614908565b9150614219826150f6565b602082019050919050565b6000614231602c83614908565b915061423c8261511f565b604082019050919050565b6000614254600583614919565b915061425f8261516e565b600582019050919050565b6000614277602983614908565b915061428282615197565b604082019050919050565b600061429a602183614908565b91506142a5826151e6565b604082019050919050565b60006142bd600083614908565b91506142c882615235565b600082019050919050565b60006142e0603183614908565b91506142eb82615238565b604082019050919050565b6000614303600e83614908565b915061430e82615287565b602082019050919050565b6000614326602c83614908565b9150614331826152b0565b604082019050919050565b6000614349600b83614908565b9150614354826152ff565b602082019050919050565b600061436c603083614908565b915061437782615328565b604082019050919050565b600061438f602183614908565b915061439a82615377565b604082019050919050565b6143ae81614aa3565b82525050565b60006143c08285613fa0565b91506143cc8284613fa0565b91506143d782614247565b91508190509392505050565b60006020820190506143f86000830184613f10565b92915050565b60006080820190506144136000830187613f10565b6144206020830186613f10565b61442d60408301856143a5565b818103606083015261443f8184613f2e565b905095945050505050565b600060208201905061445f6000830184613f1f565b92915050565b6000602082019050818103600083015261447f8184613f67565b905092915050565b600060208201905081810360008301526144a081613fd1565b9050919050565b600060208201905081810360008301526144c081613ff4565b9050919050565b600060208201905081810360008301526144e081614017565b9050919050565b600060208201905081810360008301526145008161403a565b9050919050565b600060208201905081810360008301526145208161405d565b9050919050565b6000602082019050818103600083015261454081614080565b9050919050565b60006020820190508181036000830152614560816140a3565b9050919050565b60006020820190508181036000830152614580816140c6565b9050919050565b600060208201905081810360008301526145a0816140e9565b9050919050565b600060208201905081810360008301526145c08161410c565b9050919050565b600060208201905081810360008301526145e08161412f565b9050919050565b6000602082019050818103600083015261460081614152565b9050919050565b6000602082019050818103600083015261462081614175565b9050919050565b6000602082019050818103600083015261464081614198565b9050919050565b60006020820190508181036000830152614660816141bb565b9050919050565b60006020820190508181036000830152614680816141de565b9050919050565b600060208201905081810360008301526146a081614201565b9050919050565b600060208201905081810360008301526146c081614224565b9050919050565b600060208201905081810360008301526146e08161426a565b9050919050565b600060208201905081810360008301526147008161428d565b9050919050565b60006020820190508181036000830152614720816142b0565b9050919050565b60006020820190508181036000830152614740816142d3565b9050919050565b60006020820190508181036000830152614760816142f6565b9050919050565b6000602082019050818103600083015261478081614319565b9050919050565b600060208201905081810360008301526147a08161433c565b9050919050565b600060208201905081810360008301526147c08161435f565b9050919050565b600060208201905081810360008301526147e081614382565b9050919050565b60006020820190506147fc60008301846143a5565b92915050565b600061480c61481d565b90506148188282614b21565b919050565b6000604051905090565b600067ffffffffffffffff82111561484257614841614cb7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561486e5761486d614cb7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561489a57614899614cb7565b5b6148a382614cff565b9050602081019050919050565b600067ffffffffffffffff8211156148cb576148ca614cb7565b5b6148d482614cff565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061492f82614aa3565b915061493a83614aa3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561496f5761496e614bcc565b5b828201905092915050565b600061498582614aa3565b915061499083614aa3565b9250826149a05761499f614bfb565b5b828204905092915050565b60006149b682614aa3565b91506149c183614aa3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149fa576149f9614bcc565b5b828202905092915050565b6000614a1082614aa3565b9150614a1b83614aa3565b925082821015614a2e57614a2d614bcc565b5b828203905092915050565b6000614a4482614a83565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ada578082015181840152602081019050614abf565b83811115614ae9576000848401525b50505050565b60006002820490506001821680614b0757607f821691505b60208210811415614b1b57614b1a614c2a565b5b50919050565b614b2a82614cff565b810181811067ffffffffffffffff82111715614b4957614b48614cb7565b5b80604052505050565b6000614b5d82614aa3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b9057614b8f614bcc565b5b600182019050919050565b6000614ba682614aa3565b9150614bb183614aa3565b925082614bc157614bc0614bfb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f75206861766520746f20626520696e20746865206c697374000000000000600082015250565b7f53656c6c204f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e4f542053544152540000000000000000000000000000000000000000000000600082015250565b7f57616974696e6720666f7220746865207072697661746520706c6163656d656e60008201527f7420656e64000000000000000000000000000000000000000000000000000000602082015250565b7f4c6567656e6473204f662054686520576f726c64203a2055524920717565727960008201527f20666f72206e6f6e6578697374656e7420746f6b656e00000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920427579204f6e636500000000000000000000000000000000000000600082015250565b7f56616c756520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f6e6c79204275792032204e4654000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4950465320456e61626c65000000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f596f75277265206e6f7420696e20746865204561726c792042697264204c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6153cf81614a39565b81146153da57600080fd5b50565b6153e681614a4b565b81146153f157600080fd5b50565b6153fd81614a57565b811461540857600080fd5b50565b61541481614aa3565b811461541f57600080fd5b5056fea2646970667358221220b45d064299d78bb11b0a5a485a74da5ecb6229751005b7e4e77734674af0a12964736f6c6343000806003368747470733a2f2f67756e62756c6c2e6f72672f6d657461646174612f6a736f6e2f

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806373ff167011610123578063b342f19c116100ab578063cd0b32791161006f578063cd0b3279146107e8578063e0202f8714610813578063e5d28aee1461083e578063e985e9c514610855578063ff1b636d1461089257610225565b8063b342f19c14610715578063b88d4fde14610740578063ba7a86b814610769578063c87b56dd14610780578063cb214c5e146107bd57610225565b80639dfde201116100f25780639dfde2011461061e578063a0d41d9f14610649578063a22cb46514610672578063a3200a921461069b578063afe88cb8146106d857610225565b806373ff167014610562578063784be37c1461058b5780638a2132b4146105c857806395d89b41146105f357610225565b80632f745c59116101a65780634f6ccce7116101755780634f6ccce714610443578063504471aa146104805780636352211e146104ab5780636bc20157146104e857806370a082311461052557610225565b80632f745c59146103aa57806342842e0e146103e757806342966c68146104105780634580ecb41461043957610225565b80630a4adac0116101ed5780630a4adac0146102f85780631249c58b1461032157806318160ddd1461032b5780631a39d8ef1461035657806323b872dd1461038157610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613e40565b6108bd565b60405161025e919061444a565b60405180910390f35b34801561027357600080fd5b5061027c6108cf565b6040516102899190614465565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613ee3565b610961565b6040516102c691906143e3565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613d88565b6109e6565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613dc8565b610afe565b005b610329610c2a565b005b34801561033757600080fd5b5061034061124c565b60405161034d91906147e7565b60405180910390f35b34801561036257600080fd5b5061036b611259565b60405161037891906147e7565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613c72565b61125f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613d88565b6112bf565b6040516103de91906147e7565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190613c72565b611364565b005b34801561041c57600080fd5b5061043760048036038101906104329190613ee3565b611384565b005b6104416113e0565b005b34801561044f57600080fd5b5061046a60048036038101906104659190613ee3565b611977565b60405161047791906147e7565b60405180910390f35b34801561048c57600080fd5b506104956119e8565b6040516104a291906147e7565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613ee3565b6119ee565b6040516104df91906143e3565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613c05565b611aa0565b60405161051c91906147e7565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190613c05565b611ab8565b60405161055991906147e7565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613e9a565b611b70565b005b34801561059757600080fd5b506105b260048036038101906105ad9190613c05565b611c85565b6040516105bf91906147e7565b60405180910390f35b3480156105d457600080fd5b506105dd611c9d565b6040516105ea91906147e7565b60405180910390f35b3480156105ff57600080fd5b50610608611ca3565b6040516106159190614465565b60405180910390f35b34801561062a57600080fd5b50610633611d35565b60405161064091906147e7565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613dc8565b611d3b565b005b34801561067e57600080fd5b5061069960048036038101906106949190613d48565b611e67565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613c05565b611fe8565b6040516106cf91906147e7565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613c05565b612000565b60405161070c919061444a565b60405180910390f35b34801561072157600080fd5b5061072a612020565b60405161073791906147e7565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613cc5565b612026565b005b34801561077557600080fd5b5061077e612088565b005b34801561078c57600080fd5b506107a760048036038101906107a29190613ee3565b612185565b6040516107b49190614465565b60405180910390f35b3480156107c957600080fd5b506107d261222c565b6040516107df91906147e7565b60405180910390f35b3480156107f457600080fd5b506107fd612232565b60405161080a919061444a565b60405180910390f35b34801561081f57600080fd5b50610828612245565b60405161083591906147e7565b60405180910390f35b34801561084a57600080fd5b5061085361224b565b005b34801561086157600080fd5b5061087c60048036038101906108779190613c32565b6126cb565b604051610889919061444a565b60405180910390f35b34801561089e57600080fd5b506108a761275f565b6040516108b491906143e3565b60405180910390f35b60006108c882612785565b9050919050565b6060600080546108de90614aef565b80601f016020809104026020016040519081016040528092919081815260200182805461090a90614aef565b80156109575780601f1061092c57610100808354040283529160200191610957565b820191906000526020600020905b81548152906001019060200180831161093a57829003601f168201915b5050505050905090565b600061096c826127ff565b6109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906146a7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f1826119ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906146e7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8161286b565b73ffffffffffffffffffffffffffffffffffffffff161480610ab05750610aaf81610aaa61286b565b6126cb565b5b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906145e7565b60405180910390fd5b610af98383612873565b505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614707565b60405180910390fd5b60005b8251811015610c2557818181518110610bad57610bac614c88565b5b602002602001015160146000858481518110610bcc57610bcb614c88565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610c1d90614b52565b915050610b91565b505050565b60166000610c3661286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590614647565b60405180910390fd5b61014d600e54610bb9610cd19190614a05565b610cdb9190614a05565b60105410610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614507565b60405180910390fd5b600c54341015610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90614667565b60405180910390fd5b6002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90614747565b60405180910390fd5b600b544211610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906145a7565b60405180910390fd5b600c546002610e3891906149ab565b341061100557610e58610e4961286b565b610e53601261292c565b61293a565b610e626012612b08565b610e7c610e6d61286b565b610e77601261292c565b61293a565b610e866012612b08565b600160156000610e9461286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610f3457600260156000610ee361286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2c9190614a05565b925050819055505b7325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f8e573d6000803e3d6000fd5b50600260106000828254610fa29190614924565b925050819055506002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff99190614924565b925050819055506111a2565b61101f61101061286b565b61101a601261292c565b61293a565b6110296012612b08565b60006015600061103761286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156110d75760016015600061108661286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110cf9190614a05565b925050819055505b7325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611131573d6000803e3d6000fd5b506010600081548092919061114590614b52565b91905055506001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119a9190614924565b925050819055505b6002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561124a576001601660006111f861286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b565b6000600880549050905090565b600d5481565b61127061126a61286b565b82612b1e565b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614727565b60405180910390fd5b6112ba838383612bfc565b505050565b60006112ca83611ab8565b821061130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290614487565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61137f83838360405180602001604052806000815250612026565b505050565b61139561138f61286b565b82612b1e565b6113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906147a7565b60405180910390fd5b6113dd81612e58565b50565b600c54341015611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90614667565b60405180910390fd5b6016600061143161286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090614647565b60405180910390fd5b600a544210156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614587565b60405180910390fd5b60006015600061150c61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906144e7565b60405180910390fd5b600c5434101561159757611975565b600c5460026115a691906149ab565b3410611782576115c66115b761286b565b6115c1601261292c565b61293a565b6115d06012612b08565b6115ea6115db61286b565b6115e5601261292c565b61293a565b6115f46012612b08565b60026015600061160261286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164b9190614a05565b9250508190555060016016600061166061286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002601060008282546116c49190614924565b925050819055506002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461171b9190614924565b925050819055507325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561177c573d6000803e3d6000fd5b50611975565b61179c61178d61286b565b611797601261292c565b61293a565b6117a66012612b08565b6001601560006117b461286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117fd9190614a05565b925050819055506010600081548092919061181790614b52565b9190505550601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061186c90614b52565b91905055507325e15f2d794457522cff57af252f2cf84cf0874473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118cb573d6000803e3d6000fd5b506000601560006118da61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611974576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b565b600061198161124c565b82106119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b990614767565b60405180910390fd5b600882815481106119d6576119d5614c88565b5b90600052602060002001549050919050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90614627565b60405180910390fd5b80915050919050565b60156020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090614607565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790614707565b60405180910390fd5b601860149054906101000a900460ff1615611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4790614787565b60405180910390fd5b8060139080519060200190611c669291906138dd565b506001601860146101000a81548160ff02191690831515021790555050565b60176020528060005260406000206000915090505481565b600a5481565b606060018054611cb290614aef565b80601f0160208091040260200160405190810160405280929190818152602001828054611cde90614aef565b8015611d2b5780601f10611d0057610100808354040283529160200191611d2b565b820191906000526020600020905b815481529060010190602001808311611d0e57829003601f168201915b5050505050905090565b600c5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290614707565b60405180910390fd5b60005b8251811015611e6257818181518110611dea57611de9614c88565b5b602002602001015160156000858481518110611e0957611e08614c88565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e5a90614b52565b915050611dce565b505050565b611e6f61286b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490614547565b60405180910390fd5b8060056000611eea61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f9761286b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fdc919061444a565b60405180910390a35050565b60146020528060005260406000206000915090505481565b60166020528060005260406000206000915054906101000a900460ff1681565b600b5481565b61203761203161286b565b83612b1e565b612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614727565b60405180910390fd5b61208284848484612f69565b50505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90614707565b60405180910390fd5b60005b60258110156121685761214b7325e15f2d794457522cff57af252f2cf84cf08744612146601261292c565b61293a565b6121556012612b08565b808061216090614b52565b91505061211b565b5060256011600082825461217c9190614924565b92505081905550565b6060612190826127ff565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c6906145c7565b60405180910390fd5b60006121d9612fc5565b905060008151116121f95760405180602001604052806000815250612224565b8061220384613057565b6040516020016122149291906143b4565b6040516020818303038152906040525b915050919050565b60115481565b601860149054906101000a900460ff1681565b600f5481565b6016600061225761286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d690614647565b60405180910390fd5b600a54421015612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b90614587565b60405180910390fd5b60006014600061233261286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a4906147c7565b60405180910390fd5b6001601460006123bb61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156124d45761241661240761286b565b612411601261292c565b61293a565b6124206012612b08565b60016014600061242e61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124779190614a05565b92505081905550601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124ce90614b52565b91905055505b6002601460006124e261286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156126215761253d61252e61286b565b612538601261292c565b61293a565b6125476012612b08565b61256161255261286b565b61255c601261292c565b61293a565b61256b6012612b08565b60026014600061257961286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c29190614a05565b925050819055506002601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126199190614924565b925050819055505b60006014600061262f61286b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156126c9576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127f857506127f7826131b8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e6836119ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190614687565b60405180910390fd5b6129b3816127ff565b156129f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ea906144c7565b60405180910390fd5b6129ff6000838361329a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4f9190614924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b6000612b29826127ff565b612b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5f90614567565b60405180910390fd5b6000612b73836119ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612be257508373ffffffffffffffffffffffffffffffffffffffff16612bca84610961565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bf35750612bf281856126cb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c1c826119ee565b73ffffffffffffffffffffffffffffffffffffffff1614612c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c69906146c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd990614527565b60405180910390fd5b612ced83838361329a565b612cf8600082612873565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d489190614a05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d9f9190614924565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612e63826119ee565b9050612e718160008461329a565b612e7c600083612873565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ecc9190614a05565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612f74848484612bfc565b612f80848484846132aa565b612fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb6906144a7565b60405180910390fd5b50505050565b606060138054612fd490614aef565b80601f016020809104026020016040519081016040528092919081815260200182805461300090614aef565b801561304d5780601f106130225761010080835404028352916020019161304d565b820191906000526020600020905b81548152906001019060200180831161303057829003601f168201915b5050505050905090565b6060600082141561309f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b3565b600082905060005b600082146130d15780806130ba90614b52565b915050600a826130ca919061497a565b91506130a7565b60008167ffffffffffffffff8111156130ed576130ec614cb7565b5b6040519080825280601f01601f19166020018201604052801561311f5781602001600182028036833780820191505090505b5090505b600085146131ac576001826131389190614a05565b9150600a856131479190614b9b565b60306131539190614924565b60f81b81838151811061316957613168614c88565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a5919061497a565b9450613123565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061328357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613293575061329282613441565b5b9050919050565b6132a58383836134ab565b505050565b60006132cb8473ffffffffffffffffffffffffffffffffffffffff166135bf565b15613434578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132f461286b565b8786866040518563ffffffff1660e01b815260040161331694939291906143fe565b602060405180830381600087803b15801561333057600080fd5b505af192505050801561336157506040513d601f19601f8201168201806040525081019061335e9190613e6d565b60015b6133e4573d8060008114613391576040519150601f19603f3d011682016040523d82523d6000602084013e613396565b606091505b506000815114156133dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d3906144a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613439565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134b68383836135d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134f9576134f4816135d7565b613538565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613537576135368382613620565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561357b576135768161378d565b6135ba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135b9576135b8828261385e565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161362d84611ab8565b6136379190614a05565b905060006007600084815260200190815260200160002054905081811461371c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137a19190614a05565b90506000600960008481526020019081526020016000205490506000600883815481106137d1576137d0614c88565b5b9060005260206000200154905080600883815481106137f3576137f2614c88565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061384257613841614c59565b5b6001900381819060005260206000200160009055905550505050565b600061386983611ab8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546138e990614aef565b90600052602060002090601f01602090048101928261390b5760008555613952565b82601f1061392457805160ff1916838001178555613952565b82800160010185558215613952579182015b82811115613951578251825591602001919060010190613936565b5b50905061395f9190613963565b5090565b5b8082111561397c576000816000905550600101613964565b5090565b600061399361398e84614827565b614802565b905080838252602082019050828560208602820111156139b6576139b5614ceb565b5b60005b858110156139e657816139cc8882613ae4565b8452602084019350602083019250506001810190506139b9565b5050509392505050565b6000613a036139fe84614853565b614802565b90508083825260208201905082856020860282011115613a2657613a25614ceb565b5b60005b85811015613a565781613a3c8882613bf0565b845260208401935060208301925050600181019050613a29565b5050509392505050565b6000613a73613a6e8461487f565b614802565b905082815260208101848484011115613a8f57613a8e614cf0565b5b613a9a848285614aad565b509392505050565b6000613ab5613ab0846148b0565b614802565b905082815260208101848484011115613ad157613ad0614cf0565b5b613adc848285614aad565b509392505050565b600081359050613af3816153c6565b92915050565b600082601f830112613b0e57613b0d614ce6565b5b8135613b1e848260208601613980565b91505092915050565b600082601f830112613b3c57613b3b614ce6565b5b8135613b4c8482602086016139f0565b91505092915050565b600081359050613b64816153dd565b92915050565b600081359050613b79816153f4565b92915050565b600081519050613b8e816153f4565b92915050565b600082601f830112613ba957613ba8614ce6565b5b8135613bb9848260208601613a60565b91505092915050565b600082601f830112613bd757613bd6614ce6565b5b8135613be7848260208601613aa2565b91505092915050565b600081359050613bff8161540b565b92915050565b600060208284031215613c1b57613c1a614cfa565b5b6000613c2984828501613ae4565b91505092915050565b60008060408385031215613c4957613c48614cfa565b5b6000613c5785828601613ae4565b9250506020613c6885828601613ae4565b9150509250929050565b600080600060608486031215613c8b57613c8a614cfa565b5b6000613c9986828701613ae4565b9350506020613caa86828701613ae4565b9250506040613cbb86828701613bf0565b9150509250925092565b60008060008060808587031215613cdf57613cde614cfa565b5b6000613ced87828801613ae4565b9450506020613cfe87828801613ae4565b9350506040613d0f87828801613bf0565b925050606085013567ffffffffffffffff811115613d3057613d2f614cf5565b5b613d3c87828801613b94565b91505092959194509250565b60008060408385031215613d5f57613d5e614cfa565b5b6000613d6d85828601613ae4565b9250506020613d7e85828601613b55565b9150509250929050565b60008060408385031215613d9f57613d9e614cfa565b5b6000613dad85828601613ae4565b9250506020613dbe85828601613bf0565b9150509250929050565b60008060408385031215613ddf57613dde614cfa565b5b600083013567ffffffffffffffff811115613dfd57613dfc614cf5565b5b613e0985828601613af9565b925050602083013567ffffffffffffffff811115613e2a57613e29614cf5565b5b613e3685828601613b27565b9150509250929050565b600060208284031215613e5657613e55614cfa565b5b6000613e6484828501613b6a565b91505092915050565b600060208284031215613e8357613e82614cfa565b5b6000613e9184828501613b7f565b91505092915050565b600060208284031215613eb057613eaf614cfa565b5b600082013567ffffffffffffffff811115613ece57613ecd614cf5565b5b613eda84828501613bc2565b91505092915050565b600060208284031215613ef957613ef8614cfa565b5b6000613f0784828501613bf0565b91505092915050565b613f1981614a39565b82525050565b613f2881614a4b565b82525050565b6000613f39826148e1565b613f4381856148f7565b9350613f53818560208601614abc565b613f5c81614cff565b840191505092915050565b6000613f72826148ec565b613f7c8185614908565b9350613f8c818560208601614abc565b613f9581614cff565b840191505092915050565b6000613fab826148ec565b613fb58185614919565b9350613fc5818560208601614abc565b80840191505092915050565b6000613fde602b83614908565b9150613fe982614d10565b604082019050919050565b6000614001603283614908565b915061400c82614d5f565b604082019050919050565b6000614024601c83614908565b915061402f82614dae565b602082019050919050565b6000614047601a83614908565b915061405282614dd7565b602082019050919050565b600061406a600883614908565b915061407582614e00565b602082019050919050565b600061408d602483614908565b915061409882614e29565b604082019050919050565b60006140b0601983614908565b91506140bb82614e78565b602082019050919050565b60006140d3602c83614908565b91506140de82614ea1565b604082019050919050565b60006140f6600983614908565b915061410182614ef0565b602082019050919050565b6000614119602583614908565b915061412482614f19565b604082019050919050565b600061413c603683614908565b915061414782614f68565b604082019050919050565b600061415f603883614908565b915061416a82614fb7565b604082019050919050565b6000614182602a83614908565b915061418d82615006565b604082019050919050565b60006141a5602983614908565b91506141b082615055565b604082019050919050565b60006141c8600d83614908565b91506141d3826150a4565b602082019050919050565b60006141eb600d83614908565b91506141f6826150cd565b602082019050919050565b600061420e602083614908565b9150614219826150f6565b602082019050919050565b6000614231602c83614908565b915061423c8261511f565b604082019050919050565b6000614254600583614919565b915061425f8261516e565b600582019050919050565b6000614277602983614908565b915061428282615197565b604082019050919050565b600061429a602183614908565b91506142a5826151e6565b604082019050919050565b60006142bd600083614908565b91506142c882615235565b600082019050919050565b60006142e0603183614908565b91506142eb82615238565b604082019050919050565b6000614303600e83614908565b915061430e82615287565b602082019050919050565b6000614326602c83614908565b9150614331826152b0565b604082019050919050565b6000614349600b83614908565b9150614354826152ff565b602082019050919050565b600061436c603083614908565b915061437782615328565b604082019050919050565b600061438f602183614908565b915061439a82615377565b604082019050919050565b6143ae81614aa3565b82525050565b60006143c08285613fa0565b91506143cc8284613fa0565b91506143d782614247565b91508190509392505050565b60006020820190506143f86000830184613f10565b92915050565b60006080820190506144136000830187613f10565b6144206020830186613f10565b61442d60408301856143a5565b818103606083015261443f8184613f2e565b905095945050505050565b600060208201905061445f6000830184613f1f565b92915050565b6000602082019050818103600083015261447f8184613f67565b905092915050565b600060208201905081810360008301526144a081613fd1565b9050919050565b600060208201905081810360008301526144c081613ff4565b9050919050565b600060208201905081810360008301526144e081614017565b9050919050565b600060208201905081810360008301526145008161403a565b9050919050565b600060208201905081810360008301526145208161405d565b9050919050565b6000602082019050818103600083015261454081614080565b9050919050565b60006020820190508181036000830152614560816140a3565b9050919050565b60006020820190508181036000830152614580816140c6565b9050919050565b600060208201905081810360008301526145a0816140e9565b9050919050565b600060208201905081810360008301526145c08161410c565b9050919050565b600060208201905081810360008301526145e08161412f565b9050919050565b6000602082019050818103600083015261460081614152565b9050919050565b6000602082019050818103600083015261462081614175565b9050919050565b6000602082019050818103600083015261464081614198565b9050919050565b60006020820190508181036000830152614660816141bb565b9050919050565b60006020820190508181036000830152614680816141de565b9050919050565b600060208201905081810360008301526146a081614201565b9050919050565b600060208201905081810360008301526146c081614224565b9050919050565b600060208201905081810360008301526146e08161426a565b9050919050565b600060208201905081810360008301526147008161428d565b9050919050565b60006020820190508181036000830152614720816142b0565b9050919050565b60006020820190508181036000830152614740816142d3565b9050919050565b60006020820190508181036000830152614760816142f6565b9050919050565b6000602082019050818103600083015261478081614319565b9050919050565b600060208201905081810360008301526147a08161433c565b9050919050565b600060208201905081810360008301526147c08161435f565b9050919050565b600060208201905081810360008301526147e081614382565b9050919050565b60006020820190506147fc60008301846143a5565b92915050565b600061480c61481d565b90506148188282614b21565b919050565b6000604051905090565b600067ffffffffffffffff82111561484257614841614cb7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561486e5761486d614cb7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561489a57614899614cb7565b5b6148a382614cff565b9050602081019050919050565b600067ffffffffffffffff8211156148cb576148ca614cb7565b5b6148d482614cff565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061492f82614aa3565b915061493a83614aa3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561496f5761496e614bcc565b5b828201905092915050565b600061498582614aa3565b915061499083614aa3565b9250826149a05761499f614bfb565b5b828204905092915050565b60006149b682614aa3565b91506149c183614aa3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149fa576149f9614bcc565b5b828202905092915050565b6000614a1082614aa3565b9150614a1b83614aa3565b925082821015614a2e57614a2d614bcc565b5b828203905092915050565b6000614a4482614a83565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ada578082015181840152602081019050614abf565b83811115614ae9576000848401525b50505050565b60006002820490506001821680614b0757607f821691505b60208210811415614b1b57614b1a614c2a565b5b50919050565b614b2a82614cff565b810181811067ffffffffffffffff82111715614b4957614b48614cb7565b5b80604052505050565b6000614b5d82614aa3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b9057614b8f614bcc565b5b600182019050919050565b6000614ba682614aa3565b9150614bb183614aa3565b925082614bc157614bc0614bfb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f75206861766520746f20626520696e20746865206c697374000000000000600082015250565b7f53656c6c204f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e4f542053544152540000000000000000000000000000000000000000000000600082015250565b7f57616974696e6720666f7220746865207072697661746520706c6163656d656e60008201527f7420656e64000000000000000000000000000000000000000000000000000000602082015250565b7f4c6567656e6473204f662054686520576f726c64203a2055524920717565727960008201527f20666f72206e6f6e6578697374656e7420746f6b656e00000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920427579204f6e636500000000000000000000000000000000000000600082015250565b7f56616c756520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f6e6c79204275792032204e4654000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4950465320456e61626c65000000000000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f596f75277265206e6f7420696e20746865204561726c792042697264204c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6153cf81614a39565b81146153da57600080fd5b50565b6153e681614a4b565b81146153f157600080fd5b50565b6153fd81614a57565b811461540857600080fd5b50565b61541481614aa3565b811461541f57600080fd5b5056fea2646970667358221220b45d064299d78bb11b0a5a485a74da5ecb6229751005b7e4e77734674af0a12964736f6c63430008060033

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.