ETH Price: $3,363.17 (-2.36%)
Gas: 2 Gwei

Token

THE ZABA$ (ZABA$)
 

Overview

Max Total Supply

3,516 ZABA$

Holders

1,102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ZABA$
0x15f7bd67794210f8c9e0e4387b084b2d05a0fdf6
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:
TheZabas

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ZabasNFT.sol
/**
@@@@@@@  @@@  @@@  @@@@@@@@     @@@@@@@@   @@@@@@   @@@@@@@    @@@@@@       @@      
@@@@@@@  @@@  @@@  @@@@@@@@     @@@@@@@@  @@@@@@@@  @@@@@@@@  @@@@@@@@   @@@@@@@@@  
  @@!    @@!  @@@  @@!               @@!  @@!  @@@  @@!  @@@  @@!  @@@  !@@!@@!@@!  
  !@!    !@!  @!@  !@!              !@!   !@!  @!@  !@   @!@  !@!  @!@  !@! !@      
  @!!    @!@!@!@!  @!!!:!          @!!    @!@!@!@!  @!@!@!@   @!@!@!@!  !!!@@!!!!   
  !!!    !!!@!!!!  !!!!!:         !!!     !!!@!!!!  !!!@!!!!  !!!@!!!!   !!!@@@!!!  
  !!:    !!:  !!!  !!:           !!:      !!:  !!!  !!:  !!!  !!:  !!!      !: !:!  
  :!:    :!:  !:!  :!:          :!:       :!:  !:!  :!:  !:!  :!:  !:!  !:!!:!: :!  
   ::    ::   :::   :: ::::      :: ::::  ::   :::   :: ::::  ::   :::  : :::: ::   
   :      :   : :  : :: ::      : :: : :   :   : :  :: : ::    :   : :      ::                                                                       
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


contract ERC721Base is ERC721, Ownable {
    using Strings for uint256;

    address public treasury;
    bytes32 public wlMerkleRoot;
    uint256 public fee;

    enum stage { Paused, WL, Open }
    stage public mintStage = stage.Paused;
    
    string public preTokenURI;
    string public baseTokenURI;

    uint256 private immutable supply;//max
    uint256 private supplyIndex;//1 based
    uint16 public limit;//per account
    mapping(address => uint16) public limitIndex;//per account

    bool private reentrancyLock = false;
    modifier nonreentrancy {
        if (reentrancyLock) {
            revert();
        }
        reentrancyLock = true;
        _;
        reentrancyLock = false;
    }

    modifier onlyOpen() {
        require(_msgSender() == tx.origin, "ZABA$: Only EOA allowed");
        require(mintStage == stage.Open, "ZABA$: Open Mint Not Active");
        _;
    }

    modifier onlyWhitelisted(bytes32[] calldata proof) {
        require(_msgSender() == tx.origin, "ZABA$: Only EOA allowed");
        require(mintStage == stage.WL, "ZABA$: Whitelist Not Active");
        require(limitIndex[_msgSender()] == 0, "ZABA$: Only one WL Mint Allowed.");
        require(isWhitelisted(_msgSender(), proof), "ZABA$: Account Not Whitelisted");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxSupply,
        uint16 _mintLimit,
        uint256 _mintFee
    ) ERC721(_name, _symbol) {
        supply = _maxSupply;
        limit = _mintLimit;
        fee = _mintFee;
    }

    function mint(
        uint16 amount
    ) external payable nonreentrancy onlyOpen {
        _mintAmount(amount);
    }

    function wlMint(
        uint16 amount,
        bytes32[] calldata proof
    ) external payable nonreentrancy onlyWhitelisted(proof) {
        _mintAmount(amount);
    }

    function _mintAmount(
        uint16 amount
    ) internal {
        require(amount > 0, "ZABA$: Invalid amount.");
        require(supplyIndex + amount <= supply, "ZABA$: NFT supply maximum reached.");
        require(limit == 0 || limitIndex[_msgSender()] + amount <= limit, "ZABA$: Mint limit reached.");
        
        uint256 _totalFee = fee * amount;
        require(msg.value >= _totalFee, "ZABA$: Mint fee required.");
        if (msg.value > _totalFee) {
            refundOverpay(msg.value - _totalFee);
        }
        Address.sendValue(payable(treasury), address(this).balance);

        for (uint16 i = 1; i <= amount; i++) {
            _mint(_msgSender(), supplyIndex + i);
        }
        supplyIndex += amount;
        limitIndex[_msgSender()] += amount;
    }

    function admint(
        uint16 amount
    ) external onlyOwner {
        require(supplyIndex + amount <= supply, "ZABA$: NFT supply maximum reached.");
        for (uint16 i = 1; i <= amount; i++) {
            _mint(_msgSender(), supplyIndex + i);
        }
        supplyIndex += amount;
    }

    function setWhitelistRoot(
        bytes32 merkleRoot
    ) public onlyOwner {
        wlMerkleRoot = merkleRoot;
    }

    function setMintStage(
        stage _mintStage
    ) external onlyOwner {
        mintStage = _mintStage;
    }

    function setMintLimit(
        uint16 _mintLimit
    ) external onlyOwner {
        limit = _mintLimit;
    }

    function setMintFee(
        uint256 _mintFee
    ) external onlyOwner {
        fee = _mintFee;
    }

    function setTreasury(
        address _treasury
    ) external onlyOwner {
        treasury = _treasury;
    }

    function setPreTokenURI(
        string memory _preTokenURI
    ) external onlyOwner {
        preTokenURI = _preTokenURI;
    }

    function setBaseTokenURI(
        string memory _baseTokenURI
    ) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function isWhitelisted(
        address account,
        bytes32[] calldata proof
    ) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, wlMerkleRoot, leaf);
    }

    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory uri) {
        if (bytes(baseTokenURI).length == 0) {//prereveal
            uri = preTokenURI;
        } else {//reveal
            uri = string(abi.encodePacked(
                baseTokenURI,
                tokenId.toString()
            ));
        }
    }

    function maxSupply(
    ) external view returns (uint256) {
        return supply;
    }

    function totalSupply(
    ) external view returns (uint256) {
        return supplyIndex;
    }

    function withdraw(
    ) public onlyOwner {
        require(address(this).balance > 0, "ZABA$: Nothing to withdraw");
        Address.sendValue(payable(owner()), address(this).balance);
    }

    function refundOverpay(
        uint256 amount
    ) internal {
        if (amount > 0 && msg.value >= amount) {
            (bool refunded, ) = payable(_msgSender()).call{value: amount}("");
            require(refunded, "ZABA$: Failed to refund overpayment");
        }
    }

}

contract TheZabas is ERC721Base {
    constructor() ERC721Base(
        "THE ZABA$",
        "ZABA$",
        4444,
        3,
        0.05 ether
    ) {}
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"admint","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"limitIndex","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStage","outputs":[{"internalType":"enum ERC721Base.stage","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintLimit","type":"uint16"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ERC721Base.stage","name":"_mintStage","type":"uint8"}],"name":"setMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preTokenURI","type":"string"}],"name":"setPreTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040526000600a60006101000a81548160ff0219169083600281111562000051577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055506000601060006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280600981526020017f544845205a4142412400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5a4142412400000000000000000000000000000000000000000000000000000081525061115c600366b1a2bc2ec50000848481600090805190602001906200011292919062000253565b5080600190805190602001906200012b92919062000253565b5050506200014e620001426200018560201b60201c565b6200018d60201b60201c565b826080818152505081600e60006101000a81548161ffff021916908361ffff16021790555080600981905550505050505062000368565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002619062000303565b90600052602060002090601f016020900481019282620002855760008555620002d1565b82601f10620002a057805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d0578251825591602001919060010190620002b3565b5b509050620002e09190620002e4565b5090565b5b80821115620002ff576000816000905550600101620002e5565b5090565b600060028204905060018216806200031c57607f821691505b6020821081141562000333576200033262000339565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b608051614cc1620003926000396000818161192d01528181611c0901526125540152614cc16000f3fe6080604052600436106102255760003560e01c806395d89b4111610123578063d547cfb7116100ab578063eddd0d9c1161006f578063eddd0d9c146107eb578063f0f4426014610814578063f150a0491461083d578063f2fde38b14610868578063f5aa406d1461089157610225565b8063d547cfb714610704578063d5abeb011461072f578063d5fe01141461075a578063ddca3f4314610783578063e985e9c5146107ae57610225565b8063b88d4fde116100f2578063b88d4fde14610621578063bb0ba35d1461064a578063bdf35d5214610673578063c87b56dd1461069c578063cd7bb440146106d957610225565b806395d89b4114610586578063a22cb465146105b1578063a4d66daf146105da578063a95fa3b81461060557610225565b80633ccfd60b116101b157806361d027b31161017557806361d027b31461049f5780636352211e146104ca57806370a0823114610507578063715018a6146105445780638da5cb5b1461055b57610225565b80633ccfd60b146103ba5780633ff7e0b6146103d157806342842e0e1461040e57806354c06aee146104375780635a23dd991461046257610225565b806318160ddd116101f857806318160ddd146102f85780631da044661461032357806323b872dd1461034c57806323cf0a221461037557806330176e131461039157610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061359a565b6108ba565b60405161025e919061427c565b60405180910390f35b34801561027357600080fd5b5061027c61099c565b60405161028991906142cd565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906136d7565b610a2e565b6040516102c69190614215565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613535565b610ab3565b005b34801561030457600080fd5b5061030d610bcb565b60405161031a919061468a565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613615565b610bd5565b005b34801561035857600080fd5b50610373600480360381019061036e91906133d7565b610c6b565b005b61038f600480360381019061038a9190613656565b610ccb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190613615565b610e5d565b005b3480156103c657600080fd5b506103cf610ef3565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613372565b610fc5565b604051610405919061466f565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906133d7565b610fe6565b005b34801561044357600080fd5b5061044c611006565b6040516104599190614297565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906134a1565b61100c565b604051610496919061427c565b60405180910390f35b3480156104ab57600080fd5b506104b4611090565b6040516104c19190614215565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906136d7565b6110b6565b6040516104fe9190614215565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613372565b611168565b60405161053b919061468a565b60405180910390f35b34801561055057600080fd5b50610559611220565b005b34801561056757600080fd5b506105706112a8565b60405161057d9190614215565b60405180910390f35b34801561059257600080fd5b5061059b6112d2565b6040516105a891906142cd565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906134f9565b611364565b005b3480156105e657600080fd5b506105ef6114e5565b6040516105fc919061466f565b60405180910390f35b61061f600480360381019061061a919061367f565b6114f9565b005b34801561062d57600080fd5b5061064860048036038101906106439190613426565b61177e565b005b34801561065657600080fd5b50610671600480360381019061066c91906135ec565b6117e0565b005b34801561067f57600080fd5b5061069a60048036038101906106959190613656565b6118af565b005b3480156106a857600080fd5b506106c360048036038101906106be91906136d7565b611a0b565b6040516106d091906142cd565b60405180910390f35b3480156106e557600080fd5b506106ee611ae9565b6040516106fb91906142cd565b60405180910390f35b34801561071057600080fd5b50610719611b77565b60405161072691906142cd565b60405180910390f35b34801561073b57600080fd5b50610744611c05565b604051610751919061468a565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190613656565b611c2d565b005b34801561078f57600080fd5b50610798611cc9565b6040516107a5919061468a565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d0919061339b565b611ccf565b6040516107e2919061427c565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d91906136d7565b611d63565b005b34801561082057600080fd5b5061083b60048036038101906108369190613372565b611de9565b005b34801561084957600080fd5b50610852611ea9565b60405161085f91906142b2565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a9190613372565b611ebc565b005b34801561089d57600080fd5b506108b860048036038101906108b39190613571565b611fb4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099557506109948261203a565b5b9050919050565b6060600080546109ab906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546109d7906149d9565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000610a39826120a4565b610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f9061452f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abe826110b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906145cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4e612110565b73ffffffffffffffffffffffffffffffffffffffff161480610b7d5750610b7c81610b77612110565b611ccf565b5b610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906144af565b60405180910390fd5b610bc68383612118565b505050565b6000600d54905090565b610bdd612110565b73ffffffffffffffffffffffffffffffffffffffff16610bfb6112a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c489061454f565b60405180910390fd5b80600b9080519060200190610c6792919061310d565b5050565b610c7c610c76612110565b826121d1565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906145ef565b60405180910390fd5b610cc68383836122af565b505050565b601060009054906101000a900460ff1615610ce557600080fd5b6001601060006101000a81548160ff0219169083151502179055503273ffffffffffffffffffffffffffffffffffffffff16610d1f612110565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c9061464f565b60405180910390fd5b600280811115610dae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115610df6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906145af565b60405180910390fd5b610e3f8161250b565b6000601060006101000a81548160ff02191690831515021790555050565b610e65612110565b73ffffffffffffffffffffffffffffffffffffffff16610e836112a8565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed09061454f565b60405180910390fd5b80600c9080519060200190610eef92919061310d565b5050565b610efb612110565b73ffffffffffffffffffffffffffffffffffffffff16610f196112a8565b73ffffffffffffffffffffffffffffffffffffffff1614610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f669061454f565b60405180910390fd5b60004711610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa99061462f565b60405180910390fd5b610fc3610fbd6112a8565b4761282b565b565b600f6020528060005260406000206000915054906101000a900461ffff1681565b6110018383836040518060200160405280600081525061177e565b505050565b60085481565b6000808460405160200161102091906141c1565b604051602081830303815290604052805190602001209050611086848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506008548361291f565b9150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906144ef565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906144cf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611228612110565b73ffffffffffffffffffffffffffffffffffffffff166112466112a8565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061454f565b60405180910390fd5b6112a66000612936565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112e1906149d9565b80601f016020809104026020016040519081016040528092919081815260200182805461130d906149d9565b801561135a5780601f1061132f5761010080835404028352916020019161135a565b820191906000526020600020905b81548152906001019060200180831161133d57829003601f168201915b5050505050905090565b61136c612110565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906143af565b60405180910390fd5b80600560006113e7612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611494612110565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d9919061427c565b60405180910390a35050565b600e60009054906101000a900461ffff1681565b601060009054906101000a900460ff161561151357600080fd5b6001601060006101000a81548160ff02191690831515021790555081813273ffffffffffffffffffffffffffffffffffffffff1661154f612110565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c9061464f565b60405180910390fd5b600160028111156115df577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611627577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e9061448f565b60405180910390fd5b6000600f6000611675612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906142ef565b60405180910390fd5b61171461170d612110565b838361100c565b611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061460f565b60405180910390fd5b61175c8561250b565b50506000601060006101000a81548160ff021916908315150217905550505050565b61178f611789612110565b836121d1565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906145ef565b60405180910390fd5b6117da848484846129fc565b50505050565b6117e8612110565b73ffffffffffffffffffffffffffffffffffffffff166118066112a8565b73ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118539061454f565b60405180910390fd5b80600a60006101000a81548160ff021916908360028111156118a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6118b7612110565b73ffffffffffffffffffffffffffffffffffffffff166118d56112a8565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119229061454f565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161ffff16600d5461195e91906147d1565b111561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906143cf565b60405180910390fd5b6000600190505b8161ffff168161ffff16116119ea576119d76119c0612110565b8261ffff16600d546119d291906147d1565b612a58565b80806119e290614a0b565b9150506119a6565b508061ffff16600d6000828254611a0191906147d1565b9250508190555050565b60606000600c8054611a1c906149d9565b90501415611ab657600b8054611a31906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5d906149d9565b8015611aaa5780601f10611a7f57610100808354040283529160200191611aaa565b820191906000526020600020905b815481529060010190602001808311611a8d57829003601f168201915b50505050509050611ae4565b600c611ac183612c26565b604051602001611ad29291906141dc565b60405160208183030381529060405290505b919050565b600b8054611af6906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b22906149d9565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b600c8054611b84906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb0906149d9565b8015611bfd5780601f10611bd257610100808354040283529160200191611bfd565b820191906000526020600020905b815481529060010190602001808311611be057829003601f168201915b505050505081565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b611c35612110565b73ffffffffffffffffffffffffffffffffffffffff16611c536112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061454f565b60405180910390fd5b80600e60006101000a81548161ffff021916908361ffff16021790555050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d6b612110565b73ffffffffffffffffffffffffffffffffffffffff16611d896112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd69061454f565b60405180910390fd5b8060098190555050565b611df1612110565b73ffffffffffffffffffffffffffffffffffffffff16611e0f6112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061454f565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900460ff1681565b611ec4612110565b73ffffffffffffffffffffffffffffffffffffffff16611ee26112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f9061454f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f9061434f565b60405180910390fd5b611fb181612936565b50565b611fbc612110565b73ffffffffffffffffffffffffffffffffffffffff16611fda6112a8565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061454f565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661218b836110b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121dc826120a4565b61221b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122129061444f565b60405180910390fd5b6000612226836110b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229557508373ffffffffffffffffffffffffffffffffffffffff1661227d84610a2e565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a657506122a58185611ccf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122cf826110b6565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c9061456f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c9061438f565b60405180910390fd5b6123a0838383612dd3565b6123ab600082612118565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fb91906148b2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245291906147d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008161ffff1611612552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125499061458f565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161ffff16600d5461258591906147d1565b11156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906143cf565b60405180910390fd5b6000600e60009054906101000a900461ffff1661ffff1614806126605750600e60009054906101000a900461ffff1661ffff1681600f6000612606612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166126599190614799565b61ffff1611155b61269f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126969061446f565b60405180910390fd5b60008161ffff166009546126b39190614858565b9050803410156126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906143ef565b60405180910390fd5b8034111561271557612714813461270f91906148b2565b612dd8565b5b612741600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff164761282b565b6000600190505b8261ffff168161ffff161161278c57612779612762612110565b8261ffff16600d5461277491906147d1565b612a58565b808061278490614a0b565b915050612748565b508161ffff16600d60008282546127a391906147d1565b9250508190555081600f60006127b7612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661280d9190614799565b92506101000a81548161ffff021916908361ffff1602179055505050565b8047101561286e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128659061442f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161289490614200565b60006040518083038185875af1925050503d80600081146128d1576040519150601f19603f3d011682016040523d82523d6000602084013e6128d6565b606091505b505090508061291a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129119061440f565b60405180910390fd5b505050565b60008261292c8584612ea5565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a078484846122af565b612a1384848484612f21565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a499061432f565b60405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf9061450f565b60405180910390fd5b612ad1816120a4565b15612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b089061436f565b60405180910390fd5b612b1d60008383612dd3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6d91906147d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000821415612c6e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dce565b600082905060005b60008214612ca0578080612c8990614a36565b915050600a82612c999190614827565b9150612c76565b60008167ffffffffffffffff811115612ce2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d145781602001600182028036833780820191505090505b5090505b60008514612dc757600182612d2d91906148b2565b9150600a85612d3c9190614aa3565b6030612d4891906147d1565b60f81b818381518110612d84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc09190614827565b9450612d18565b8093505050505b919050565b505050565b600081118015612de85750803410155b15612ea2576000612df7612110565b73ffffffffffffffffffffffffffffffffffffffff1682604051612e1a90614200565b60006040518083038185875af1925050503d8060008114612e57576040519150601f19603f3d011682016040523d82523d6000602084013e612e5c565b606091505b5050905080612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e979061430f565b60405180910390fd5b505b50565b60008082905060005b8451811015612f1657612f0182868381518110612ef4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516130b8565b91508080612f0e90614a36565b915050612eae565b508091505092915050565b6000612f428473ffffffffffffffffffffffffffffffffffffffff166130e3565b156130ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6b612110565b8786866040518563ffffffff1660e01b8152600401612f8d9493929190614230565b602060405180830381600087803b158015612fa757600080fd5b505af1925050508015612fd857506040513d601f19601f82011682018060405250810190612fd591906135c3565b60015b61305b573d8060008114613008576040519150601f19603f3d011682016040523d82523d6000602084013e61300d565b606091505b50600081511415613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a9061432f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130b0565b600190505b949350505050565b60008183106130d0576130cb82846130f6565b6130db565b6130da83836130f6565b5b905092915050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b828054613119906149d9565b90600052602060002090601f01602090048101928261313b5760008555613182565b82601f1061315457805160ff1916838001178555613182565b82800160010185558215613182579182015b82811115613181578251825591602001919060010190613166565b5b50905061318f9190613193565b5090565b5b808211156131ac576000816000905550600101613194565b5090565b60006131c36131be846146d6565b6146a5565b9050828152602081018484840111156131db57600080fd5b6131e6848285614997565b509392505050565b60006132016131fc84614706565b6146a5565b90508281526020810184848401111561321957600080fd5b613224848285614997565b509392505050565b60008135905061323b81614bf1565b92915050565b60008083601f84011261325357600080fd5b8235905067ffffffffffffffff81111561326c57600080fd5b60208301915083602082028301111561328457600080fd5b9250929050565b60008135905061329a81614c08565b92915050565b6000813590506132af81614c1f565b92915050565b6000813590506132c481614c36565b92915050565b6000815190506132d981614c36565b92915050565b600082601f8301126132f057600080fd5b81356133008482602086016131b0565b91505092915050565b60008135905061331881614c4d565b92915050565b600082601f83011261332f57600080fd5b813561333f8482602086016131ee565b91505092915050565b60008135905061335781614c5d565b92915050565b60008135905061336c81614c74565b92915050565b60006020828403121561338457600080fd5b60006133928482850161322c565b91505092915050565b600080604083850312156133ae57600080fd5b60006133bc8582860161322c565b92505060206133cd8582860161322c565b9150509250929050565b6000806000606084860312156133ec57600080fd5b60006133fa8682870161322c565b935050602061340b8682870161322c565b925050604061341c8682870161335d565b9150509250925092565b6000806000806080858703121561343c57600080fd5b600061344a8782880161322c565b945050602061345b8782880161322c565b935050604061346c8782880161335d565b925050606085013567ffffffffffffffff81111561348957600080fd5b613495878288016132df565b91505092959194509250565b6000806000604084860312156134b657600080fd5b60006134c48682870161322c565b935050602084013567ffffffffffffffff8111156134e157600080fd5b6134ed86828701613241565b92509250509250925092565b6000806040838503121561350c57600080fd5b600061351a8582860161322c565b925050602061352b8582860161328b565b9150509250929050565b6000806040838503121561354857600080fd5b60006135568582860161322c565b92505060206135678582860161335d565b9150509250929050565b60006020828403121561358357600080fd5b6000613591848285016132a0565b91505092915050565b6000602082840312156135ac57600080fd5b60006135ba848285016132b5565b91505092915050565b6000602082840312156135d557600080fd5b60006135e3848285016132ca565b91505092915050565b6000602082840312156135fe57600080fd5b600061360c84828501613309565b91505092915050565b60006020828403121561362757600080fd5b600082013567ffffffffffffffff81111561364157600080fd5b61364d8482850161331e565b91505092915050565b60006020828403121561366857600080fd5b600061367684828501613348565b91505092915050565b60008060006040848603121561369457600080fd5b60006136a286828701613348565b935050602084013567ffffffffffffffff8111156136bf57600080fd5b6136cb86828701613241565b92509250509250925092565b6000602082840312156136e957600080fd5b60006136f78482850161335d565b91505092915050565b613709816148e6565b82525050565b61372061371b826148e6565b614a7f565b82525050565b61372f816148f8565b82525050565b61373e81614904565b82525050565b600061374f8261474b565b6137598185614761565b93506137698185602086016149a6565b61377281614bbf565b840191505092915050565b61378681614985565b82525050565b600061379782614756565b6137a1818561477d565b93506137b18185602086016149a6565b6137ba81614bbf565b840191505092915050565b60006137d082614756565b6137da818561478e565b93506137ea8185602086016149a6565b80840191505092915050565b60008154613803816149d9565b61380d818661478e565b9450600182166000811461382857600181146138395761386c565b60ff1983168652818601935061386c565b61384285614736565b60005b8381101561386457815481890152600182019150602081019050613845565b838801955050505b50505092915050565b600061388260208361477d565b91507f5a414241243a204f6e6c79206f6e6520574c204d696e7420416c6c6f7765642e6000830152602082019050919050565b60006138c260238361477d565b91507f5a414241243a204661696c656420746f20726566756e64206f7665727061796d60008301527f656e7400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061392860328361477d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061398e60268361477d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139f4601c8361477d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a3460248361477d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a9a60198361477d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613ada60228361477d565b91507f5a414241243a204e465420737570706c79206d6178696d756d2072656163686560008301527f642e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4060198361477d565b91507f5a414241243a204d696e74206665652072657175697265642e000000000000006000830152602082019050919050565b6000613b80603a8361477d565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613be6601d8361477d565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000613c26602c8361477d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c8c601a8361477d565b91507f5a414241243a204d696e74206c696d697420726561636865642e0000000000006000830152602082019050919050565b6000613ccc601b8361477d565b91507f5a414241243a2057686974656c697374204e6f742041637469766500000000006000830152602082019050919050565b6000613d0c60388361477d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d72602a8361477d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dd860298361477d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e3e60208361477d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e7e602c8361477d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ee460208361477d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f2460298361477d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f8a60168361477d565b91507f5a414241243a20496e76616c696420616d6f756e742e000000000000000000006000830152602082019050919050565b6000613fca601b8361477d565b91507f5a414241243a204f70656e204d696e74204e6f742041637469766500000000006000830152602082019050919050565b600061400a60218361477d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614070600083614772565b9150600082019050919050565b600061408a60318361477d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006140f0601e8361477d565b91507f5a414241243a204163636f756e74204e6f742057686974656c697374656400006000830152602082019050919050565b6000614130601a8361477d565b91507f5a414241243a204e6f7468696e6720746f2077697468647261770000000000006000830152602082019050919050565b600061417060178361477d565b91507f5a414241243a204f6e6c7920454f4120616c6c6f7765640000000000000000006000830152602082019050919050565b6141ac8161494d565b82525050565b6141bb8161497b565b82525050565b60006141cd828461370f565b60148201915081905092915050565b60006141e882856137f6565b91506141f482846137c5565b91508190509392505050565b600061420b82614063565b9150819050919050565b600060208201905061422a6000830184613700565b92915050565b60006080820190506142456000830187613700565b6142526020830186613700565b61425f60408301856141b2565b81810360608301526142718184613744565b905095945050505050565b60006020820190506142916000830184613726565b92915050565b60006020820190506142ac6000830184613735565b92915050565b60006020820190506142c7600083018461377d565b92915050565b600060208201905081810360008301526142e7818461378c565b905092915050565b6000602082019050818103600083015261430881613875565b9050919050565b60006020820190508181036000830152614328816138b5565b9050919050565b600060208201905081810360008301526143488161391b565b9050919050565b6000602082019050818103600083015261436881613981565b9050919050565b60006020820190508181036000830152614388816139e7565b9050919050565b600060208201905081810360008301526143a881613a27565b9050919050565b600060208201905081810360008301526143c881613a8d565b9050919050565b600060208201905081810360008301526143e881613acd565b9050919050565b6000602082019050818103600083015261440881613b33565b9050919050565b6000602082019050818103600083015261442881613b73565b9050919050565b6000602082019050818103600083015261444881613bd9565b9050919050565b6000602082019050818103600083015261446881613c19565b9050919050565b6000602082019050818103600083015261448881613c7f565b9050919050565b600060208201905081810360008301526144a881613cbf565b9050919050565b600060208201905081810360008301526144c881613cff565b9050919050565b600060208201905081810360008301526144e881613d65565b9050919050565b6000602082019050818103600083015261450881613dcb565b9050919050565b6000602082019050818103600083015261452881613e31565b9050919050565b6000602082019050818103600083015261454881613e71565b9050919050565b6000602082019050818103600083015261456881613ed7565b9050919050565b6000602082019050818103600083015261458881613f17565b9050919050565b600060208201905081810360008301526145a881613f7d565b9050919050565b600060208201905081810360008301526145c881613fbd565b9050919050565b600060208201905081810360008301526145e881613ffd565b9050919050565b600060208201905081810360008301526146088161407d565b9050919050565b60006020820190508181036000830152614628816140e3565b9050919050565b6000602082019050818103600083015261464881614123565b9050919050565b6000602082019050818103600083015261466881614163565b9050919050565b600060208201905061468460008301846141a3565b92915050565b600060208201905061469f60008301846141b2565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146cc576146cb614b90565b5b8060405250919050565b600067ffffffffffffffff8211156146f1576146f0614b90565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561472157614720614b90565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147a48261494d565b91506147af8361494d565b92508261ffff038211156147c6576147c5614ad4565b5b828201905092915050565b60006147dc8261497b565b91506147e78361497b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561481c5761481b614ad4565b5b828201905092915050565b60006148328261497b565b915061483d8361497b565b92508261484d5761484c614b03565b5b828204905092915050565b60006148638261497b565b915061486e8361497b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148a7576148a6614ad4565b5b828202905092915050565b60006148bd8261497b565b91506148c88361497b565b9250828210156148db576148da614ad4565b5b828203905092915050565b60006148f18261495b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061494882614bdd565b919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006149908261493a565b9050919050565b82818337600083830152505050565b60005b838110156149c45780820151818401526020810190506149a9565b838111156149d3576000848401525b50505050565b600060028204905060018216806149f157607f821691505b60208210811415614a0557614a04614b61565b5b50919050565b6000614a168261494d565b915061ffff821415614a2b57614a2a614ad4565b5b600182019050919050565b6000614a418261497b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a7457614a73614ad4565b5b600182019050919050565b6000614a8a82614a91565b9050919050565b6000614a9c82614bd0565b9050919050565b6000614aae8261497b565b9150614ab98361497b565b925082614ac957614ac8614b03565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60038110614bee57614bed614b32565b5b50565b614bfa816148e6565b8114614c0557600080fd5b50565b614c11816148f8565b8114614c1c57600080fd5b50565b614c2881614904565b8114614c3357600080fd5b50565b614c3f8161490e565b8114614c4a57600080fd5b50565b60038110614c5a57600080fd5b50565b614c668161494d565b8114614c7157600080fd5b50565b614c7d8161497b565b8114614c8857600080fd5b5056fea26469706673582212202b8f8b756f168b3ea2ef650d07476b7175f8c9d6d8415ea7b58827805076ce3964736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806395d89b4111610123578063d547cfb7116100ab578063eddd0d9c1161006f578063eddd0d9c146107eb578063f0f4426014610814578063f150a0491461083d578063f2fde38b14610868578063f5aa406d1461089157610225565b8063d547cfb714610704578063d5abeb011461072f578063d5fe01141461075a578063ddca3f4314610783578063e985e9c5146107ae57610225565b8063b88d4fde116100f2578063b88d4fde14610621578063bb0ba35d1461064a578063bdf35d5214610673578063c87b56dd1461069c578063cd7bb440146106d957610225565b806395d89b4114610586578063a22cb465146105b1578063a4d66daf146105da578063a95fa3b81461060557610225565b80633ccfd60b116101b157806361d027b31161017557806361d027b31461049f5780636352211e146104ca57806370a0823114610507578063715018a6146105445780638da5cb5b1461055b57610225565b80633ccfd60b146103ba5780633ff7e0b6146103d157806342842e0e1461040e57806354c06aee146104375780635a23dd991461046257610225565b806318160ddd116101f857806318160ddd146102f85780631da044661461032357806323b872dd1461034c57806323cf0a221461037557806330176e131461039157610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061359a565b6108ba565b60405161025e919061427c565b60405180910390f35b34801561027357600080fd5b5061027c61099c565b60405161028991906142cd565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906136d7565b610a2e565b6040516102c69190614215565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613535565b610ab3565b005b34801561030457600080fd5b5061030d610bcb565b60405161031a919061468a565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613615565b610bd5565b005b34801561035857600080fd5b50610373600480360381019061036e91906133d7565b610c6b565b005b61038f600480360381019061038a9190613656565b610ccb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190613615565b610e5d565b005b3480156103c657600080fd5b506103cf610ef3565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613372565b610fc5565b604051610405919061466f565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906133d7565b610fe6565b005b34801561044357600080fd5b5061044c611006565b6040516104599190614297565b60405180910390f35b34801561046e57600080fd5b50610489600480360381019061048491906134a1565b61100c565b604051610496919061427c565b60405180910390f35b3480156104ab57600080fd5b506104b4611090565b6040516104c19190614215565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906136d7565b6110b6565b6040516104fe9190614215565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613372565b611168565b60405161053b919061468a565b60405180910390f35b34801561055057600080fd5b50610559611220565b005b34801561056757600080fd5b506105706112a8565b60405161057d9190614215565b60405180910390f35b34801561059257600080fd5b5061059b6112d2565b6040516105a891906142cd565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d391906134f9565b611364565b005b3480156105e657600080fd5b506105ef6114e5565b6040516105fc919061466f565b60405180910390f35b61061f600480360381019061061a919061367f565b6114f9565b005b34801561062d57600080fd5b5061064860048036038101906106439190613426565b61177e565b005b34801561065657600080fd5b50610671600480360381019061066c91906135ec565b6117e0565b005b34801561067f57600080fd5b5061069a60048036038101906106959190613656565b6118af565b005b3480156106a857600080fd5b506106c360048036038101906106be91906136d7565b611a0b565b6040516106d091906142cd565b60405180910390f35b3480156106e557600080fd5b506106ee611ae9565b6040516106fb91906142cd565b60405180910390f35b34801561071057600080fd5b50610719611b77565b60405161072691906142cd565b60405180910390f35b34801561073b57600080fd5b50610744611c05565b604051610751919061468a565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190613656565b611c2d565b005b34801561078f57600080fd5b50610798611cc9565b6040516107a5919061468a565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d0919061339b565b611ccf565b6040516107e2919061427c565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d91906136d7565b611d63565b005b34801561082057600080fd5b5061083b60048036038101906108369190613372565b611de9565b005b34801561084957600080fd5b50610852611ea9565b60405161085f91906142b2565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a9190613372565b611ebc565b005b34801561089d57600080fd5b506108b860048036038101906108b39190613571565b611fb4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099557506109948261203a565b5b9050919050565b6060600080546109ab906149d9565b80601f01602080910402602001604051908101604052809291908181526020018280546109d7906149d9565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000610a39826120a4565b610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f9061452f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abe826110b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906145cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4e612110565b73ffffffffffffffffffffffffffffffffffffffff161480610b7d5750610b7c81610b77612110565b611ccf565b5b610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906144af565b60405180910390fd5b610bc68383612118565b505050565b6000600d54905090565b610bdd612110565b73ffffffffffffffffffffffffffffffffffffffff16610bfb6112a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c489061454f565b60405180910390fd5b80600b9080519060200190610c6792919061310d565b5050565b610c7c610c76612110565b826121d1565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906145ef565b60405180910390fd5b610cc68383836122af565b505050565b601060009054906101000a900460ff1615610ce557600080fd5b6001601060006101000a81548160ff0219169083151502179055503273ffffffffffffffffffffffffffffffffffffffff16610d1f612110565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c9061464f565b60405180910390fd5b600280811115610dae577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115610df6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906145af565b60405180910390fd5b610e3f8161250b565b6000601060006101000a81548160ff02191690831515021790555050565b610e65612110565b73ffffffffffffffffffffffffffffffffffffffff16610e836112a8565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed09061454f565b60405180910390fd5b80600c9080519060200190610eef92919061310d565b5050565b610efb612110565b73ffffffffffffffffffffffffffffffffffffffff16610f196112a8565b73ffffffffffffffffffffffffffffffffffffffff1614610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f669061454f565b60405180910390fd5b60004711610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa99061462f565b60405180910390fd5b610fc3610fbd6112a8565b4761282b565b565b600f6020528060005260406000206000915054906101000a900461ffff1681565b6110018383836040518060200160405280600081525061177e565b505050565b60085481565b6000808460405160200161102091906141c1565b604051602081830303815290604052805190602001209050611086848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506008548361291f565b9150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906144ef565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906144cf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611228612110565b73ffffffffffffffffffffffffffffffffffffffff166112466112a8565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061454f565b60405180910390fd5b6112a66000612936565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112e1906149d9565b80601f016020809104026020016040519081016040528092919081815260200182805461130d906149d9565b801561135a5780601f1061132f5761010080835404028352916020019161135a565b820191906000526020600020905b81548152906001019060200180831161133d57829003601f168201915b5050505050905090565b61136c612110565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906143af565b60405180910390fd5b80600560006113e7612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611494612110565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d9919061427c565b60405180910390a35050565b600e60009054906101000a900461ffff1681565b601060009054906101000a900460ff161561151357600080fd5b6001601060006101000a81548160ff02191690831515021790555081813273ffffffffffffffffffffffffffffffffffffffff1661154f612110565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c9061464f565b60405180910390fd5b600160028111156115df577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166002811115611627577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e9061448f565b60405180910390fd5b6000600f6000611675612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906142ef565b60405180910390fd5b61171461170d612110565b838361100c565b611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061460f565b60405180910390fd5b61175c8561250b565b50506000601060006101000a81548160ff021916908315150217905550505050565b61178f611789612110565b836121d1565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c5906145ef565b60405180910390fd5b6117da848484846129fc565b50505050565b6117e8612110565b73ffffffffffffffffffffffffffffffffffffffff166118066112a8565b73ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118539061454f565b60405180910390fd5b80600a60006101000a81548160ff021916908360028111156118a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6118b7612110565b73ffffffffffffffffffffffffffffffffffffffff166118d56112a8565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119229061454f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000115c8161ffff16600d5461195e91906147d1565b111561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906143cf565b60405180910390fd5b6000600190505b8161ffff168161ffff16116119ea576119d76119c0612110565b8261ffff16600d546119d291906147d1565b612a58565b80806119e290614a0b565b9150506119a6565b508061ffff16600d6000828254611a0191906147d1565b9250508190555050565b60606000600c8054611a1c906149d9565b90501415611ab657600b8054611a31906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5d906149d9565b8015611aaa5780601f10611a7f57610100808354040283529160200191611aaa565b820191906000526020600020905b815481529060010190602001808311611a8d57829003601f168201915b50505050509050611ae4565b600c611ac183612c26565b604051602001611ad29291906141dc565b60405160208183030381529060405290505b919050565b600b8054611af6906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b22906149d9565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b600c8054611b84906149d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb0906149d9565b8015611bfd5780601f10611bd257610100808354040283529160200191611bfd565b820191906000526020600020905b815481529060010190602001808311611be057829003601f168201915b505050505081565b60007f000000000000000000000000000000000000000000000000000000000000115c905090565b611c35612110565b73ffffffffffffffffffffffffffffffffffffffff16611c536112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061454f565b60405180910390fd5b80600e60006101000a81548161ffff021916908361ffff16021790555050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d6b612110565b73ffffffffffffffffffffffffffffffffffffffff16611d896112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd69061454f565b60405180910390fd5b8060098190555050565b611df1612110565b73ffffffffffffffffffffffffffffffffffffffff16611e0f6112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c9061454f565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900460ff1681565b611ec4612110565b73ffffffffffffffffffffffffffffffffffffffff16611ee26112a8565b73ffffffffffffffffffffffffffffffffffffffff1614611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f9061454f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f9061434f565b60405180910390fd5b611fb181612936565b50565b611fbc612110565b73ffffffffffffffffffffffffffffffffffffffff16611fda6112a8565b73ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061454f565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661218b836110b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121dc826120a4565b61221b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122129061444f565b60405180910390fd5b6000612226836110b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229557508373ffffffffffffffffffffffffffffffffffffffff1661227d84610a2e565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a657506122a58185611ccf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122cf826110b6565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c9061456f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c9061438f565b60405180910390fd5b6123a0838383612dd3565b6123ab600082612118565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fb91906148b2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245291906147d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008161ffff1611612552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125499061458f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000115c8161ffff16600d5461258591906147d1565b11156125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906143cf565b60405180910390fd5b6000600e60009054906101000a900461ffff1661ffff1614806126605750600e60009054906101000a900461ffff1661ffff1681600f6000612606612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166126599190614799565b61ffff1611155b61269f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126969061446f565b60405180910390fd5b60008161ffff166009546126b39190614858565b9050803410156126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906143ef565b60405180910390fd5b8034111561271557612714813461270f91906148b2565b612dd8565b5b612741600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff164761282b565b6000600190505b8261ffff168161ffff161161278c57612779612762612110565b8261ffff16600d5461277491906147d1565b612a58565b808061278490614a0b565b915050612748565b508161ffff16600d60008282546127a391906147d1565b9250508190555081600f60006127b7612110565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661280d9190614799565b92506101000a81548161ffff021916908361ffff1602179055505050565b8047101561286e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128659061442f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161289490614200565b60006040518083038185875af1925050503d80600081146128d1576040519150601f19603f3d011682016040523d82523d6000602084013e6128d6565b606091505b505090508061291a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129119061440f565b60405180910390fd5b505050565b60008261292c8584612ea5565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a078484846122af565b612a1384848484612f21565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a499061432f565b60405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf9061450f565b60405180910390fd5b612ad1816120a4565b15612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b089061436f565b60405180910390fd5b612b1d60008383612dd3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6d91906147d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60606000821415612c6e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dce565b600082905060005b60008214612ca0578080612c8990614a36565b915050600a82612c999190614827565b9150612c76565b60008167ffffffffffffffff811115612ce2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d145781602001600182028036833780820191505090505b5090505b60008514612dc757600182612d2d91906148b2565b9150600a85612d3c9190614aa3565b6030612d4891906147d1565b60f81b818381518110612d84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc09190614827565b9450612d18565b8093505050505b919050565b505050565b600081118015612de85750803410155b15612ea2576000612df7612110565b73ffffffffffffffffffffffffffffffffffffffff1682604051612e1a90614200565b60006040518083038185875af1925050503d8060008114612e57576040519150601f19603f3d011682016040523d82523d6000602084013e612e5c565b606091505b5050905080612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e979061430f565b60405180910390fd5b505b50565b60008082905060005b8451811015612f1657612f0182868381518110612ef4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516130b8565b91508080612f0e90614a36565b915050612eae565b508091505092915050565b6000612f428473ffffffffffffffffffffffffffffffffffffffff166130e3565b156130ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6b612110565b8786866040518563ffffffff1660e01b8152600401612f8d9493929190614230565b602060405180830381600087803b158015612fa757600080fd5b505af1925050508015612fd857506040513d601f19601f82011682018060405250810190612fd591906135c3565b60015b61305b573d8060008114613008576040519150601f19603f3d011682016040523d82523d6000602084013e61300d565b606091505b50600081511415613053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304a9061432f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130b0565b600190505b949350505050565b60008183106130d0576130cb82846130f6565b6130db565b6130da83836130f6565b5b905092915050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b828054613119906149d9565b90600052602060002090601f01602090048101928261313b5760008555613182565b82601f1061315457805160ff1916838001178555613182565b82800160010185558215613182579182015b82811115613181578251825591602001919060010190613166565b5b50905061318f9190613193565b5090565b5b808211156131ac576000816000905550600101613194565b5090565b60006131c36131be846146d6565b6146a5565b9050828152602081018484840111156131db57600080fd5b6131e6848285614997565b509392505050565b60006132016131fc84614706565b6146a5565b90508281526020810184848401111561321957600080fd5b613224848285614997565b509392505050565b60008135905061323b81614bf1565b92915050565b60008083601f84011261325357600080fd5b8235905067ffffffffffffffff81111561326c57600080fd5b60208301915083602082028301111561328457600080fd5b9250929050565b60008135905061329a81614c08565b92915050565b6000813590506132af81614c1f565b92915050565b6000813590506132c481614c36565b92915050565b6000815190506132d981614c36565b92915050565b600082601f8301126132f057600080fd5b81356133008482602086016131b0565b91505092915050565b60008135905061331881614c4d565b92915050565b600082601f83011261332f57600080fd5b813561333f8482602086016131ee565b91505092915050565b60008135905061335781614c5d565b92915050565b60008135905061336c81614c74565b92915050565b60006020828403121561338457600080fd5b60006133928482850161322c565b91505092915050565b600080604083850312156133ae57600080fd5b60006133bc8582860161322c565b92505060206133cd8582860161322c565b9150509250929050565b6000806000606084860312156133ec57600080fd5b60006133fa8682870161322c565b935050602061340b8682870161322c565b925050604061341c8682870161335d565b9150509250925092565b6000806000806080858703121561343c57600080fd5b600061344a8782880161322c565b945050602061345b8782880161322c565b935050604061346c8782880161335d565b925050606085013567ffffffffffffffff81111561348957600080fd5b613495878288016132df565b91505092959194509250565b6000806000604084860312156134b657600080fd5b60006134c48682870161322c565b935050602084013567ffffffffffffffff8111156134e157600080fd5b6134ed86828701613241565b92509250509250925092565b6000806040838503121561350c57600080fd5b600061351a8582860161322c565b925050602061352b8582860161328b565b9150509250929050565b6000806040838503121561354857600080fd5b60006135568582860161322c565b92505060206135678582860161335d565b9150509250929050565b60006020828403121561358357600080fd5b6000613591848285016132a0565b91505092915050565b6000602082840312156135ac57600080fd5b60006135ba848285016132b5565b91505092915050565b6000602082840312156135d557600080fd5b60006135e3848285016132ca565b91505092915050565b6000602082840312156135fe57600080fd5b600061360c84828501613309565b91505092915050565b60006020828403121561362757600080fd5b600082013567ffffffffffffffff81111561364157600080fd5b61364d8482850161331e565b91505092915050565b60006020828403121561366857600080fd5b600061367684828501613348565b91505092915050565b60008060006040848603121561369457600080fd5b60006136a286828701613348565b935050602084013567ffffffffffffffff8111156136bf57600080fd5b6136cb86828701613241565b92509250509250925092565b6000602082840312156136e957600080fd5b60006136f78482850161335d565b91505092915050565b613709816148e6565b82525050565b61372061371b826148e6565b614a7f565b82525050565b61372f816148f8565b82525050565b61373e81614904565b82525050565b600061374f8261474b565b6137598185614761565b93506137698185602086016149a6565b61377281614bbf565b840191505092915050565b61378681614985565b82525050565b600061379782614756565b6137a1818561477d565b93506137b18185602086016149a6565b6137ba81614bbf565b840191505092915050565b60006137d082614756565b6137da818561478e565b93506137ea8185602086016149a6565b80840191505092915050565b60008154613803816149d9565b61380d818661478e565b9450600182166000811461382857600181146138395761386c565b60ff1983168652818601935061386c565b61384285614736565b60005b8381101561386457815481890152600182019150602081019050613845565b838801955050505b50505092915050565b600061388260208361477d565b91507f5a414241243a204f6e6c79206f6e6520574c204d696e7420416c6c6f7765642e6000830152602082019050919050565b60006138c260238361477d565b91507f5a414241243a204661696c656420746f20726566756e64206f7665727061796d60008301527f656e7400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061392860328361477d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061398e60268361477d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139f4601c8361477d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a3460248361477d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a9a60198361477d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613ada60228361477d565b91507f5a414241243a204e465420737570706c79206d6178696d756d2072656163686560008301527f642e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4060198361477d565b91507f5a414241243a204d696e74206665652072657175697265642e000000000000006000830152602082019050919050565b6000613b80603a8361477d565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613be6601d8361477d565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000613c26602c8361477d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c8c601a8361477d565b91507f5a414241243a204d696e74206c696d697420726561636865642e0000000000006000830152602082019050919050565b6000613ccc601b8361477d565b91507f5a414241243a2057686974656c697374204e6f742041637469766500000000006000830152602082019050919050565b6000613d0c60388361477d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d72602a8361477d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dd860298361477d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e3e60208361477d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e7e602c8361477d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ee460208361477d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f2460298361477d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f8a60168361477d565b91507f5a414241243a20496e76616c696420616d6f756e742e000000000000000000006000830152602082019050919050565b6000613fca601b8361477d565b91507f5a414241243a204f70656e204d696e74204e6f742041637469766500000000006000830152602082019050919050565b600061400a60218361477d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614070600083614772565b9150600082019050919050565b600061408a60318361477d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006140f0601e8361477d565b91507f5a414241243a204163636f756e74204e6f742057686974656c697374656400006000830152602082019050919050565b6000614130601a8361477d565b91507f5a414241243a204e6f7468696e6720746f2077697468647261770000000000006000830152602082019050919050565b600061417060178361477d565b91507f5a414241243a204f6e6c7920454f4120616c6c6f7765640000000000000000006000830152602082019050919050565b6141ac8161494d565b82525050565b6141bb8161497b565b82525050565b60006141cd828461370f565b60148201915081905092915050565b60006141e882856137f6565b91506141f482846137c5565b91508190509392505050565b600061420b82614063565b9150819050919050565b600060208201905061422a6000830184613700565b92915050565b60006080820190506142456000830187613700565b6142526020830186613700565b61425f60408301856141b2565b81810360608301526142718184613744565b905095945050505050565b60006020820190506142916000830184613726565b92915050565b60006020820190506142ac6000830184613735565b92915050565b60006020820190506142c7600083018461377d565b92915050565b600060208201905081810360008301526142e7818461378c565b905092915050565b6000602082019050818103600083015261430881613875565b9050919050565b60006020820190508181036000830152614328816138b5565b9050919050565b600060208201905081810360008301526143488161391b565b9050919050565b6000602082019050818103600083015261436881613981565b9050919050565b60006020820190508181036000830152614388816139e7565b9050919050565b600060208201905081810360008301526143a881613a27565b9050919050565b600060208201905081810360008301526143c881613a8d565b9050919050565b600060208201905081810360008301526143e881613acd565b9050919050565b6000602082019050818103600083015261440881613b33565b9050919050565b6000602082019050818103600083015261442881613b73565b9050919050565b6000602082019050818103600083015261444881613bd9565b9050919050565b6000602082019050818103600083015261446881613c19565b9050919050565b6000602082019050818103600083015261448881613c7f565b9050919050565b600060208201905081810360008301526144a881613cbf565b9050919050565b600060208201905081810360008301526144c881613cff565b9050919050565b600060208201905081810360008301526144e881613d65565b9050919050565b6000602082019050818103600083015261450881613dcb565b9050919050565b6000602082019050818103600083015261452881613e31565b9050919050565b6000602082019050818103600083015261454881613e71565b9050919050565b6000602082019050818103600083015261456881613ed7565b9050919050565b6000602082019050818103600083015261458881613f17565b9050919050565b600060208201905081810360008301526145a881613f7d565b9050919050565b600060208201905081810360008301526145c881613fbd565b9050919050565b600060208201905081810360008301526145e881613ffd565b9050919050565b600060208201905081810360008301526146088161407d565b9050919050565b60006020820190508181036000830152614628816140e3565b9050919050565b6000602082019050818103600083015261464881614123565b9050919050565b6000602082019050818103600083015261466881614163565b9050919050565b600060208201905061468460008301846141a3565b92915050565b600060208201905061469f60008301846141b2565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146cc576146cb614b90565b5b8060405250919050565b600067ffffffffffffffff8211156146f1576146f0614b90565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561472157614720614b90565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006147a48261494d565b91506147af8361494d565b92508261ffff038211156147c6576147c5614ad4565b5b828201905092915050565b60006147dc8261497b565b91506147e78361497b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561481c5761481b614ad4565b5b828201905092915050565b60006148328261497b565b915061483d8361497b565b92508261484d5761484c614b03565b5b828204905092915050565b60006148638261497b565b915061486e8361497b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148a7576148a6614ad4565b5b828202905092915050565b60006148bd8261497b565b91506148c88361497b565b9250828210156148db576148da614ad4565b5b828203905092915050565b60006148f18261495b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061494882614bdd565b919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006149908261493a565b9050919050565b82818337600083830152505050565b60005b838110156149c45780820151818401526020810190506149a9565b838111156149d3576000848401525b50505050565b600060028204905060018216806149f157607f821691505b60208210811415614a0557614a04614b61565b5b50919050565b6000614a168261494d565b915061ffff821415614a2b57614a2a614ad4565b5b600182019050919050565b6000614a418261497b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a7457614a73614ad4565b5b600182019050919050565b6000614a8a82614a91565b9050919050565b6000614a9c82614bd0565b9050919050565b6000614aae8261497b565b9150614ab98361497b565b925082614ac957614ac8614b03565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60038110614bee57614bed614b32565b5b50565b614bfa816148e6565b8114614c0557600080fd5b50565b614c11816148f8565b8114614c1c57600080fd5b50565b614c2881614904565b8114614c3357600080fd5b50565b614c3f8161490e565b8114614c4a57600080fd5b50565b60038110614c5a57600080fd5b50565b614c668161494d565b8114614c7157600080fd5b50565b614c7d8161497b565b8114614c8857600080fd5b5056fea26469706673582212202b8f8b756f168b3ea2ef650d07476b7175f8c9d6d8415ea7b58827805076ce3964736f6c63430008000033

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.