ETH Price: $3,456.09 (+1.21%)
Gas: 17 Gwei

Token

E-BOT Cyber Club (EBOT)
 

Overview

Max Total Supply

991 EBOT

Holders

235

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
25 EBOT
0xaf9390ae0c19975a8062638b6bd0c24f35694a7c
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:
Ebots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-18
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: eBots.sol


pragma solidity ^0.8.7;



contract Ebots is ERC721A, Ownable {
    uint256 MAX_MINTS =10;   //wl maX allow

    uint256 public MAX_SUPPLY =5233;    //total supply

    uint256 public Max_Per_Mint;  //max per mint

    uint256 mintRate;  //price

    uint256 public startingIndex;

    address payable beneficiary;

    bool private _saleStarted ;

    string public provenanceHash = "";
    string public baseURI;

    bool private _presaleActive;



    constructor(uint256 _startPrice, 
        uint256 _maxPerMint,
        string memory _uri) ERC721A("E-BOT Cyber Club", "EBOT") {
            mintRate = _startPrice;
            Max_Per_Mint = _maxPerMint;
            baseURI = _uri;
        }

    function setBeneficiary(address payable _beneficiary) public virtual onlyOwner {
        beneficiary = _beneficiary;
    }

    function setBaseURI(string calldata uri ) public onlyOwner {
        baseURI = uri;
    }

    
    // FOR WL MAX ALLOWED   

    function setMax(uint256 Value) public onlyOwner {
        MAX_MINTS = Value;
    }

    function setMaxPerMint(uint256 Value) public onlyOwner {
        Max_Per_Mint = Value;
    }

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


    //set price
    function setPrice(uint256 _newprice) public onlyOwner {
        mintRate = _newprice;
    }

    function getPrice() public view virtual returns (uint256){
        return mintRate;
    }

    function getAddress() public view virtual returns (address){
        return beneficiary;
    }

    // when sale started for public
    modifier whenSaleStarted() {
        require(_saleStarted, "Sale not active");
        _;
    }

    //when sale started for Whitelisted 
    modifier whenPresaleStarted() {
        require(_presaleActive, "Presale not active");
        _;
    }

    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        provenanceHash = _provenanceHash;
    }

    // public mint
    function mint(uint256 quantity) whenSaleStarted external payable {
        
        require(quantity <= Max_Per_Mint, "Maximum mint per transaction limit reached");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    // whitelist Mint
    function whitelistMint(uint256 quantity) whenPresaleStarted external payable {
        require(quantity <= Max_Per_Mint, "Maximum mint per transaction limit reached");
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    // mint by owner
    function MintByOwner(address _receiver,uint256 quantity) external onlyOwner virtual {
        require(_receiver != address(0), "Not mint to null address");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(_receiver, quantity);
    }



    // giveawayS Airdrop mints
    function Giveaway(address _receiver, uint256 quantity) external onlyOwner virtual {
        require(_receiver != address(0), "Not mint to null address");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(_receiver, quantity);
    }

    // start public sale
    function SaleStarted() external onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");

        _saleStarted = !_saleStarted;
    }

    // start presale for whitelisted users
    function presaleStarted() external onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");
        _presaleActive = !_presaleActive;
    }

    //check if public sale is active
    function saleActive() public view returns(bool) {
        return _saleStarted;
    }

    
    // withdraw money
    function withdraw() public virtual onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");
        uint256 _balance = address(this).balance;
        require(payable(beneficiary).send(_balance));
    }

    //check if presale is active
    function presaleIsActive() public view returns(bool) {
        return _presaleActive;
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startPrice","type":"uint256"},{"internalType":"uint256","name":"_maxPerMint","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Per_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"MintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SaleStarted","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"provenanceHash","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_beneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Value","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Value","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600955611471600a5560405180602001604052806000815250600f90805190602001906200003692919062000243565b503480156200004457600080fd5b5060405162004a2038038062004a2083398181016040528101906200006a919062000388565b6040518060400160405280601081526020017f452d424f5420437962657220436c7562000000000000000000000000000000008152506040518060400160405280600481526020017f45424f54000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ee92919062000243565b5080600390805190602001906200010792919062000243565b50620001186200017060201b60201c565b600081905550505062000140620001346200017560201b60201c565b6200017d60201b60201c565b82600c8190555081600b8190555080601090805190602001906200016692919062000243565b50505050620005ab565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025190620004a2565b90600052602060002090601f016020900481019282620002755760008555620002c1565b82601f106200029057805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c0578251825591602001919060010190620002a3565b5b509050620002d09190620002d4565b5090565b5b80821115620002ef576000816000905550600101620002d5565b5090565b60006200030a62000304846200042c565b62000403565b90508281526020810184848401111562000329576200032862000571565b5b620003368482856200046c565b509392505050565b600082601f8301126200035657620003556200056c565b5b815162000368848260208601620002f3565b91505092915050565b600081519050620003828162000591565b92915050565b600080600060608486031215620003a457620003a36200057b565b5b6000620003b48682870162000371565b9350506020620003c78682870162000371565b925050604084015167ffffffffffffffff811115620003eb57620003ea62000576565b5b620003f9868287016200033e565b9150509250925092565b60006200040f62000422565b90506200041d8282620004d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200044a57620004496200053d565b5b620004558262000580565b9050602081019050919050565b6000819050919050565b60005b838110156200048c5780820151818401526020810190506200046f565b838111156200049c576000848401525b50505050565b60006002820490506001821680620004bb57607f821691505b60208210811415620004d257620004d16200050e565b5b50919050565b620004e38262000580565b810181811067ffffffffffffffff821117156200050557620005046200053d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200059c8162000462565b8114620005a857600080fd5b50565b61446580620005bb6000396000f3fe6080604052600436106102305760003560e01c806368428a1b1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107ad578063cb774d47146107ea578063db6242c314610815578063e985e9c51461083e578063f2fde38b1461087b57610230565b8063a0712d68146106eb578063a22cb46514610707578063b88d4fde14610730578063bfa26a5814610759578063c6ab67a31461078257610230565b80638da5cb5b116100f25780638da5cb5b1461062a578063912ee23d1461065557806391b7f5ed1461066c57806395d89b411461069557806398d5fdca146106c057610230565b806368428a1b146105645780636c0360eb1461058f57806370a08231146105ba578063715018a6146105f7578063868ff4a21461060e57610230565b80632118eda2116101bc5780633ccfd60b116101805780633ccfd60b1461049357806342842e0e146104aa57806346cde989146104d357806355f804b3146104fe5780636352211e1461052757610230565b80632118eda2146103c057806323b872dd146103e957806330f72cd41461041257806332cb6b0c1461043d57806338cc48311461046857610230565b8063095ea7b311610203578063095ea7b3146102f1578063109695231461031a57806318160ddd146103435780631c31f7101461036e5780631fe9eabc1461039757610230565b806301ffc9a71461023557806304549d6f1461027257806306fdde0314610289578063081812fc146102b4575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137ca565b6108a4565b6040516102699190613ba0565b60405180910390f35b34801561027e57600080fd5b50610287610986565b005b34801561029557600080fd5b5061029e610ac0565b6040516102ab9190613bbb565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906138ba565b610b52565b6040516102e89190613b39565b60405180910390f35b3480156102fd57600080fd5b506103186004803603810190610313919061378a565b610bce565b005b34801561032657600080fd5b50610341600480360381019061033c9190613871565b610cd9565b005b34801561034f57600080fd5b50610358610d6f565b6040516103659190613d1d565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190613607565b610d86565b005b3480156103a357600080fd5b506103be60048036038101906103b991906138ba565b610e46565b005b3480156103cc57600080fd5b506103e760048036038101906103e2919061378a565b610ecc565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613674565b61101d565b005b34801561041e57600080fd5b5061042761102d565b6040516104349190613ba0565b60405180910390f35b34801561044957600080fd5b50610452611044565b60405161045f9190613d1d565b60405180910390f35b34801561047457600080fd5b5061047d61104a565b60405161048a9190613b39565b60405180910390f35b34801561049f57600080fd5b506104a8611074565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190613674565b6111ea565b005b3480156104df57600080fd5b506104e861120a565b6040516104f59190613d1d565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613824565b611210565b005b34801561053357600080fd5b5061054e600480360381019061054991906138ba565b6112a2565b60405161055b9190613b39565b60405180910390f35b34801561057057600080fd5b506105796112b8565b6040516105869190613ba0565b60405180910390f35b34801561059b57600080fd5b506105a46112cf565b6040516105b19190613bbb565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906135da565b61135d565b6040516105ee9190613d1d565b60405180910390f35b34801561060357600080fd5b5061060c61142d565b005b610628600480360381019061062391906138ba565b6114b5565b005b34801561063657600080fd5b5061063f611655565b60405161064c9190613b39565b60405180910390f35b34801561066157600080fd5b5061066a61167f565b005b34801561067857600080fd5b50610693600480360381019061068e91906138ba565b6117b9565b005b3480156106a157600080fd5b506106aa61183f565b6040516106b79190613bbb565b60405180910390f35b3480156106cc57600080fd5b506106d56118d1565b6040516106e29190613d1d565b60405180910390f35b610705600480360381019061070091906138ba565b6118db565b005b34801561071357600080fd5b5061072e6004803603810190610729919061374a565b611a23565b005b34801561073c57600080fd5b50610757600480360381019061075291906136c7565b611b9b565b005b34801561076557600080fd5b50610780600480360381019061077b919061378a565b611c17565b005b34801561078e57600080fd5b50610797611d68565b6040516107a49190613bbb565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf91906138ba565b611df6565b6040516107e19190613bbb565b60405180910390f35b3480156107f657600080fd5b506107ff611e95565b60405161080c9190613d1d565b60405180910390f35b34801561082157600080fd5b5061083c600480360381019061083791906138ba565b611e9b565b005b34801561084a57600080fd5b5061086560048036038101906108609190613634565b611f21565b6040516108729190613ba0565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d91906135da565b611fb5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097f575061097e826120ad565b5b9050919050565b61098e612117565b73ffffffffffffffffffffffffffffffffffffffff166109ac611655565b73ffffffffffffffffffffffffffffffffffffffff1614610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90613c1d565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b606060028054610acf90613fdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610afb90613fdf565b8015610b485780601f10610b1d57610100808354040283529160200191610b48565b820191906000526020600020905b815481529060010190602001808311610b2b57829003601f168201915b5050505050905090565b6000610b5d8261211f565b610b93576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd9826112a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c41576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c60612117565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c925750610c9081610c8b612117565b611f21565b155b15610cc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd483838361216d565b505050565b610ce1612117565b73ffffffffffffffffffffffffffffffffffffffff16610cff611655565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613cbd565b60405180910390fd5b80600f9080519060200190610d6b9291906132ba565b5050565b6000610d7961221f565b6001546000540303905090565b610d8e612117565b73ffffffffffffffffffffffffffffffffffffffff16610dac611655565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990613cbd565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e4e612117565b73ffffffffffffffffffffffffffffffffffffffff16610e6c611655565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990613cbd565b60405180910390fd5b8060098190555050565b610ed4612117565b73ffffffffffffffffffffffffffffffffffffffff16610ef2611655565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613bfd565b60405180910390fd5b600a5481610fc4610d6f565b610fce9190613e02565b111561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613c9d565b60405180910390fd5b6110198282612224565b5050565b611028838383612242565b505050565b6000601160009054906101000a900460ff16905090565b600a5481565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107c612117565b73ffffffffffffffffffffffffffffffffffffffff1661109a611655565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613c1d565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111e757600080fd5b50565b61120583838360405180602001604052806000815250611b9b565b505050565b600b5481565b611218612117565b73ffffffffffffffffffffffffffffffffffffffff16611236611655565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613cbd565b60405180910390fd5b81816010919061129d929190613340565b505050565b60006112ad82612733565b600001519050919050565b6000600e60149054906101000a900460ff16905090565b601080546112dc90613fdf565b80601f016020809104026020016040519081016040528092919081815260200182805461130890613fdf565b80156113555780601f1061132a57610100808354040283529160200191611355565b820191906000526020600020905b81548152906001019060200180831161133857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611435612117565b73ffffffffffffffffffffffffffffffffffffffff16611453611655565b73ffffffffffffffffffffffffffffffffffffffff16146114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090613cbd565b60405180910390fd5b6114b360006129c2565b565b601160009054906101000a900460ff16611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90613c3d565b60405180910390fd5b600b54811115611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613cdd565b60405180910390fd5b60095461155533612a88565b826115609190613e02565b11156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613c5d565b60405180910390fd5b600a54816115ad610d6f565b6115b79190613e02565b11156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613c9d565b60405180910390fd5b80600c546116069190613e89565b341015611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90613cfd565b60405180910390fd5b6116523382612224565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611687612117565b73ffffffffffffffffffffffffffffffffffffffff166116a5611655565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613c1d565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b6117c1612117565b73ffffffffffffffffffffffffffffffffffffffff166117df611655565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613cbd565b60405180910390fd5b80600c8190555050565b60606003805461184e90613fdf565b80601f016020809104026020016040519081016040528092919081815260200182805461187a90613fdf565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b5050505050905090565b6000600c54905090565b600e60149054906101000a900460ff1661192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613c7d565b60405180910390fd5b600b5481111561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613cdd565b60405180910390fd5b600a548161197b610d6f565b6119859190613e02565b11156119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90613c9d565b60405180910390fd5b80600c546119d49190613e89565b341015611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90613cfd565b60405180910390fd5b611a203382612224565b50565b611a2b612117565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a90576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a9d612117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b4a612117565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8f9190613ba0565b60405180910390a35050565b611ba6848484612242565b611bc58373ffffffffffffffffffffffffffffffffffffffff16612b58565b8015611bda5750611bd884848484612b7b565b155b15611c11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c1f612117565b73ffffffffffffffffffffffffffffffffffffffff16611c3d611655565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613bfd565b60405180910390fd5b600a5481611d0f610d6f565b611d199190613e02565b1115611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613c9d565b60405180910390fd5b611d648282612224565b5050565b600f8054611d7590613fdf565b80601f0160208091040260200160405190810160405280929190818152602001828054611da190613fdf565b8015611dee5780601f10611dc357610100808354040283529160200191611dee565b820191906000526020600020905b815481529060010190602001808311611dd157829003601f168201915b505050505081565b6060611e018261211f565b611e37576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e41612cdb565b9050600081511415611e625760405180602001604052806000815250611e8d565b80611e6c84612d6d565b604051602001611e7d929190613b15565b6040516020818303038152906040525b915050919050565b600d5481565b611ea3612117565b73ffffffffffffffffffffffffffffffffffffffff16611ec1611655565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613cbd565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fbd612117565b73ffffffffffffffffffffffffffffffffffffffff16611fdb611655565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613bdd565b60405180910390fd5b6120aa816129c2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161212a61221f565b11158015612139575060005482105b8015612166575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61223e828260405180602001604052806000815250612ece565b5050565b600061224d82612733565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612274612117565b73ffffffffffffffffffffffffffffffffffffffff1614806122a757506122a682600001516122a1612117565b611f21565b5b806122ec57506122b5612117565b73ffffffffffffffffffffffffffffffffffffffff166122d484610b52565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612325576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461238e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124028585856001612ee0565b612412600084846000015161216d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126c3576000548110156126c25782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272c8585856001612ee6565b5050505050565b61273b6133c6565b60008290508061274961221f565b11158015612758575060005481105b1561298b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161298957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461286d5780925050506129bd565b5b60011561298857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129835780925050506129bd565b61286e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af0576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ba1612117565b8786866040518563ffffffff1660e01b8152600401612bc39493929190613b54565b602060405180830381600087803b158015612bdd57600080fd5b505af1925050508015612c0e57506040513d601f19601f82011682018060405250810190612c0b91906137f7565b60015b612c88573d8060008114612c3e576040519150601f19603f3d011682016040523d82523d6000602084013e612c43565b606091505b50600081511415612c80576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612cea90613fdf565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1690613fdf565b8015612d635780601f10612d3857610100808354040283529160200191612d63565b820191906000526020600020905b815481529060010190602001808311612d4657829003601f168201915b5050505050905090565b60606000821415612db5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ec9565b600082905060005b60008214612de7578080612dd090614042565b915050600a82612de09190613e58565b9150612dbd565b60008167ffffffffffffffff811115612e0357612e02614178565b5b6040519080825280601f01601f191660200182016040528015612e355781602001600182028036833780820191505090505b5090505b60008514612ec257600182612e4e9190613ee3565b9150600a85612e5d919061408b565b6030612e699190613e02565b60f81b818381518110612e7f57612e7e614149565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ebb9190613e58565b9450612e39565b8093505050505b919050565b612edb8383836001612eec565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f59576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612f94576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fa16000868387612ee0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561316b575061316a8773ffffffffffffffffffffffffffffffffffffffff16612b58565b5b15613231575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131e06000888480600101955088612b7b565b613216576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561317157826000541461322c57600080fd5b61329d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613232575b8160008190555050506132b36000868387612ee6565b5050505050565b8280546132c690613fdf565b90600052602060002090601f0160209004810192826132e8576000855561332f565b82601f1061330157805160ff191683800117855561332f565b8280016001018555821561332f579182015b8281111561332e578251825591602001919060010190613313565b5b50905061333c9190613409565b5090565b82805461334c90613fdf565b90600052602060002090601f01602090048101928261336e57600085556133b5565b82601f1061338757803560ff19168380011785556133b5565b828001600101855582156133b5579182015b828111156133b4578235825591602001919060010190613399565b5b5090506133c29190613409565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561342257600081600090555060010161340a565b5090565b600061343961343484613d5d565b613d38565b905082815260208101848484011115613455576134546141b6565b5b613460848285613f9d565b509392505050565b600061347b61347684613d8e565b613d38565b905082815260208101848484011115613497576134966141b6565b5b6134a2848285613f9d565b509392505050565b6000813590506134b9816143bc565b92915050565b6000813590506134ce816143d3565b92915050565b6000813590506134e3816143ea565b92915050565b6000813590506134f881614401565b92915050565b60008151905061350d81614401565b92915050565b600082601f830112613528576135276141ac565b5b8135613538848260208601613426565b91505092915050565b60008083601f840112613557576135566141ac565b5b8235905067ffffffffffffffff811115613574576135736141a7565b5b6020830191508360018202830111156135905761358f6141b1565b5b9250929050565b600082601f8301126135ac576135ab6141ac565b5b81356135bc848260208601613468565b91505092915050565b6000813590506135d481614418565b92915050565b6000602082840312156135f0576135ef6141c0565b5b60006135fe848285016134aa565b91505092915050565b60006020828403121561361d5761361c6141c0565b5b600061362b848285016134bf565b91505092915050565b6000806040838503121561364b5761364a6141c0565b5b6000613659858286016134aa565b925050602061366a858286016134aa565b9150509250929050565b60008060006060848603121561368d5761368c6141c0565b5b600061369b868287016134aa565b93505060206136ac868287016134aa565b92505060406136bd868287016135c5565b9150509250925092565b600080600080608085870312156136e1576136e06141c0565b5b60006136ef878288016134aa565b9450506020613700878288016134aa565b9350506040613711878288016135c5565b925050606085013567ffffffffffffffff811115613732576137316141bb565b5b61373e87828801613513565b91505092959194509250565b60008060408385031215613761576137606141c0565b5b600061376f858286016134aa565b9250506020613780858286016134d4565b9150509250929050565b600080604083850312156137a1576137a06141c0565b5b60006137af858286016134aa565b92505060206137c0858286016135c5565b9150509250929050565b6000602082840312156137e0576137df6141c0565b5b60006137ee848285016134e9565b91505092915050565b60006020828403121561380d5761380c6141c0565b5b600061381b848285016134fe565b91505092915050565b6000806020838503121561383b5761383a6141c0565b5b600083013567ffffffffffffffff811115613859576138586141bb565b5b61386585828601613541565b92509250509250929050565b600060208284031215613887576138866141c0565b5b600082013567ffffffffffffffff8111156138a5576138a46141bb565b5b6138b184828501613597565b91505092915050565b6000602082840312156138d0576138cf6141c0565b5b60006138de848285016135c5565b91505092915050565b6138f081613f17565b82525050565b6138ff81613f3b565b82525050565b600061391082613dbf565b61391a8185613dd5565b935061392a818560208601613fac565b613933816141c5565b840191505092915050565b600061394982613dca565b6139538185613de6565b9350613963818560208601613fac565b61396c816141c5565b840191505092915050565b600061398282613dca565b61398c8185613df7565b935061399c818560208601613fac565b80840191505092915050565b60006139b5602683613de6565b91506139c0826141d6565b604082019050919050565b60006139d8601883613de6565b91506139e382614225565b602082019050919050565b60006139fb601383613de6565b9150613a068261424e565b602082019050919050565b6000613a1e601283613de6565b9150613a2982614277565b602082019050919050565b6000613a41601283613de6565b9150613a4c826142a0565b602082019050919050565b6000613a64600f83613de6565b9150613a6f826142c9565b602082019050919050565b6000613a87601683613de6565b9150613a92826142f2565b602082019050919050565b6000613aaa602083613de6565b9150613ab58261431b565b602082019050919050565b6000613acd602a83613de6565b9150613ad882614344565b604082019050919050565b6000613af0601583613de6565b9150613afb82614393565b602082019050919050565b613b0f81613f93565b82525050565b6000613b218285613977565b9150613b2d8284613977565b91508190509392505050565b6000602082019050613b4e60008301846138e7565b92915050565b6000608082019050613b6960008301876138e7565b613b7660208301866138e7565b613b836040830185613b06565b8181036060830152613b958184613905565b905095945050505050565b6000602082019050613bb560008301846138f6565b92915050565b60006020820190508181036000830152613bd5818461393e565b905092915050565b60006020820190508181036000830152613bf6816139a8565b9050919050565b60006020820190508181036000830152613c16816139cb565b9050919050565b60006020820190508181036000830152613c36816139ee565b9050919050565b60006020820190508181036000830152613c5681613a11565b9050919050565b60006020820190508181036000830152613c7681613a34565b9050919050565b60006020820190508181036000830152613c9681613a57565b9050919050565b60006020820190508181036000830152613cb681613a7a565b9050919050565b60006020820190508181036000830152613cd681613a9d565b9050919050565b60006020820190508181036000830152613cf681613ac0565b9050919050565b60006020820190508181036000830152613d1681613ae3565b9050919050565b6000602082019050613d326000830184613b06565b92915050565b6000613d42613d53565b9050613d4e8282614011565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7857613d77614178565b5b613d81826141c5565b9050602081019050919050565b600067ffffffffffffffff821115613da957613da8614178565b5b613db2826141c5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0d82613f93565b9150613e1883613f93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4d57613e4c6140bc565b5b828201905092915050565b6000613e6382613f93565b9150613e6e83613f93565b925082613e7e57613e7d6140eb565b5b828204905092915050565b6000613e9482613f93565b9150613e9f83613f93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ed857613ed76140bc565b5b828202905092915050565b6000613eee82613f93565b9150613ef983613f93565b925082821015613f0c57613f0b6140bc565b5b828203905092915050565b6000613f2282613f73565b9050919050565b6000613f3482613f73565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fca578082015181840152602081019050613faf565b83811115613fd9576000848401525b50505050565b60006002820490506001821680613ff757607f821691505b6020821081141561400b5761400a61411a565b5b50919050565b61401a826141c5565b810181811067ffffffffffffffff8211171561403957614038614178565b5b80604052505050565b600061404d82613f93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140805761407f6140bc565b5b600182019050919050565b600061409682613f93565b91506140a183613f93565b9250826140b1576140b06140eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d696e7420746f206e756c6c20616464726573730000000000000000600082015250565b7f42656e6566696369617279206e6f742073657400000000000000000000000000600082015250565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e7420706572207472616e73616374696f6e206c696d60008201527f6974207265616368656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6143c581613f17565b81146143d057600080fd5b50565b6143dc81613f29565b81146143e757600080fd5b50565b6143f381613f3b565b81146143fe57600080fd5b50565b61440a81613f47565b811461441557600080fd5b50565b61442181613f93565b811461442c57600080fd5b5056fea2646970667358221220023a65fba4eae8eb5ac8dd1830cee921139af3e7b339426df0c89312a8d58b9664736f6c63430008070033000000000000000000000000000000000000000000000000008e1bc9bf040000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6d657461646174612d616b2d6465762e76657263656c2e6170702f6170692f65626f74732f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806368428a1b1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107ad578063cb774d47146107ea578063db6242c314610815578063e985e9c51461083e578063f2fde38b1461087b57610230565b8063a0712d68146106eb578063a22cb46514610707578063b88d4fde14610730578063bfa26a5814610759578063c6ab67a31461078257610230565b80638da5cb5b116100f25780638da5cb5b1461062a578063912ee23d1461065557806391b7f5ed1461066c57806395d89b411461069557806398d5fdca146106c057610230565b806368428a1b146105645780636c0360eb1461058f57806370a08231146105ba578063715018a6146105f7578063868ff4a21461060e57610230565b80632118eda2116101bc5780633ccfd60b116101805780633ccfd60b1461049357806342842e0e146104aa57806346cde989146104d357806355f804b3146104fe5780636352211e1461052757610230565b80632118eda2146103c057806323b872dd146103e957806330f72cd41461041257806332cb6b0c1461043d57806338cc48311461046857610230565b8063095ea7b311610203578063095ea7b3146102f1578063109695231461031a57806318160ddd146103435780631c31f7101461036e5780631fe9eabc1461039757610230565b806301ffc9a71461023557806304549d6f1461027257806306fdde0314610289578063081812fc146102b4575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137ca565b6108a4565b6040516102699190613ba0565b60405180910390f35b34801561027e57600080fd5b50610287610986565b005b34801561029557600080fd5b5061029e610ac0565b6040516102ab9190613bbb565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906138ba565b610b52565b6040516102e89190613b39565b60405180910390f35b3480156102fd57600080fd5b506103186004803603810190610313919061378a565b610bce565b005b34801561032657600080fd5b50610341600480360381019061033c9190613871565b610cd9565b005b34801561034f57600080fd5b50610358610d6f565b6040516103659190613d1d565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190613607565b610d86565b005b3480156103a357600080fd5b506103be60048036038101906103b991906138ba565b610e46565b005b3480156103cc57600080fd5b506103e760048036038101906103e2919061378a565b610ecc565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613674565b61101d565b005b34801561041e57600080fd5b5061042761102d565b6040516104349190613ba0565b60405180910390f35b34801561044957600080fd5b50610452611044565b60405161045f9190613d1d565b60405180910390f35b34801561047457600080fd5b5061047d61104a565b60405161048a9190613b39565b60405180910390f35b34801561049f57600080fd5b506104a8611074565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190613674565b6111ea565b005b3480156104df57600080fd5b506104e861120a565b6040516104f59190613d1d565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613824565b611210565b005b34801561053357600080fd5b5061054e600480360381019061054991906138ba565b6112a2565b60405161055b9190613b39565b60405180910390f35b34801561057057600080fd5b506105796112b8565b6040516105869190613ba0565b60405180910390f35b34801561059b57600080fd5b506105a46112cf565b6040516105b19190613bbb565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906135da565b61135d565b6040516105ee9190613d1d565b60405180910390f35b34801561060357600080fd5b5061060c61142d565b005b610628600480360381019061062391906138ba565b6114b5565b005b34801561063657600080fd5b5061063f611655565b60405161064c9190613b39565b60405180910390f35b34801561066157600080fd5b5061066a61167f565b005b34801561067857600080fd5b50610693600480360381019061068e91906138ba565b6117b9565b005b3480156106a157600080fd5b506106aa61183f565b6040516106b79190613bbb565b60405180910390f35b3480156106cc57600080fd5b506106d56118d1565b6040516106e29190613d1d565b60405180910390f35b610705600480360381019061070091906138ba565b6118db565b005b34801561071357600080fd5b5061072e6004803603810190610729919061374a565b611a23565b005b34801561073c57600080fd5b50610757600480360381019061075291906136c7565b611b9b565b005b34801561076557600080fd5b50610780600480360381019061077b919061378a565b611c17565b005b34801561078e57600080fd5b50610797611d68565b6040516107a49190613bbb565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf91906138ba565b611df6565b6040516107e19190613bbb565b60405180910390f35b3480156107f657600080fd5b506107ff611e95565b60405161080c9190613d1d565b60405180910390f35b34801561082157600080fd5b5061083c600480360381019061083791906138ba565b611e9b565b005b34801561084a57600080fd5b5061086560048036038101906108609190613634565b611f21565b6040516108729190613ba0565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d91906135da565b611fb5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097f575061097e826120ad565b5b9050919050565b61098e612117565b73ffffffffffffffffffffffffffffffffffffffff166109ac611655565b73ffffffffffffffffffffffffffffffffffffffff1614610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90613c1d565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b606060028054610acf90613fdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610afb90613fdf565b8015610b485780601f10610b1d57610100808354040283529160200191610b48565b820191906000526020600020905b815481529060010190602001808311610b2b57829003601f168201915b5050505050905090565b6000610b5d8261211f565b610b93576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd9826112a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c41576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c60612117565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c925750610c9081610c8b612117565b611f21565b155b15610cc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd483838361216d565b505050565b610ce1612117565b73ffffffffffffffffffffffffffffffffffffffff16610cff611655565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613cbd565b60405180910390fd5b80600f9080519060200190610d6b9291906132ba565b5050565b6000610d7961221f565b6001546000540303905090565b610d8e612117565b73ffffffffffffffffffffffffffffffffffffffff16610dac611655565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990613cbd565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e4e612117565b73ffffffffffffffffffffffffffffffffffffffff16610e6c611655565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990613cbd565b60405180910390fd5b8060098190555050565b610ed4612117565b73ffffffffffffffffffffffffffffffffffffffff16610ef2611655565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613bfd565b60405180910390fd5b600a5481610fc4610d6f565b610fce9190613e02565b111561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613c9d565b60405180910390fd5b6110198282612224565b5050565b611028838383612242565b505050565b6000601160009054906101000a900460ff16905090565b600a5481565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107c612117565b73ffffffffffffffffffffffffffffffffffffffff1661109a611655565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613c1d565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111e757600080fd5b50565b61120583838360405180602001604052806000815250611b9b565b505050565b600b5481565b611218612117565b73ffffffffffffffffffffffffffffffffffffffff16611236611655565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613cbd565b60405180910390fd5b81816010919061129d929190613340565b505050565b60006112ad82612733565b600001519050919050565b6000600e60149054906101000a900460ff16905090565b601080546112dc90613fdf565b80601f016020809104026020016040519081016040528092919081815260200182805461130890613fdf565b80156113555780601f1061132a57610100808354040283529160200191611355565b820191906000526020600020905b81548152906001019060200180831161133857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611435612117565b73ffffffffffffffffffffffffffffffffffffffff16611453611655565b73ffffffffffffffffffffffffffffffffffffffff16146114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090613cbd565b60405180910390fd5b6114b360006129c2565b565b601160009054906101000a900460ff16611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90613c3d565b60405180910390fd5b600b54811115611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613cdd565b60405180910390fd5b60095461155533612a88565b826115609190613e02565b11156115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613c5d565b60405180910390fd5b600a54816115ad610d6f565b6115b79190613e02565b11156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613c9d565b60405180910390fd5b80600c546116069190613e89565b341015611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f90613cfd565b60405180910390fd5b6116523382612224565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611687612117565b73ffffffffffffffffffffffffffffffffffffffff166116a5611655565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613c1d565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b6117c1612117565b73ffffffffffffffffffffffffffffffffffffffff166117df611655565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613cbd565b60405180910390fd5b80600c8190555050565b60606003805461184e90613fdf565b80601f016020809104026020016040519081016040528092919081815260200182805461187a90613fdf565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b5050505050905090565b6000600c54905090565b600e60149054906101000a900460ff1661192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613c7d565b60405180910390fd5b600b5481111561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613cdd565b60405180910390fd5b600a548161197b610d6f565b6119859190613e02565b11156119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90613c9d565b60405180910390fd5b80600c546119d49190613e89565b341015611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90613cfd565b60405180910390fd5b611a203382612224565b50565b611a2b612117565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a90576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a9d612117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b4a612117565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8f9190613ba0565b60405180910390a35050565b611ba6848484612242565b611bc58373ffffffffffffffffffffffffffffffffffffffff16612b58565b8015611bda5750611bd884848484612b7b565b155b15611c11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c1f612117565b73ffffffffffffffffffffffffffffffffffffffff16611c3d611655565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613bfd565b60405180910390fd5b600a5481611d0f610d6f565b611d199190613e02565b1115611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613c9d565b60405180910390fd5b611d648282612224565b5050565b600f8054611d7590613fdf565b80601f0160208091040260200160405190810160405280929190818152602001828054611da190613fdf565b8015611dee5780601f10611dc357610100808354040283529160200191611dee565b820191906000526020600020905b815481529060010190602001808311611dd157829003601f168201915b505050505081565b6060611e018261211f565b611e37576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e41612cdb565b9050600081511415611e625760405180602001604052806000815250611e8d565b80611e6c84612d6d565b604051602001611e7d929190613b15565b6040516020818303038152906040525b915050919050565b600d5481565b611ea3612117565b73ffffffffffffffffffffffffffffffffffffffff16611ec1611655565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613cbd565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fbd612117565b73ffffffffffffffffffffffffffffffffffffffff16611fdb611655565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613bdd565b60405180910390fd5b6120aa816129c2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161212a61221f565b11158015612139575060005482105b8015612166575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b61223e828260405180602001604052806000815250612ece565b5050565b600061224d82612733565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612274612117565b73ffffffffffffffffffffffffffffffffffffffff1614806122a757506122a682600001516122a1612117565b611f21565b5b806122ec57506122b5612117565b73ffffffffffffffffffffffffffffffffffffffff166122d484610b52565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612325576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461238e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124028585856001612ee0565b612412600084846000015161216d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126c3576000548110156126c25782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272c8585856001612ee6565b5050505050565b61273b6133c6565b60008290508061274961221f565b11158015612758575060005481105b1561298b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161298957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461286d5780925050506129bd565b5b60011561298857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129835780925050506129bd565b61286e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af0576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ba1612117565b8786866040518563ffffffff1660e01b8152600401612bc39493929190613b54565b602060405180830381600087803b158015612bdd57600080fd5b505af1925050508015612c0e57506040513d601f19601f82011682018060405250810190612c0b91906137f7565b60015b612c88573d8060008114612c3e576040519150601f19603f3d011682016040523d82523d6000602084013e612c43565b606091505b50600081511415612c80576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612cea90613fdf565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1690613fdf565b8015612d635780601f10612d3857610100808354040283529160200191612d63565b820191906000526020600020905b815481529060010190602001808311612d4657829003601f168201915b5050505050905090565b60606000821415612db5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ec9565b600082905060005b60008214612de7578080612dd090614042565b915050600a82612de09190613e58565b9150612dbd565b60008167ffffffffffffffff811115612e0357612e02614178565b5b6040519080825280601f01601f191660200182016040528015612e355781602001600182028036833780820191505090505b5090505b60008514612ec257600182612e4e9190613ee3565b9150600a85612e5d919061408b565b6030612e699190613e02565b60f81b818381518110612e7f57612e7e614149565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ebb9190613e58565b9450612e39565b8093505050505b919050565b612edb8383836001612eec565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f59576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612f94576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fa16000868387612ee0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561316b575061316a8773ffffffffffffffffffffffffffffffffffffffff16612b58565b5b15613231575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131e06000888480600101955088612b7b565b613216576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561317157826000541461322c57600080fd5b61329d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613232575b8160008190555050506132b36000868387612ee6565b5050505050565b8280546132c690613fdf565b90600052602060002090601f0160209004810192826132e8576000855561332f565b82601f1061330157805160ff191683800117855561332f565b8280016001018555821561332f579182015b8281111561332e578251825591602001919060010190613313565b5b50905061333c9190613409565b5090565b82805461334c90613fdf565b90600052602060002090601f01602090048101928261336e57600085556133b5565b82601f1061338757803560ff19168380011785556133b5565b828001600101855582156133b5579182015b828111156133b4578235825591602001919060010190613399565b5b5090506133c29190613409565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561342257600081600090555060010161340a565b5090565b600061343961343484613d5d565b613d38565b905082815260208101848484011115613455576134546141b6565b5b613460848285613f9d565b509392505050565b600061347b61347684613d8e565b613d38565b905082815260208101848484011115613497576134966141b6565b5b6134a2848285613f9d565b509392505050565b6000813590506134b9816143bc565b92915050565b6000813590506134ce816143d3565b92915050565b6000813590506134e3816143ea565b92915050565b6000813590506134f881614401565b92915050565b60008151905061350d81614401565b92915050565b600082601f830112613528576135276141ac565b5b8135613538848260208601613426565b91505092915050565b60008083601f840112613557576135566141ac565b5b8235905067ffffffffffffffff811115613574576135736141a7565b5b6020830191508360018202830111156135905761358f6141b1565b5b9250929050565b600082601f8301126135ac576135ab6141ac565b5b81356135bc848260208601613468565b91505092915050565b6000813590506135d481614418565b92915050565b6000602082840312156135f0576135ef6141c0565b5b60006135fe848285016134aa565b91505092915050565b60006020828403121561361d5761361c6141c0565b5b600061362b848285016134bf565b91505092915050565b6000806040838503121561364b5761364a6141c0565b5b6000613659858286016134aa565b925050602061366a858286016134aa565b9150509250929050565b60008060006060848603121561368d5761368c6141c0565b5b600061369b868287016134aa565b93505060206136ac868287016134aa565b92505060406136bd868287016135c5565b9150509250925092565b600080600080608085870312156136e1576136e06141c0565b5b60006136ef878288016134aa565b9450506020613700878288016134aa565b9350506040613711878288016135c5565b925050606085013567ffffffffffffffff811115613732576137316141bb565b5b61373e87828801613513565b91505092959194509250565b60008060408385031215613761576137606141c0565b5b600061376f858286016134aa565b9250506020613780858286016134d4565b9150509250929050565b600080604083850312156137a1576137a06141c0565b5b60006137af858286016134aa565b92505060206137c0858286016135c5565b9150509250929050565b6000602082840312156137e0576137df6141c0565b5b60006137ee848285016134e9565b91505092915050565b60006020828403121561380d5761380c6141c0565b5b600061381b848285016134fe565b91505092915050565b6000806020838503121561383b5761383a6141c0565b5b600083013567ffffffffffffffff811115613859576138586141bb565b5b61386585828601613541565b92509250509250929050565b600060208284031215613887576138866141c0565b5b600082013567ffffffffffffffff8111156138a5576138a46141bb565b5b6138b184828501613597565b91505092915050565b6000602082840312156138d0576138cf6141c0565b5b60006138de848285016135c5565b91505092915050565b6138f081613f17565b82525050565b6138ff81613f3b565b82525050565b600061391082613dbf565b61391a8185613dd5565b935061392a818560208601613fac565b613933816141c5565b840191505092915050565b600061394982613dca565b6139538185613de6565b9350613963818560208601613fac565b61396c816141c5565b840191505092915050565b600061398282613dca565b61398c8185613df7565b935061399c818560208601613fac565b80840191505092915050565b60006139b5602683613de6565b91506139c0826141d6565b604082019050919050565b60006139d8601883613de6565b91506139e382614225565b602082019050919050565b60006139fb601383613de6565b9150613a068261424e565b602082019050919050565b6000613a1e601283613de6565b9150613a2982614277565b602082019050919050565b6000613a41601283613de6565b9150613a4c826142a0565b602082019050919050565b6000613a64600f83613de6565b9150613a6f826142c9565b602082019050919050565b6000613a87601683613de6565b9150613a92826142f2565b602082019050919050565b6000613aaa602083613de6565b9150613ab58261431b565b602082019050919050565b6000613acd602a83613de6565b9150613ad882614344565b604082019050919050565b6000613af0601583613de6565b9150613afb82614393565b602082019050919050565b613b0f81613f93565b82525050565b6000613b218285613977565b9150613b2d8284613977565b91508190509392505050565b6000602082019050613b4e60008301846138e7565b92915050565b6000608082019050613b6960008301876138e7565b613b7660208301866138e7565b613b836040830185613b06565b8181036060830152613b958184613905565b905095945050505050565b6000602082019050613bb560008301846138f6565b92915050565b60006020820190508181036000830152613bd5818461393e565b905092915050565b60006020820190508181036000830152613bf6816139a8565b9050919050565b60006020820190508181036000830152613c16816139cb565b9050919050565b60006020820190508181036000830152613c36816139ee565b9050919050565b60006020820190508181036000830152613c5681613a11565b9050919050565b60006020820190508181036000830152613c7681613a34565b9050919050565b60006020820190508181036000830152613c9681613a57565b9050919050565b60006020820190508181036000830152613cb681613a7a565b9050919050565b60006020820190508181036000830152613cd681613a9d565b9050919050565b60006020820190508181036000830152613cf681613ac0565b9050919050565b60006020820190508181036000830152613d1681613ae3565b9050919050565b6000602082019050613d326000830184613b06565b92915050565b6000613d42613d53565b9050613d4e8282614011565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7857613d77614178565b5b613d81826141c5565b9050602081019050919050565b600067ffffffffffffffff821115613da957613da8614178565b5b613db2826141c5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0d82613f93565b9150613e1883613f93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4d57613e4c6140bc565b5b828201905092915050565b6000613e6382613f93565b9150613e6e83613f93565b925082613e7e57613e7d6140eb565b5b828204905092915050565b6000613e9482613f93565b9150613e9f83613f93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ed857613ed76140bc565b5b828202905092915050565b6000613eee82613f93565b9150613ef983613f93565b925082821015613f0c57613f0b6140bc565b5b828203905092915050565b6000613f2282613f73565b9050919050565b6000613f3482613f73565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fca578082015181840152602081019050613faf565b83811115613fd9576000848401525b50505050565b60006002820490506001821680613ff757607f821691505b6020821081141561400b5761400a61411a565b5b50919050565b61401a826141c5565b810181811067ffffffffffffffff8211171561403957614038614178565b5b80604052505050565b600061404d82613f93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140805761407f6140bc565b5b600182019050919050565b600061409682613f93565b91506140a183613f93565b9250826140b1576140b06140eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206d696e7420746f206e756c6c20616464726573730000000000000000600082015250565b7f42656e6566696369617279206e6f742073657400000000000000000000000000600082015250565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e7420706572207472616e73616374696f6e206c696d60008201527f6974207265616368656400000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6143c581613f17565b81146143d057600080fd5b50565b6143dc81613f29565b81146143e757600080fd5b50565b6143f381613f3b565b81146143fe57600080fd5b50565b61440a81613f47565b811461441557600080fd5b50565b61442181613f93565b811461442c57600080fd5b5056fea2646970667358221220023a65fba4eae8eb5ac8dd1830cee921139af3e7b339426df0c89312a8d58b9664736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000008e1bc9bf040000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6d657461646174612d616b2d6465762e76657263656c2e6170702f6170692f65626f74732f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _startPrice (uint256): 40000000000000000
Arg [1] : _maxPerMint (uint256): 10
Arg [2] : _uri (string): https://metadata-ak-dev.vercel.app/api/ebots/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [4] : 68747470733a2f2f6d657461646174612d616b2d6465762e76657263656c2e61
Arg [5] : 70702f6170692f65626f74732f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45790:4533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49617:164;;;;;;;;;;;;;:::i;:::-;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32723:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47690:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27521:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46497:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46766:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49086:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34017:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50219:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45879:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47287:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49950:227;;;;;;;;;;;;;:::i;:::-;;34258:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45937:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46629:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31466:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49827:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46171:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28641:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;48253:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49406:159;;;;;;;;;;;;;:::i;:::-;;47087:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31826:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47188:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47844:378;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33436:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48754:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46131:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32001:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46023:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46858:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:305;28374:4;28426:25;28411:40;;;:11;:40;;;;:105;;;;28483:33;28468:48;;;:11;:48;;;;28411:105;:158;;;;28533:36;28557:11;28533:23;:36::i;:::-;28411:158;28391:178;;28272:305;;;:::o;49617:164::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49704:1:::1;49681:25;;:11;;;;;;;;;;;:25;;;;49673:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49759:14;;;;;;;;;;;49758:15;49741:14;;:32;;;;;;;;;;;;;;;;;;49617:164::o:0;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;;;;;;;;;;;;;33248:64;33332:15;:24;33348:7;33332:24;;;;;;;;;;;;;;;;;;;;;33325:31;;33160:204;;;:::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;32851:11;;:2;:11;;;32847:48;;;32871:24;;;;;;;;;;;;;;32847:48;32928:5;32912:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32938:37;32955:5;32962:12;:10;:12::i;:::-;32938:16;:37::i;:::-;32937:38;32912:63;32908:138;;;32999:35;;;;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;47690:126::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47793:15:::1;47776:14;:32;;;;;;;;;;;;:::i;:::-;;47690:126:::0;:::o;27521:303::-;27565:7;27790:15;:13;:15::i;:::-;27775:12;;27759:13;;:28;:46;27752:53;;27521:303;:::o;46497:124::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46601:12:::1;46587:11;;:26;;;;;;;;;;;;;;;;;;46497:124:::0;:::o;46766:84::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46837:5:::1;46825:9;:17;;;;46766:84:::0;:::o;49086:286::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49208:1:::1;49187:23;;:9;:23;;;;49179:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49286:10;;49274:8;49258:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49250:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49334:30;49344:9;49355:8;49334:9;:30::i;:::-;49086:286:::0;;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34017:170;;;:::o;50219:93::-;50266:4;50290:14;;;;;;;;;;;50283:21;;50219:93;:::o;45879:31::-;;;;:::o;47287:96::-;47338:7;47364:11;;;;;;;;;;;47357:18;;47287:96;:::o;49950:227::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50037:1:::1;50014:25;;:11;;;;;;;;;;;:25;;;;50006:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;50074:16;50093:21;50074:40;;50141:11;;;;;;;;;;;50133:25;;:35;50159:8;50133:35;;;;;;;;;;;;;;;;;;;;;;;50125:44;;;::::0;::::1;;49995:182;49950:227::o:0;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;:::-;34258:185;;;:::o;45937:27::-;;;;:::o;46629:91::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46709:3:::1;;46699:7;:13;;;;;;;:::i;:::-;;46629:91:::0;;:::o;31466:124::-;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;;31550:32;;31466:124;;;:::o;49827:86::-;49869:4;49893:12;;;;;;;;;;;49886:19;;49827:86;:::o;46171:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28641:206::-;28705:7;28746:1;28729:19;;:5;:19;;;28725:60;;;28757:28;;;;;;;;;;;;;;28725:60;28811:12;:19;28824:5;28811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28803:36;;28796:43;;28641:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48253:471::-;47625:14;;;;;;;;;;;47617:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48361:12:::1;;48349:8;:24;;48341:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48479:9;;48450:25;48464:10;48450:13;:25::i;:::-;48439:8;:36;;;;:::i;:::-;:49;;48431:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48558:10;;48546:8;48530:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48522:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48639:8;48628;;:19;;;;:::i;:::-;48614:9;:34;;48606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48685:31;48695:10;48707:8;48685:9;:31::i;:::-;48253:471:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;49406:159::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49490:1:::1;49467:25;;:11;;;;;;;;;;;:25;;;;49459:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49545:12;;;;;;;;;;;49544:13;49529:12;;:28;;;;;;;;;;;;;;;;;;49406:159::o:0;47087:93::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47163:9:::1;47152:8;:20;;;;47087:93:::0;:::o;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31826:104;:::o;47188:91::-;47237:7;47263:8;;47256:15;;47188:91;:::o;47844:378::-;47474:12;;;;;;;;;;;47466:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;47950:12:::1;;47938:8;:24;;47930:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48056:10;;48044:8;48028:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48137:8;48126;;:19;;;;:::i;:::-;48112:9;:34;;48104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48183:31;48193:10;48205:8;48183:9;:31::i;:::-;47844:378:::0;:::o;33436:279::-;33539:12;:10;:12::i;:::-;33527:24;;:8;:24;;;33523:54;;;33560:17;;;;;;;;;;;;;;33523:54;33635:8;33590:18;:32;33609:12;:10;:12::i;:::-;33590:32;;;;;;;;;;;;;;;:42;33623:8;33590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33688:8;33659:48;;33674:12;:10;:12::i;:::-;33659:48;;;33698:8;33659:48;;;;;;:::i;:::-;;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;34724:15;:2;:13;;;:15::i;:::-;:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;;;;;;;;;;;;;34720:156;34514:369;;;;:::o;48754:288::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48878:1:::1;48857:23;;:9;:23;;;;48849:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48956:10;;48944:8;48928:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48920:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49004:30;49014:9;49025:8;49004:9;:30::i;:::-;48754:288:::0;;:::o;46131:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32001:318::-;32074:13;32105:16;32113:7;32105;:16::i;:::-;32100:59;;32130:29;;;;;;;;;;;;;;32100:59;32172:21;32196:10;:8;:10::i;:::-;32172:34;;32249:1;32230:7;32224:21;:26;;:87;;;;;;;;;;;;;;;;;32277:7;32286:18;:7;:16;:18::i;:::-;32260:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32224:87;32217:94;;;32001:318;;;:::o;46023:28::-;;;;:::o;46858:94::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46939:5:::1;46924:12;:20;;;;46858:94:::0;:::o;33786:164::-;33883:4;33907:18;:25;33926:5;33907:25;;;;;;;;;;;;;;;:35;33933:8;33907:35;;;;;;;;;;;;;;;;;;;;;;;;;33900:42;;33786:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35138:187::-;35195:4;35238:7;35219:15;:13;:15::i;:::-;:26;;:53;;;;;35259:13;;35249:7;:23;35219:53;:98;;;;;35290:11;:20;35302:7;35290:20;;;;;;;;;;;:27;;;;;;;;;;;;35289:28;35219:98;35212:105;;35138:187;;;:::o;42749:196::-;42891:2;42864:15;:24;42880:7;42864:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42929:7;42925:2;42909:28;;42918:5;42909:28;;;;;;;;;;;;42749:196;;;:::o;27245:92::-;27301:7;27245:92;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;:::-;35333:104;;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38366:58;;38437:22;38479:13;:18;;;38463:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38514:50;38531:13;:18;;;38551:12;:10;:12::i;:::-;38514:16;:50::i;:::-;38463:101;:154;;;;38605:12;:10;:12::i;:::-;38581:36;;:20;38593:7;38581:11;:20::i;:::-;:36;;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;;;;;;;;;;;;;38631:66;38734:4;38712:26;;:13;:18;;;:26;;;38708:67;;38747:28;;;;;;;;;;;;;;38708:67;38804:1;38790:16;;:2;:16;;;38786:52;;;38815:23;;;;;;;;;;;;;;38786:52;38851:43;38873:4;38879:2;38883:7;38892:1;38851:21;:43::i;:::-;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;39334:1;39304:12;:18;39317:4;39304:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39378:1;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:2;39396:11;:20;39408:7;39396:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39486:15;39441:11;:20;39453:7;39441:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39754:19;39786:1;39776:7;:11;39754:33;;39847:1;39806:43;;:11;:24;39818:11;39806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39802:445;;;40031:13;;40017:11;:27;40013:219;;;40101:13;:18;;;40069:11;:24;40081:11;40069:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40184:13;:28;;;40142:11;:24;40154:11;40142:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40013:219;39802:445;39279:979;40294:7;40290:2;40275:27;;40284:4;40275:27;;;;;;;;;;;;40313:42;40334:4;40340:2;40344:7;40353:1;40313:20;:42::i;:::-;38355:2008;;38251:2112;;;:::o;30296:1108::-;30357:21;;:::i;:::-;30391:12;30406:7;30391:22;;30474:4;30455:15;:13;:15::i;:::-;:23;;:47;;;;;30489:13;;30482:4;:20;30455:47;30451:886;;;30523:31;30557:11;:17;30569:4;30557:17;;;;;;;;;;;30523:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:9;:16;;;30593:729;;30669:1;30643:28;;:9;:14;;;:28;;;30639:101;;30707:9;30700:16;;;;;;30639:101;31042:261;31049:4;31042:261;;;31082:6;;;;;;;;31127:11;:17;31139:4;31127:17;;;;;;;;;;;31115:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31201:1;31175:28;;:9;:14;;;:28;;;31171:109;;31243:9;31236:16;;;;;;31171:109;31042:261;;;30593:729;30504:833;30451:886;31365:31;;;;;;;;;;;;;;30296:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;28929:207::-;28990:7;29031:1;29014:19;;:5;:19;;;29010:59;;;29042:27;;;;;;;;;;;;;;29010:59;29095:12;:19;29108:5;29095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29087:41;;29080:48;;28929:207;;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;43437:667::-;43600:4;43637:2;43621:36;;;43658:12;:10;:12::i;:::-;43672:4;43678:7;43687:5;43621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43872:1;43855:6;:13;:18;43851:235;;;43901:40;;;;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;43750:45;;;43740:55;;;:6;:55;;;;43733:62;;;43437:667;;;;;;:::o;46960:100::-;47012:13;47045:7;47038:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46960:100;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;35800:163::-;35923:32;35929:2;35933:8;35943:5;35950:4;35923:5;:32::i;:::-;35800:163;;;:::o;44752:159::-;;;;;:::o;45570:158::-;;;;;:::o;36222:1775::-;36361:20;36384:13;;36361:36;;36426:1;36412:16;;:2;:16;;;36408:48;;;36437:19;;;;;;;;;;;;;;36408:48;36483:1;36471:8;:13;36467:44;;;36493:18;;;;;;;;;;;;;;36467:44;36524:61;36554:1;36558:2;36562:12;36576:8;36524:21;:61::i;:::-;36897:8;36862:12;:16;36875:2;36862:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36961:8;36921:12;:16;36934:2;36921:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:2;36987:11;:25;36999:12;36987:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37087:15;37037:11;:25;37049:12;37037:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37120:20;37143:12;37120:35;;37170:11;37199:8;37184:12;:23;37170:37;;37228:4;:23;;;;;37236:15;:2;:13;;;:15::i;:::-;37228:23;37224:641;;;37272:314;37328:12;37324:2;37303:38;;37320:1;37303:38;;;;;;;;;;;;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;;;;;;;;;;;;;37364:174;37581:3;37565:12;:19;;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37786:14;;;;;;37782:2;37761:40;;37778:1;37761:40;;;;;;;;;;;;37845:3;37829:12;:19;;37730:120;;37224:641;37895:12;37879:13;:28;;;;36837:1082;;37929:60;37958:1;37962:2;37966:12;37980:8;37929:20;:60::i;:::-;36350:1647;36222:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1331:5;1369:6;1356:20;1347:29;;1385:32;1411:5;1385:32;:::i;:::-;1286:137;;;;:::o;1429:141::-;1485:5;1516:6;1510:13;1501:22;;1532:32;1558:5;1532:32;:::i;:::-;1429:141;;;;:::o;1589:338::-;1644:5;1693:3;1686:4;1678:6;1674:17;1670:27;1660:122;;1701:79;;:::i;:::-;1660:122;1818:6;1805:20;1843:78;1917:3;1909:6;1902:4;1894:6;1890:17;1843:78;:::i;:::-;1834:87;;1650:277;1589:338;;;;:::o;1947:553::-;2005:8;2015:6;2065:3;2058:4;2050:6;2046:17;2042:27;2032:122;;2073:79;;:::i;:::-;2032:122;2186:6;2173:20;2163:30;;2216:18;2208:6;2205:30;2202:117;;;2238:79;;:::i;:::-;2202:117;2352:4;2344:6;2340:17;2328:29;;2406:3;2398:4;2390:6;2386:17;2376:8;2372:32;2369:41;2366:128;;;2413:79;;:::i;:::-;2366:128;1947:553;;;;;:::o;2520:340::-;2576:5;2625:3;2618:4;2610:6;2606:17;2602:27;2592:122;;2633:79;;:::i;:::-;2592:122;2750:6;2737:20;2775:79;2850:3;2842:6;2835:4;2827:6;2823:17;2775:79;:::i;:::-;2766:88;;2582:278;2520:340;;;;:::o;2866:139::-;2912:5;2950:6;2937:20;2928:29;;2966:33;2993:5;2966:33;:::i;:::-;2866:139;;;;:::o;3011:329::-;3070:6;3119:2;3107:9;3098:7;3094:23;3090:32;3087:119;;;3125:79;;:::i;:::-;3087:119;3245:1;3270:53;3315:7;3306:6;3295:9;3291:22;3270:53;:::i;:::-;3260:63;;3216:117;3011:329;;;;:::o;3346:345::-;3413:6;3462:2;3450:9;3441:7;3437:23;3433:32;3430:119;;;3468:79;;:::i;:::-;3430:119;3588:1;3613:61;3666:7;3657:6;3646:9;3642:22;3613:61;:::i;:::-;3603:71;;3559:125;3346:345;;;;:::o;3697:474::-;3765:6;3773;3822:2;3810:9;3801:7;3797:23;3793:32;3790:119;;;3828:79;;:::i;:::-;3790:119;3948:1;3973:53;4018:7;4009:6;3998:9;3994:22;3973:53;:::i;:::-;3963:63;;3919:117;4075:2;4101:53;4146:7;4137:6;4126:9;4122:22;4101:53;:::i;:::-;4091:63;;4046:118;3697:474;;;;;:::o;4177:619::-;4254:6;4262;4270;4319:2;4307:9;4298:7;4294:23;4290:32;4287:119;;;4325:79;;:::i;:::-;4287:119;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4177:619;;;;;:::o;4802:943::-;4897:6;4905;4913;4921;4970:3;4958:9;4949:7;4945:23;4941:33;4938:120;;;4977:79;;:::i;:::-;4938:120;5097:1;5122:53;5167:7;5158:6;5147:9;5143:22;5122:53;:::i;:::-;5112:63;;5068:117;5224:2;5250:53;5295:7;5286:6;5275:9;5271:22;5250:53;:::i;:::-;5240:63;;5195:118;5352:2;5378:53;5423:7;5414:6;5403:9;5399:22;5378:53;:::i;:::-;5368:63;;5323:118;5508:2;5497:9;5493:18;5480:32;5539:18;5531:6;5528:30;5525:117;;;5561:79;;:::i;:::-;5525:117;5666:62;5720:7;5711:6;5700:9;5696:22;5666:62;:::i;:::-;5656:72;;5451:287;4802:943;;;;;;;:::o;5751:468::-;5816:6;5824;5873:2;5861:9;5852:7;5848:23;5844:32;5841:119;;;5879:79;;:::i;:::-;5841:119;5999:1;6024:53;6069:7;6060:6;6049:9;6045:22;6024:53;:::i;:::-;6014:63;;5970:117;6126:2;6152:50;6194:7;6185:6;6174:9;6170:22;6152:50;:::i;:::-;6142:60;;6097:115;5751:468;;;;;:::o;6225:474::-;6293:6;6301;6350:2;6338:9;6329:7;6325:23;6321:32;6318:119;;;6356:79;;:::i;:::-;6318:119;6476:1;6501:53;6546:7;6537:6;6526:9;6522:22;6501:53;:::i;:::-;6491:63;;6447:117;6603:2;6629:53;6674:7;6665:6;6654:9;6650:22;6629:53;:::i;:::-;6619:63;;6574:118;6225:474;;;;;:::o;6705:327::-;6763:6;6812:2;6800:9;6791:7;6787:23;6783:32;6780:119;;;6818:79;;:::i;:::-;6780:119;6938:1;6963:52;7007:7;6998:6;6987:9;6983:22;6963:52;:::i;:::-;6953:62;;6909:116;6705:327;;;;:::o;7038:349::-;7107:6;7156:2;7144:9;7135:7;7131:23;7127:32;7124:119;;;7162:79;;:::i;:::-;7124:119;7282:1;7307:63;7362:7;7353:6;7342:9;7338:22;7307:63;:::i;:::-;7297:73;;7253:127;7038:349;;;;:::o;7393:529::-;7464:6;7472;7521:2;7509:9;7500:7;7496:23;7492:32;7489:119;;;7527:79;;:::i;:::-;7489:119;7675:1;7664:9;7660:17;7647:31;7705:18;7697:6;7694:30;7691:117;;;7727:79;;:::i;:::-;7691:117;7840:65;7897:7;7888:6;7877:9;7873:22;7840:65;:::i;:::-;7822:83;;;;7618:297;7393:529;;;;;:::o;7928:509::-;7997:6;8046:2;8034:9;8025:7;8021:23;8017:32;8014:119;;;8052:79;;:::i;:::-;8014:119;8200:1;8189:9;8185:17;8172:31;8230:18;8222:6;8219:30;8216:117;;;8252:79;;:::i;:::-;8216:117;8357:63;8412:7;8403:6;8392:9;8388:22;8357:63;:::i;:::-;8347:73;;8143:287;7928:509;;;;:::o;8443:329::-;8502:6;8551:2;8539:9;8530:7;8526:23;8522:32;8519:119;;;8557:79;;:::i;:::-;8519:119;8677:1;8702:53;8747:7;8738:6;8727:9;8723:22;8702:53;:::i;:::-;8692:63;;8648:117;8443:329;;;;:::o;8778:118::-;8865:24;8883:5;8865:24;:::i;:::-;8860:3;8853:37;8778:118;;:::o;8902:109::-;8983:21;8998:5;8983:21;:::i;:::-;8978:3;8971:34;8902:109;;:::o;9017:360::-;9103:3;9131:38;9163:5;9131:38;:::i;:::-;9185:70;9248:6;9243:3;9185:70;:::i;:::-;9178:77;;9264:52;9309:6;9304:3;9297:4;9290:5;9286:16;9264:52;:::i;:::-;9341:29;9363:6;9341:29;:::i;:::-;9336:3;9332:39;9325:46;;9107:270;9017:360;;;;:::o;9383:364::-;9471:3;9499:39;9532:5;9499:39;:::i;:::-;9554:71;9618:6;9613:3;9554:71;:::i;:::-;9547:78;;9634:52;9679:6;9674:3;9667:4;9660:5;9656:16;9634:52;:::i;:::-;9711:29;9733:6;9711:29;:::i;:::-;9706:3;9702:39;9695:46;;9475:272;9383:364;;;;:::o;9753:377::-;9859:3;9887:39;9920:5;9887:39;:::i;:::-;9942:89;10024:6;10019:3;9942:89;:::i;:::-;9935:96;;10040:52;10085:6;10080:3;10073:4;10066:5;10062:16;10040:52;:::i;:::-;10117:6;10112:3;10108:16;10101:23;;9863:267;9753:377;;;;:::o;10136:366::-;10278:3;10299:67;10363:2;10358:3;10299:67;:::i;:::-;10292:74;;10375:93;10464:3;10375:93;:::i;:::-;10493:2;10488:3;10484:12;10477:19;;10136:366;;;:::o;10508:::-;10650:3;10671:67;10735:2;10730:3;10671:67;:::i;:::-;10664:74;;10747:93;10836:3;10747:93;:::i;:::-;10865:2;10860:3;10856:12;10849:19;;10508:366;;;:::o;10880:::-;11022:3;11043:67;11107:2;11102:3;11043:67;:::i;:::-;11036:74;;11119:93;11208:3;11119:93;:::i;:::-;11237:2;11232:3;11228:12;11221:19;;10880:366;;;:::o;11252:::-;11394:3;11415:67;11479:2;11474:3;11415:67;:::i;:::-;11408:74;;11491:93;11580:3;11491:93;:::i;:::-;11609:2;11604:3;11600:12;11593:19;;11252:366;;;:::o;11624:::-;11766:3;11787:67;11851:2;11846:3;11787:67;:::i;:::-;11780:74;;11863:93;11952:3;11863:93;:::i;:::-;11981:2;11976:3;11972:12;11965:19;;11624:366;;;:::o;11996:::-;12138:3;12159:67;12223:2;12218:3;12159:67;:::i;:::-;12152:74;;12235:93;12324:3;12235:93;:::i;:::-;12353:2;12348:3;12344:12;12337:19;;11996:366;;;:::o;12368:::-;12510:3;12531:67;12595:2;12590:3;12531:67;:::i;:::-;12524:74;;12607:93;12696:3;12607:93;:::i;:::-;12725:2;12720:3;12716:12;12709:19;;12368:366;;;:::o;12740:::-;12882:3;12903:67;12967:2;12962:3;12903:67;:::i;:::-;12896:74;;12979:93;13068:3;12979:93;:::i;:::-;13097:2;13092:3;13088:12;13081:19;;12740:366;;;:::o;13112:::-;13254:3;13275:67;13339:2;13334:3;13275:67;:::i;:::-;13268:74;;13351:93;13440:3;13351:93;:::i;:::-;13469:2;13464:3;13460:12;13453:19;;13112:366;;;:::o;13484:::-;13626:3;13647:67;13711:2;13706:3;13647:67;:::i;:::-;13640:74;;13723:93;13812:3;13723:93;:::i;:::-;13841:2;13836:3;13832:12;13825:19;;13484:366;;;:::o;13856:118::-;13943:24;13961:5;13943:24;:::i;:::-;13938:3;13931:37;13856:118;;:::o;13980:435::-;14160:3;14182:95;14273:3;14264:6;14182:95;:::i;:::-;14175:102;;14294:95;14385:3;14376:6;14294:95;:::i;:::-;14287:102;;14406:3;14399:10;;13980:435;;;;;:::o;14421:222::-;14514:4;14552:2;14541:9;14537:18;14529:26;;14565:71;14633:1;14622:9;14618:17;14609:6;14565:71;:::i;:::-;14421:222;;;;:::o;14649:640::-;14844:4;14882:3;14871:9;14867:19;14859:27;;14896:71;14964:1;14953:9;14949:17;14940:6;14896:71;:::i;:::-;14977:72;15045:2;15034:9;15030:18;15021:6;14977:72;:::i;:::-;15059;15127:2;15116:9;15112:18;15103:6;15059:72;:::i;:::-;15178:9;15172:4;15168:20;15163:2;15152:9;15148:18;15141:48;15206:76;15277:4;15268:6;15206:76;:::i;:::-;15198:84;;14649:640;;;;;;;:::o;15295:210::-;15382:4;15420:2;15409:9;15405:18;15397:26;;15433:65;15495:1;15484:9;15480:17;15471:6;15433:65;:::i;:::-;15295:210;;;;:::o;15511:313::-;15624:4;15662:2;15651:9;15647:18;15639:26;;15711:9;15705:4;15701:20;15697:1;15686:9;15682:17;15675:47;15739:78;15812:4;15803:6;15739:78;:::i;:::-;15731:86;;15511:313;;;;:::o;15830:419::-;15996:4;16034:2;16023:9;16019:18;16011:26;;16083:9;16077:4;16073:20;16069:1;16058:9;16054:17;16047:47;16111:131;16237:4;16111:131;:::i;:::-;16103:139;;15830:419;;;:::o;16255:::-;16421:4;16459:2;16448:9;16444:18;16436:26;;16508:9;16502:4;16498:20;16494:1;16483:9;16479:17;16472:47;16536:131;16662:4;16536:131;:::i;:::-;16528:139;;16255:419;;;:::o;16680:::-;16846:4;16884:2;16873:9;16869:18;16861:26;;16933:9;16927:4;16923:20;16919:1;16908:9;16904:17;16897:47;16961:131;17087:4;16961:131;:::i;:::-;16953:139;;16680:419;;;:::o;17105:::-;17271:4;17309:2;17298:9;17294:18;17286:26;;17358:9;17352:4;17348:20;17344:1;17333:9;17329:17;17322:47;17386:131;17512:4;17386:131;:::i;:::-;17378:139;;17105:419;;;:::o;17530:::-;17696:4;17734:2;17723:9;17719:18;17711:26;;17783:9;17777:4;17773:20;17769:1;17758:9;17754:17;17747:47;17811:131;17937:4;17811:131;:::i;:::-;17803:139;;17530:419;;;:::o;17955:::-;18121:4;18159:2;18148:9;18144:18;18136:26;;18208:9;18202:4;18198:20;18194:1;18183:9;18179:17;18172:47;18236:131;18362:4;18236:131;:::i;:::-;18228:139;;17955:419;;;:::o;18380:::-;18546:4;18584:2;18573:9;18569:18;18561:26;;18633:9;18627:4;18623:20;18619:1;18608:9;18604:17;18597:47;18661:131;18787:4;18661:131;:::i;:::-;18653:139;;18380:419;;;:::o;18805:::-;18971:4;19009:2;18998:9;18994:18;18986:26;;19058:9;19052:4;19048:20;19044:1;19033:9;19029:17;19022:47;19086:131;19212:4;19086:131;:::i;:::-;19078:139;;18805:419;;;:::o;19230:::-;19396:4;19434:2;19423:9;19419:18;19411:26;;19483:9;19477:4;19473:20;19469:1;19458:9;19454:17;19447:47;19511:131;19637:4;19511:131;:::i;:::-;19503:139;;19230:419;;;:::o;19655:::-;19821:4;19859:2;19848:9;19844:18;19836:26;;19908:9;19902:4;19898:20;19894:1;19883:9;19879:17;19872:47;19936:131;20062:4;19936:131;:::i;:::-;19928:139;;19655:419;;;:::o;20080:222::-;20173:4;20211:2;20200:9;20196:18;20188:26;;20224:71;20292:1;20281:9;20277:17;20268:6;20224:71;:::i;:::-;20080:222;;;;:::o;20308:129::-;20342:6;20369:20;;:::i;:::-;20359:30;;20398:33;20426:4;20418:6;20398:33;:::i;:::-;20308:129;;;:::o;20443:75::-;20476:6;20509:2;20503:9;20493:19;;20443:75;:::o;20524:307::-;20585:4;20675:18;20667:6;20664:30;20661:56;;;20697:18;;:::i;:::-;20661:56;20735:29;20757:6;20735:29;:::i;:::-;20727:37;;20819:4;20813;20809:15;20801:23;;20524:307;;;:::o;20837:308::-;20899:4;20989:18;20981:6;20978:30;20975:56;;;21011:18;;:::i;:::-;20975:56;21049:29;21071:6;21049:29;:::i;:::-;21041:37;;21133:4;21127;21123:15;21115:23;;20837:308;;;:::o;21151:98::-;21202:6;21236:5;21230:12;21220:22;;21151:98;;;:::o;21255:99::-;21307:6;21341:5;21335:12;21325:22;;21255:99;;;:::o;21360:168::-;21443:11;21477:6;21472:3;21465:19;21517:4;21512:3;21508:14;21493:29;;21360:168;;;;:::o;21534:169::-;21618:11;21652:6;21647:3;21640:19;21692:4;21687:3;21683:14;21668:29;;21534:169;;;;:::o;21709:148::-;21811:11;21848:3;21833:18;;21709:148;;;;:::o;21863:305::-;21903:3;21922:20;21940:1;21922:20;:::i;:::-;21917:25;;21956:20;21974:1;21956:20;:::i;:::-;21951:25;;22110:1;22042:66;22038:74;22035:1;22032:81;22029:107;;;22116:18;;:::i;:::-;22029:107;22160:1;22157;22153:9;22146:16;;21863:305;;;;:::o;22174:185::-;22214:1;22231:20;22249:1;22231:20;:::i;:::-;22226:25;;22265:20;22283:1;22265:20;:::i;:::-;22260:25;;22304:1;22294:35;;22309:18;;:::i;:::-;22294:35;22351:1;22348;22344:9;22339:14;;22174:185;;;;:::o;22365:348::-;22405:7;22428:20;22446:1;22428:20;:::i;:::-;22423:25;;22462:20;22480:1;22462:20;:::i;:::-;22457:25;;22650:1;22582:66;22578:74;22575:1;22572:81;22567:1;22560:9;22553:17;22549:105;22546:131;;;22657:18;;:::i;:::-;22546:131;22705:1;22702;22698:9;22687:20;;22365:348;;;;:::o;22719:191::-;22759:4;22779:20;22797:1;22779:20;:::i;:::-;22774:25;;22813:20;22831:1;22813:20;:::i;:::-;22808:25;;22852:1;22849;22846:8;22843:34;;;22857:18;;:::i;:::-;22843:34;22902:1;22899;22895:9;22887:17;;22719:191;;;;:::o;22916:96::-;22953:7;22982:24;23000:5;22982:24;:::i;:::-;22971:35;;22916:96;;;:::o;23018:104::-;23063:7;23092:24;23110:5;23092:24;:::i;:::-;23081:35;;23018:104;;;:::o;23128:90::-;23162:7;23205:5;23198:13;23191:21;23180:32;;23128:90;;;:::o;23224:149::-;23260:7;23300:66;23293:5;23289:78;23278:89;;23224:149;;;:::o;23379:126::-;23416:7;23456:42;23449:5;23445:54;23434:65;;23379:126;;;:::o;23511:77::-;23548:7;23577:5;23566:16;;23511:77;;;:::o;23594:154::-;23678:6;23673:3;23668;23655:30;23740:1;23731:6;23726:3;23722:16;23715:27;23594:154;;;:::o;23754:307::-;23822:1;23832:113;23846:6;23843:1;23840:13;23832:113;;;23931:1;23926:3;23922:11;23916:18;23912:1;23907:3;23903:11;23896:39;23868:2;23865:1;23861:10;23856:15;;23832:113;;;23963:6;23960:1;23957:13;23954:101;;;24043:1;24034:6;24029:3;24025:16;24018:27;23954:101;23803:258;23754:307;;;:::o;24067:320::-;24111:6;24148:1;24142:4;24138:12;24128:22;;24195:1;24189:4;24185:12;24216:18;24206:81;;24272:4;24264:6;24260:17;24250:27;;24206:81;24334:2;24326:6;24323:14;24303:18;24300:38;24297:84;;;24353:18;;:::i;:::-;24297:84;24118:269;24067:320;;;:::o;24393:281::-;24476:27;24498:4;24476:27;:::i;:::-;24468:6;24464:40;24606:6;24594:10;24591:22;24570:18;24558:10;24555:34;24552:62;24549:88;;;24617:18;;:::i;:::-;24549:88;24657:10;24653:2;24646:22;24436:238;24393:281;;:::o;24680:233::-;24719:3;24742:24;24760:5;24742:24;:::i;:::-;24733:33;;24788:66;24781:5;24778:77;24775:103;;;24858:18;;:::i;:::-;24775:103;24905:1;24898:5;24894:13;24887:20;;24680:233;;;:::o;24919:176::-;24951:1;24968:20;24986:1;24968:20;:::i;:::-;24963:25;;25002:20;25020:1;25002:20;:::i;:::-;24997:25;;25041:1;25031:35;;25046:18;;:::i;:::-;25031:35;25087:1;25084;25080:9;25075:14;;24919:176;;;;:::o;25101:180::-;25149:77;25146:1;25139:88;25246:4;25243:1;25236:15;25270:4;25267:1;25260:15;25287:180;25335:77;25332:1;25325:88;25432:4;25429:1;25422:15;25456:4;25453:1;25446:15;25473:180;25521:77;25518:1;25511:88;25618:4;25615:1;25608:15;25642:4;25639:1;25632:15;25659:180;25707:77;25704:1;25697:88;25804:4;25801:1;25794:15;25828:4;25825:1;25818:15;25845:180;25893:77;25890:1;25883:88;25990:4;25987:1;25980:15;26014:4;26011:1;26004:15;26031:117;26140:1;26137;26130:12;26154:117;26263:1;26260;26253:12;26277:117;26386:1;26383;26376:12;26400:117;26509:1;26506;26499:12;26523:117;26632:1;26629;26622:12;26646:117;26755:1;26752;26745:12;26769:102;26810:6;26861:2;26857:7;26852:2;26845:5;26841:14;26837:28;26827:38;;26769:102;;;:::o;26877:225::-;27017:34;27013:1;27005:6;27001:14;26994:58;27086:8;27081:2;27073:6;27069:15;27062:33;26877:225;:::o;27108:174::-;27248:26;27244:1;27236:6;27232:14;27225:50;27108:174;:::o;27288:169::-;27428:21;27424:1;27416:6;27412:14;27405:45;27288:169;:::o;27463:168::-;27603:20;27599:1;27591:6;27587:14;27580:44;27463:168;:::o;27637:::-;27777:20;27773:1;27765:6;27761:14;27754:44;27637:168;:::o;27811:165::-;27951:17;27947:1;27939:6;27935:14;27928:41;27811:165;:::o;27982:172::-;28122:24;28118:1;28110:6;28106:14;28099:48;27982:172;:::o;28160:182::-;28300:34;28296:1;28288:6;28284:14;28277:58;28160:182;:::o;28348:229::-;28488:34;28484:1;28476:6;28472:14;28465:58;28557:12;28552:2;28544:6;28540:15;28533:37;28348:229;:::o;28583:171::-;28723:23;28719:1;28711:6;28707:14;28700:47;28583:171;:::o;28760:122::-;28833:24;28851:5;28833:24;:::i;:::-;28826:5;28823:35;28813:63;;28872:1;28869;28862:12;28813:63;28760:122;:::o;28888:138::-;28969:32;28995:5;28969:32;:::i;:::-;28962:5;28959:43;28949:71;;29016:1;29013;29006:12;28949:71;28888:138;:::o;29032:116::-;29102:21;29117:5;29102:21;:::i;:::-;29095:5;29092:32;29082:60;;29138:1;29135;29128:12;29082:60;29032:116;:::o;29154:120::-;29226:23;29243:5;29226:23;:::i;:::-;29219:5;29216:34;29206:62;;29264:1;29261;29254:12;29206:62;29154:120;:::o;29280:122::-;29353:24;29371:5;29353:24;:::i;:::-;29346:5;29343:35;29333:63;;29392:1;29389;29382:12;29333:63;29280:122;:::o

Swarm Source

ipfs://023a65fba4eae8eb5ac8dd1830cee921139af3e7b339426df0c89312a8d58b96
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.