ETH Price: $3,304.22 (-3.15%)
Gas: 19 Gwei

Token

grinners (grinners)
 

Overview

Max Total Supply

10,000 grinners

Holders

5,084

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rill.eth
Balance
2 grinners
0x546b4a7a30b3193badf70e1d43d8142928f3db0b
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:
grinners

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-27
*/

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// 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/math/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// 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/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}


// File @openzeppelin/contracts/security/[email protected]


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// 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 @openzeppelin/contracts/utils/[email protected]


// 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/utils/[email protected]


// 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/introspection/[email protected]


// 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 contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;
/**
 * @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 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

    unchecked {
        for (uint256 curr = tokenId; curr >= 0; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }
    }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

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

        uint256 updatedIndex = startTokenId;

        for (uint256 i; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            if (safe) {
                require(
                    _checkOnERC721Received(address(0), to, updatedIndex, _data),
                    'ERC721A: transfer to non ERC721Receiver implementer'
                );
            }

            updatedIndex++;
        }

        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 ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.0;
contract grinners is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;
   
    bool private _isActive = true;

    uint256 public constant MAX_SUPPLY = 10000;

    uint256 public maxAcc = 2; 
    uint256 public reserve = 500;
    
    uint256 public price = 0 ether;

    string private _tokenBaseURI = "ipfs://bafybeihcji6voihvp7pcgzufnn2jh2khxdq5g6n63qsuj7w3blpzcq2yla/";

    mapping(address => uint256) public minted;

    modifier onlyActive() {
        require(_isActive && totalSupply() < MAX_SUPPLY, 'mint not started');
        _;
    }

    constructor() ERC721A("grinners", "grinners") {
    }

    function mint(uint256 qty) external payable onlyActive nonReentrant() {
        require(qty > 0, "amount has to be more than zero");
        require(qty <= MAX_SUPPLY.sub(totalSupply()).sub(reserve), "no public nfts left");
        require(qty.add(minted[msg.sender]) <= maxAcc, "already max minted");
        
        minted[msg.sender] = minted[msg.sender].add(qty);

        _safeMint(msg.sender, qty);
    }

    function mintReserved(uint256 qty, address to) external payable onlyOwner nonReentrant() {
        require(qty > 0, "amount has to be more than zero");
        require(qty <= MAX_SUPPLY.sub(totalSupply()), "no nfts left");
        
        minted[to] = minted[to].add(qty);

        _safeMint(to, qty);
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function contractURI() public pure returns (string memory) {
        return "ipfs://QmYzgJr33X6Fi2Q3qWXjbbeJPfgKAFBoVRwAXJ1V6RdG7Z";
    }

    function startSale() external onlyOwner {
        _isActive = true;
    }

    function endSale() external onlyOwner {
        _isActive = false;
    }

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

    function setMaxMintPerAddr(uint256 _count) external onlyOwner {
        maxAcc = _count;
    }

    function setTokenBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAcc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintReserved","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6009805460ff191660011790556002600a556101f4600b556000600c556101006040526043608081815290620022a560a03980516200004791600d916020909101906200013f565b503480156200005557600080fd5b50604051806040016040528060088152602001676772696e6e65727360c01b815250604051806040016040528060088152602001676772696e6e65727360c01b815250620000b2620000ac620000eb60201b60201c565b620000ef565b8151620000c79060029060208501906200013f565b508051620000dd9060039060208401906200013f565b505060016008555062000222565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b602082108114156200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b61207380620002326000396000f3fe6080604052600436106101dc5760003560e01c806370a0823111610102578063a22cb46511610095578063cd3293de11610064578063cd3293de14610514578063e8a3d4851461052a578063e985e9c51461053f578063f2fde38b1461058857600080fd5b8063a22cb4651461049f578063b66a0e5d146104bf578063b88d4fde146104d4578063c87b56dd146104f457600080fd5b806391b7f5ed116100d157806391b7f5ed1461044157806395d89b4114610461578063a035b1fe14610476578063a0712d681461048c57600080fd5b806370a08231146103ce578063715018a6146103ee5780638da5cb5b146104035780638ef79e911461042157600080fd5b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b1461036657806342842e0e1461037b578063631bbbba1461039b5780636352211e146103ae57600080fd5b806323b872dd14610305578063253865331461032557806332cb6b0c1461033b578063380d831b1461035157600080fd5b8063095ea7b3116101b6578063095ea7b3146102775780631300c0141461029957806318160ddd146102b95780631e7269c5146102d857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f57600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b50610208610203366004611c98565b6105a8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105fa565b6040516102149190611def565b34801561024b57600080fd5b5061025f61025a366004611d1b565b61068c565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611c6e565b61071c565b005b3480156102a557600080fd5b506102976102b4366004611d1b565b610834565b3480156102c557600080fd5b506001545b604051908152602001610214565b3480156102e457600080fd5b506102ca6102f3366004611b2c565b600e6020526000908152604090205481565b34801561031157600080fd5b50610297610320366004611b7a565b610863565b34801561033157600080fd5b506102ca600a5481565b34801561034757600080fd5b506102ca61271081565b34801561035d57600080fd5b5061029761086e565b34801561037257600080fd5b506102976108a4565b34801561038757600080fd5b50610297610396366004611b7a565b61091a565b6102976103a9366004611d34565b610935565b3480156103ba57600080fd5b5061025f6103c9366004611d1b565b610a76565b3480156103da57600080fd5b506102ca6103e9366004611b2c565b610a88565b3480156103fa57600080fd5b50610297610b19565b34801561040f57600080fd5b506000546001600160a01b031661025f565b34801561042d57600080fd5b5061029761043c366004611cd2565b610b4f565b34801561044d57600080fd5b5061029761045c366004611d1b565b610b90565b34801561046d57600080fd5b50610232610bbf565b34801561048257600080fd5b506102ca600c5481565b61029761049a366004611d1b565b610bce565b3480156104ab57600080fd5b506102976104ba366004611c32565b610d92565b3480156104cb57600080fd5b50610297610e57565b3480156104e057600080fd5b506102976104ef366004611bb6565b610e90565b34801561050057600080fd5b5061023261050f366004611d1b565b610ec9565b34801561052057600080fd5b506102ca600b5481565b34801561053657600080fd5b50610232610ed4565b34801561054b57600080fd5b5061020861055a366004611b47565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059457600080fd5b506102976105a3366004611b2c565b610ef4565b60006001600160e01b031982166380ac58cd60e01b14806105d957506001600160e01b03198216635b5e139f60e01b145b806105f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060990611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611f30565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b6000610699826001541190565b6107005760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061072782610a76565b9050806001600160a01b0316836001600160a01b031614156107965760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106f7565b336001600160a01b03821614806107b257506107b2813361055a565b6108245760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106f7565b61082f838383610f8f565b505050565b6000546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106f790611e02565b600a55565b61082f838383610feb565b6000546001600160a01b031633146108985760405162461bcd60e51b81526004016106f790611e02565b6009805460ff19169055565b6000546001600160a01b031633146108ce5760405162461bcd60e51b81526004016106f790611e02565b600260085414156108f15760405162461bcd60e51b81526004016106f790611e8a565b60026008554761091261090c6000546001600160a01b031690565b826112d0565b506001600855565b61082f83838360405180602001604052806000815250610e90565b6000546001600160a01b0316331461095f5760405162461bcd60e51b81526004016106f790611e02565b600260085414156109825760405162461bcd60e51b81526004016106f790611e8a565b6002600855816109d45760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742068617320746f206265206d6f7265207468616e207a65726f0060448201526064016106f7565b6109e96109e060015490565b612710906113e9565b821115610a275760405162461bcd60e51b815260206004820152600c60248201526b1b9bc81b999d1cc81b19599d60a21b60448201526064016106f7565b6001600160a01b0381166000908152600e6020526040902054610a4a90836113fc565b6001600160a01b0382166000908152600e6020526040902055610a6d8183611408565b50506001600855565b6000610a8182611422565b5192915050565b60006001600160a01b038216610af45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106f7565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610b435760405162461bcd60e51b81526004016106f790611e02565b610b4d60006114f9565b565b6000546001600160a01b03163314610b795760405162461bcd60e51b81526004016106f790611e02565b8051610b8c90600d906020840190611a01565b5050565b6000546001600160a01b03163314610bba5760405162461bcd60e51b81526004016106f790611e02565b600c55565b60606003805461060990611f30565b60095460ff168015610be95750612710610be760015490565b105b610c285760405162461bcd60e51b815260206004820152601060248201526f1b5a5b9d081b9bdd081cdd185c9d195960821b60448201526064016106f7565b60026008541415610c4b5760405162461bcd60e51b81526004016106f790611e8a565b600260085580610c9d5760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742068617320746f206265206d6f7265207468616e207a65726f0060448201526064016106f7565b610cb5600b54610caf6109e060015490565b906113e9565b811115610cfa5760405162461bcd60e51b81526020600482015260136024820152721b9bc81c1d589b1a58c81b999d1cc81b19599d606a1b60448201526064016106f7565b600a54336000908152600e6020526040902054610d189083906113fc565b1115610d5b5760405162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481b585e081b5a5b9d195960721b60448201526064016106f7565b336000908152600e6020526040902054610d7590826113fc565b336000818152600e60205260409020919091556109129082611408565b6001600160a01b038216331415610deb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106f7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610e815760405162461bcd60e51b81526004016106f790611e02565b6009805460ff19166001179055565b610e9b848484610feb565b610ea784848484611549565b610ec35760405162461bcd60e51b81526004016106f790611e37565b50505050565b60606105f482611657565b606060405180606001604052806035815260200161200960359139905090565b6000546001600160a01b03163314610f1e5760405162461bcd60e51b81526004016106f790611e02565b6001600160a01b038116610f835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f7565b610f8c816114f9565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ff682611422565b80519091506000906001600160a01b0316336001600160a01b0316148061102d5750336110228461068c565b6001600160a01b0316145b8061103f5750815161103f903361055a565b9050806110a95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106f7565b846001600160a01b031682600001516001600160a01b03161461111d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106f7565b6001600160a01b0384166111815760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106f7565b6111916000848460000151610f8f565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661128657611239816001541190565b15611286578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156113205760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106f7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461136d576040519150601f19603f3d011682016040523d82523d6000602084013e611372565b606091505b505090508061082f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106f7565b60006113f58284611eed565b9392505050565b60006113f58284611ec1565b610b8c828260405180602001604052806000815250611724565b6040805180820190915260008082526020820152611441826001541190565b6114a05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106f7565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114ef579392505050565b50600019016114a2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561164b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061158d903390899088908890600401611db2565b602060405180830381600087803b1580156115a757600080fd5b505af19250505080156115d7575060408051601f3d908101601f191682019092526115d491810190611cb5565b60015b611631573d808015611605576040519150601f19603f3d011682016040523d82523d6000602084013e61160a565b606091505b5080516116295760405162461bcd60e51b81526004016106f790611e37565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061164f565b5060015b949350505050565b6060611664826001541190565b6116c85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f7565b60006116d2611731565b90508051600014156116f357604051806020016040528060008152506113f5565b806116fd84611740565b60405160200161170e929190611d83565b6040516020818303038152906040529392505050565b61082f838383600161183e565b6060600d805461060990611f30565b6060816117645750506040805180820190915260018152600360fc1b602082015290565b8160005b811561178e578061177881611f6b565b91506117879050600a83611ed9565b9150611768565b60008167ffffffffffffffff8111156117a9576117a9611fdc565b6040519080825280601f01601f1916602001820160405280156117d3576020820181803683370190505b5090505b841561164f576117e8600183611eed565b91506117f5600a86611f86565b611800906030611ec1565b60f81b81838151811061181557611815611fc6565b60200101906001600160f81b031916908160001a905350611837600a86611ed9565b94506117d7565b6001546001600160a01b0385166118a15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106f7565b836118ff5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106f7565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119f85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156119ec576119d06000888488611549565b6119ec5760405162461bcd60e51b81526004016106f790611e37565b6001918201910161197d565b506001556112c9565b828054611a0d90611f30565b90600052602060002090601f016020900481019282611a2f5760008555611a75565b82601f10611a4857805160ff1916838001178555611a75565b82800160010185558215611a75579182015b82811115611a75578251825591602001919060010190611a5a565b50611a81929150611a85565b5090565b5b80821115611a815760008155600101611a86565b600067ffffffffffffffff80841115611ab557611ab5611fdc565b604051601f8501601f19908116603f01168101908282118183101715611add57611add611fdc565b81604052809350858152868686011115611af657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b2757600080fd5b919050565b600060208284031215611b3e57600080fd5b6113f582611b10565b60008060408385031215611b5a57600080fd5b611b6383611b10565b9150611b7160208401611b10565b90509250929050565b600080600060608486031215611b8f57600080fd5b611b9884611b10565b9250611ba660208501611b10565b9150604084013590509250925092565b60008060008060808587031215611bcc57600080fd5b611bd585611b10565b9350611be360208601611b10565b925060408501359150606085013567ffffffffffffffff811115611c0657600080fd5b8501601f81018713611c1757600080fd5b611c2687823560208401611a9a565b91505092959194509250565b60008060408385031215611c4557600080fd5b611c4e83611b10565b915060208301358015158114611c6357600080fd5b809150509250929050565b60008060408385031215611c8157600080fd5b611c8a83611b10565b946020939093013593505050565b600060208284031215611caa57600080fd5b81356113f581611ff2565b600060208284031215611cc757600080fd5b81516113f581611ff2565b600060208284031215611ce457600080fd5b813567ffffffffffffffff811115611cfb57600080fd5b8201601f81018413611d0c57600080fd5b61164f84823560208401611a9a565b600060208284031215611d2d57600080fd5b5035919050565b60008060408385031215611d4757600080fd5b82359150611b7160208401611b10565b60008151808452611d6f816020860160208601611f04565b601f01601f19169290920160200192915050565b60008351611d95818460208801611f04565b835190830190611da9818360208801611f04565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de590830184611d57565b9695505050505050565b6020815260006113f56020830184611d57565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115611ed457611ed4611f9a565b500190565b600082611ee857611ee8611fb0565b500490565b600082821015611eff57611eff611f9a565b500390565b60005b83811015611f1f578181015183820152602001611f07565b83811115610ec35750506000910152565b600181811c90821680611f4457607f821691505b60208210811415611f6557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7f57611f7f611f9a565b5060010190565b600082611f9557611f95611fb0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8c57600080fdfe697066733a2f2f516d597a674a723333583646693251337157586a6262654a5066674b4146426f56527741584a315636526447375aa2646970667358221220be77084ab3bafd9b8e7fc764602243ca6891e334dba31b8f5284cf7897e553a264736f6c63430008070033697066733a2f2f6261667962656968636a6936766f69687670377063677a75666e6e326a68326b687864713567366e36337173756a377733626c707a637132796c612f

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c806370a0823111610102578063a22cb46511610095578063cd3293de11610064578063cd3293de14610514578063e8a3d4851461052a578063e985e9c51461053f578063f2fde38b1461058857600080fd5b8063a22cb4651461049f578063b66a0e5d146104bf578063b88d4fde146104d4578063c87b56dd146104f457600080fd5b806391b7f5ed116100d157806391b7f5ed1461044157806395d89b4114610461578063a035b1fe14610476578063a0712d681461048c57600080fd5b806370a08231146103ce578063715018a6146103ee5780638da5cb5b146104035780638ef79e911461042157600080fd5b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b1461036657806342842e0e1461037b578063631bbbba1461039b5780636352211e146103ae57600080fd5b806323b872dd14610305578063253865331461032557806332cb6b0c1461033b578063380d831b1461035157600080fd5b8063095ea7b3116101b6578063095ea7b3146102775780631300c0141461029957806318160ddd146102b95780631e7269c5146102d857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f57600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b50610208610203366004611c98565b6105a8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105fa565b6040516102149190611def565b34801561024b57600080fd5b5061025f61025a366004611d1b565b61068c565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611c6e565b61071c565b005b3480156102a557600080fd5b506102976102b4366004611d1b565b610834565b3480156102c557600080fd5b506001545b604051908152602001610214565b3480156102e457600080fd5b506102ca6102f3366004611b2c565b600e6020526000908152604090205481565b34801561031157600080fd5b50610297610320366004611b7a565b610863565b34801561033157600080fd5b506102ca600a5481565b34801561034757600080fd5b506102ca61271081565b34801561035d57600080fd5b5061029761086e565b34801561037257600080fd5b506102976108a4565b34801561038757600080fd5b50610297610396366004611b7a565b61091a565b6102976103a9366004611d34565b610935565b3480156103ba57600080fd5b5061025f6103c9366004611d1b565b610a76565b3480156103da57600080fd5b506102ca6103e9366004611b2c565b610a88565b3480156103fa57600080fd5b50610297610b19565b34801561040f57600080fd5b506000546001600160a01b031661025f565b34801561042d57600080fd5b5061029761043c366004611cd2565b610b4f565b34801561044d57600080fd5b5061029761045c366004611d1b565b610b90565b34801561046d57600080fd5b50610232610bbf565b34801561048257600080fd5b506102ca600c5481565b61029761049a366004611d1b565b610bce565b3480156104ab57600080fd5b506102976104ba366004611c32565b610d92565b3480156104cb57600080fd5b50610297610e57565b3480156104e057600080fd5b506102976104ef366004611bb6565b610e90565b34801561050057600080fd5b5061023261050f366004611d1b565b610ec9565b34801561052057600080fd5b506102ca600b5481565b34801561053657600080fd5b50610232610ed4565b34801561054b57600080fd5b5061020861055a366004611b47565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059457600080fd5b506102976105a3366004611b2c565b610ef4565b60006001600160e01b031982166380ac58cd60e01b14806105d957506001600160e01b03198216635b5e139f60e01b145b806105f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060990611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611f30565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b6000610699826001541190565b6107005760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061072782610a76565b9050806001600160a01b0316836001600160a01b031614156107965760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106f7565b336001600160a01b03821614806107b257506107b2813361055a565b6108245760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106f7565b61082f838383610f8f565b505050565b6000546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106f790611e02565b600a55565b61082f838383610feb565b6000546001600160a01b031633146108985760405162461bcd60e51b81526004016106f790611e02565b6009805460ff19169055565b6000546001600160a01b031633146108ce5760405162461bcd60e51b81526004016106f790611e02565b600260085414156108f15760405162461bcd60e51b81526004016106f790611e8a565b60026008554761091261090c6000546001600160a01b031690565b826112d0565b506001600855565b61082f83838360405180602001604052806000815250610e90565b6000546001600160a01b0316331461095f5760405162461bcd60e51b81526004016106f790611e02565b600260085414156109825760405162461bcd60e51b81526004016106f790611e8a565b6002600855816109d45760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742068617320746f206265206d6f7265207468616e207a65726f0060448201526064016106f7565b6109e96109e060015490565b612710906113e9565b821115610a275760405162461bcd60e51b815260206004820152600c60248201526b1b9bc81b999d1cc81b19599d60a21b60448201526064016106f7565b6001600160a01b0381166000908152600e6020526040902054610a4a90836113fc565b6001600160a01b0382166000908152600e6020526040902055610a6d8183611408565b50506001600855565b6000610a8182611422565b5192915050565b60006001600160a01b038216610af45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106f7565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610b435760405162461bcd60e51b81526004016106f790611e02565b610b4d60006114f9565b565b6000546001600160a01b03163314610b795760405162461bcd60e51b81526004016106f790611e02565b8051610b8c90600d906020840190611a01565b5050565b6000546001600160a01b03163314610bba5760405162461bcd60e51b81526004016106f790611e02565b600c55565b60606003805461060990611f30565b60095460ff168015610be95750612710610be760015490565b105b610c285760405162461bcd60e51b815260206004820152601060248201526f1b5a5b9d081b9bdd081cdd185c9d195960821b60448201526064016106f7565b60026008541415610c4b5760405162461bcd60e51b81526004016106f790611e8a565b600260085580610c9d5760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742068617320746f206265206d6f7265207468616e207a65726f0060448201526064016106f7565b610cb5600b54610caf6109e060015490565b906113e9565b811115610cfa5760405162461bcd60e51b81526020600482015260136024820152721b9bc81c1d589b1a58c81b999d1cc81b19599d606a1b60448201526064016106f7565b600a54336000908152600e6020526040902054610d189083906113fc565b1115610d5b5760405162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481b585e081b5a5b9d195960721b60448201526064016106f7565b336000908152600e6020526040902054610d7590826113fc565b336000818152600e60205260409020919091556109129082611408565b6001600160a01b038216331415610deb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106f7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610e815760405162461bcd60e51b81526004016106f790611e02565b6009805460ff19166001179055565b610e9b848484610feb565b610ea784848484611549565b610ec35760405162461bcd60e51b81526004016106f790611e37565b50505050565b60606105f482611657565b606060405180606001604052806035815260200161200960359139905090565b6000546001600160a01b03163314610f1e5760405162461bcd60e51b81526004016106f790611e02565b6001600160a01b038116610f835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f7565b610f8c816114f9565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ff682611422565b80519091506000906001600160a01b0316336001600160a01b0316148061102d5750336110228461068c565b6001600160a01b0316145b8061103f5750815161103f903361055a565b9050806110a95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106f7565b846001600160a01b031682600001516001600160a01b03161461111d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106f7565b6001600160a01b0384166111815760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106f7565b6111916000848460000151610f8f565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661128657611239816001541190565b15611286578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156113205760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106f7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461136d576040519150601f19603f3d011682016040523d82523d6000602084013e611372565b606091505b505090508061082f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106f7565b60006113f58284611eed565b9392505050565b60006113f58284611ec1565b610b8c828260405180602001604052806000815250611724565b6040805180820190915260008082526020820152611441826001541190565b6114a05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106f7565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114ef579392505050565b50600019016114a2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561164b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061158d903390899088908890600401611db2565b602060405180830381600087803b1580156115a757600080fd5b505af19250505080156115d7575060408051601f3d908101601f191682019092526115d491810190611cb5565b60015b611631573d808015611605576040519150601f19603f3d011682016040523d82523d6000602084013e61160a565b606091505b5080516116295760405162461bcd60e51b81526004016106f790611e37565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061164f565b5060015b949350505050565b6060611664826001541190565b6116c85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f7565b60006116d2611731565b90508051600014156116f357604051806020016040528060008152506113f5565b806116fd84611740565b60405160200161170e929190611d83565b6040516020818303038152906040529392505050565b61082f838383600161183e565b6060600d805461060990611f30565b6060816117645750506040805180820190915260018152600360fc1b602082015290565b8160005b811561178e578061177881611f6b565b91506117879050600a83611ed9565b9150611768565b60008167ffffffffffffffff8111156117a9576117a9611fdc565b6040519080825280601f01601f1916602001820160405280156117d3576020820181803683370190505b5090505b841561164f576117e8600183611eed565b91506117f5600a86611f86565b611800906030611ec1565b60f81b81838151811061181557611815611fc6565b60200101906001600160f81b031916908160001a905350611837600a86611ed9565b94506117d7565b6001546001600160a01b0385166118a15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106f7565b836118ff5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106f7565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119f85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156119ec576119d06000888488611549565b6119ec5760405162461bcd60e51b81526004016106f790611e37565b6001918201910161197d565b506001556112c9565b828054611a0d90611f30565b90600052602060002090601f016020900481019282611a2f5760008555611a75565b82601f10611a4857805160ff1916838001178555611a75565b82800160010185558215611a75579182015b82811115611a75578251825591602001919060010190611a5a565b50611a81929150611a85565b5090565b5b80821115611a815760008155600101611a86565b600067ffffffffffffffff80841115611ab557611ab5611fdc565b604051601f8501601f19908116603f01168101908282118183101715611add57611add611fdc565b81604052809350858152868686011115611af657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b2757600080fd5b919050565b600060208284031215611b3e57600080fd5b6113f582611b10565b60008060408385031215611b5a57600080fd5b611b6383611b10565b9150611b7160208401611b10565b90509250929050565b600080600060608486031215611b8f57600080fd5b611b9884611b10565b9250611ba660208501611b10565b9150604084013590509250925092565b60008060008060808587031215611bcc57600080fd5b611bd585611b10565b9350611be360208601611b10565b925060408501359150606085013567ffffffffffffffff811115611c0657600080fd5b8501601f81018713611c1757600080fd5b611c2687823560208401611a9a565b91505092959194509250565b60008060408385031215611c4557600080fd5b611c4e83611b10565b915060208301358015158114611c6357600080fd5b809150509250929050565b60008060408385031215611c8157600080fd5b611c8a83611b10565b946020939093013593505050565b600060208284031215611caa57600080fd5b81356113f581611ff2565b600060208284031215611cc757600080fd5b81516113f581611ff2565b600060208284031215611ce457600080fd5b813567ffffffffffffffff811115611cfb57600080fd5b8201601f81018413611d0c57600080fd5b61164f84823560208401611a9a565b600060208284031215611d2d57600080fd5b5035919050565b60008060408385031215611d4757600080fd5b82359150611b7160208401611b10565b60008151808452611d6f816020860160208601611f04565b601f01601f19169290920160200192915050565b60008351611d95818460208801611f04565b835190830190611da9818360208801611f04565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de590830184611d57565b9695505050505050565b6020815260006113f56020830184611d57565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115611ed457611ed4611f9a565b500190565b600082611ee857611ee8611fb0565b500490565b600082821015611eff57611eff611f9a565b500390565b60005b83811015611f1f578181015183820152602001611f07565b83811115610ec35750506000910152565b600181811c90821680611f4457607f821691505b60208210811415611f6557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7f57611f7f611f9a565b5060010190565b600082611f9557611f95611fb0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8c57600080fdfe697066733a2f2f516d597a674a723333583646693251337157586a6262654a5066674b4146426f56527741584a315636526447375aa2646970667358221220be77084ab3bafd9b8e7fc764602243ca6891e334dba31b8f5284cf7897e553a264736f6c63430008070033

Deployed Bytecode Sourcemap

47344:2492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34446:293;;;;;;;;;;-1:-1:-1;34446:293:0;;;;;:::i;:::-;;:::i;:::-;;;6115:14:1;;6108:22;6090:41;;6078:2;6063:18;34446:293:0;;;;;;;;36221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37783:214::-;;;;;;;;;;-1:-1:-1;37783:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5413:32:1;;;5395:51;;5383:2;5368:18;37783:214:0;5249:203:1;37304:413:0;;;;;;;;;;-1:-1:-1;37304:413:0;;;;;:::i;:::-;;:::i;:::-;;49418:96;;;;;;;;;;-1:-1:-1;49418:96:0;;;;;:::i;:::-;;:::i;34283:91::-;;;;;;;;;;-1:-1:-1;34354:12:0;;34283:91;;;15882:25:1;;;15870:2;15855:18;34283:91:0;15736:177:1;47755:41:0;;;;;;;;;;-1:-1:-1;47755:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;38659:162;;;;;;;;;;-1:-1:-1;38659:162:0;;;;;:::i;:::-;;:::i;47533:25::-;;;;;;;;;;;;;;;;47482:42;;;;;;;;;;;;47519:5;47482:42;;49242:74;;;;;;;;;;;;;:::i;49631:165::-;;;;;;;;;;;;;:::i;38892:177::-;;;;;;;;;;-1:-1:-1;38892:177:0;;;;;:::i;:::-;;:::i;48423:315::-;;;;;;:::i;:::-;;:::i;36030:124::-;;;;;;;;;;-1:-1:-1;36030:124:0;;;;;:::i;:::-;;:::i;34803:221::-;;;;;;;;;;-1:-1:-1;34803:221:0;;;;;:::i;:::-;;:::i;2589:103::-;;;;;;;;;;;;;:::i;1938:87::-;;;;;;;;;;-1:-1:-1;1984:7:0;2011:6;-1:-1:-1;;;;;2011:6:0;1938:87;;49522:101;;;;;;;;;;-1:-1:-1;49522:101:0;;;;;:::i;:::-;;:::i;49324:86::-;;;;;;;;;;-1:-1:-1;49324:86:0;;;;;:::i;:::-;;:::i;36390:104::-;;;;;;;;;;;;;:::i;47607:30::-;;;;;;;;;;;;;;;;47996:419;;;;;;:::i;:::-;;:::i;38069:288::-;;;;;;;;;;-1:-1:-1;38069:288:0;;;;;:::i;:::-;;:::i;49159:75::-;;;;;;;;;;;;;:::i;39140:355::-;;;;;;;;;;-1:-1:-1;39140:355:0;;;;;:::i;:::-;;:::i;48860:143::-;;;;;;;;;;-1:-1:-1;48860:143:0;;;;;:::i;:::-;;:::i;47566:28::-;;;;;;;;;;;;;;;;49011:140;;;;;;;;;;;;;:::i;38428:164::-;;;;;;;;;;-1:-1:-1;38428:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38549:25:0;;;38525:4;38549:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38428:164;2847:201;;;;;;;;;;-1:-1:-1;2847:201:0;;;;;:::i;:::-;;:::i;34446:293::-;34548:4;-1:-1:-1;;;;;;34581:40:0;;-1:-1:-1;;;34581:40:0;;:101;;-1:-1:-1;;;;;;;34634:48:0;;-1:-1:-1;;;34634:48:0;34581:101;:150;;;-1:-1:-1;;;;;;;;;;32534:40:0;;;34695:36;34565:166;34446:293;-1:-1:-1;;34446:293:0:o;36221:100::-;36275:13;36308:5;36301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36221:100;:::o;37783:214::-;37851:7;37879:16;37887:7;39841:12;;-1:-1:-1;39831:22:0;39750:111;37879:16;37871:74;;;;-1:-1:-1;;;37871:74:0;;15524:2:1;37871:74:0;;;15506:21:1;15563:2;15543:18;;;15536:30;15602:34;15582:18;;;15575:62;-1:-1:-1;;;15653:18:1;;;15646:43;15706:19;;37871:74:0;;;;;;;;;-1:-1:-1;37965:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37965:24:0;;37783:214::o;37304:413::-;37377:13;37393:24;37409:7;37393:15;:24::i;:::-;37377:40;;37442:5;-1:-1:-1;;;;;37436:11:0;:2;-1:-1:-1;;;;;37436:11:0;;;37428:58;;;;-1:-1:-1;;;37428:58:0;;13114:2:1;37428:58:0;;;13096:21:1;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;-1:-1:-1;;;13243:18:1;;;13236:32;13285:19;;37428:58:0;12912:398:1;37428:58:0;736:10;-1:-1:-1;;;;;37521:21:0;;;;:62;;-1:-1:-1;37546:37:0;37563:5;736:10;38428:164;:::i;37546:37::-;37499:169;;;;-1:-1:-1;;;37499:169:0;;9629:2:1;37499:169:0;;;9611:21:1;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;9778:27;9758:18;;;9751:55;9823:19;;37499:169:0;9427:421:1;37499:169:0;37681:28;37690:2;37694:7;37703:5;37681:8;:28::i;:::-;37366:351;37304:413;;:::o;49418:96::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;49491:6:::1;:15:::0;49418:96::o;38659:162::-;38785:28;38795:4;38801:2;38805:7;38785:9;:28::i;49242:74::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;49291:9:::1;:17:::0;;-1:-1:-1;;49291:17:0::1;::::0;;49242:74::o;49631:165::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;18083:1:::1;18681:7;;:19;;18673:63;;;;-1:-1:-1::0;;;18673:63:0::1;;;;;;;:::i;:::-;18083:1;18814:7;:18:::0;49712:21:::2;49744:44;49770:7;1984::::0;2011:6;-1:-1:-1;;;;;2011:6:0;;1938:87;49770:7:::2;49780;49744:17;:44::i;:::-;-1:-1:-1::0;18039:1:0::1;18993:7;:22:::0;49631:165::o;38892:177::-;39022:39;39039:4;39045:2;39049:7;39022:39;;;;;;;;;;;;:16;:39::i;48423:315::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;18083:1:::1;18681:7;;:19;;18673:63;;;;-1:-1:-1::0;;;18673:63:0::1;;;;;;;:::i;:::-;18083:1;18814:7;:18:::0;48531:7;48523:51:::2;;;::::0;-1:-1:-1;;;48523:51:0;;6568:2:1;48523:51:0::2;::::0;::::2;6550:21:1::0;6607:2;6587:18;;;6580:30;6646:33;6626:18;;;6619:61;6697:18;;48523:51:0::2;6366:355:1::0;48523:51:0::2;48600:29;48615:13;34354:12:::0;;;34283:91;48615:13:::2;47519:5;::::0;48600:14:::2;:29::i;:::-;48593:3;:36;;48585:61;;;::::0;-1:-1:-1;;;48585:61:0;;12425:2:1;48585:61:0::2;::::0;::::2;12407:21:1::0;12464:2;12444:18;;;12437:30;-1:-1:-1;;;12483:18:1;;;12476:42;12535:18;;48585:61:0::2;12223:336:1::0;48585:61:0::2;-1:-1:-1::0;;;;;48680:10:0;::::2;;::::0;;;:6:::2;:10;::::0;;;;;:19:::2;::::0;48695:3;48680:14:::2;:19::i;:::-;-1:-1:-1::0;;;;;48667:10:0;::::2;;::::0;;;:6:::2;:10;::::0;;;;:32;48712:18:::2;48674:2:::0;48726:3;48712:9:::2;:18::i;:::-;-1:-1:-1::0;;18039:1:0::1;18993:7;:22:::0;48423:315::o;36030:124::-;36094:7;36121:20;36133:7;36121:11;:20::i;:::-;:25;;36030:124;-1:-1:-1;;36030:124:0:o;34803:221::-;34867:7;-1:-1:-1;;;;;34895:19:0;;34887:75;;;;-1:-1:-1;;;34887:75:0;;10055:2:1;34887:75:0;;;10037:21:1;10094:2;10074:18;;;10067:30;10133:34;10113:18;;;10106:62;-1:-1:-1;;;10184:18:1;;;10177:41;10235:19;;34887:75:0;9853:407:1;34887:75:0;-1:-1:-1;;;;;;34988:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34988:27:0;;34803:221::o;2589:103::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;2654:30:::1;2681:1;2654:18;:30::i;:::-;2589:103::o:0;49522:101::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;49596:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49522:101:::0;:::o;49324:86::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;49388:5:::1;:14:::0;49324:86::o;36390:104::-;36446:13;36479:7;36472:14;;;;;:::i;47996:419::-;47846:9;;;;:39;;;;;47519:5;47859:13;34354:12;;;34283:91;47859:13;:26;47846:39;47838:68;;;;-1:-1:-1;;;47838:68:0;;7746:2:1;47838:68:0;;;7728:21:1;7785:2;7765:18;;;7758:30;-1:-1:-1;;;7804:18:1;;;7797:46;7860:18;;47838:68:0;7544:340:1;47838:68:0;18083:1:::1;18681:7;;:19;;18673:63;;;;-1:-1:-1::0;;;18673:63:0::1;;;;;;;:::i;:::-;18083:1;18814:7;:18:::0;48085:7;48077:51:::2;;;::::0;-1:-1:-1;;;48077:51:0;;6568:2:1;48077:51:0::2;::::0;::::2;6550:21:1::0;6607:2;6587:18;;;6580:30;6646:33;6626:18;;;6619:61;6697:18;;48077:51:0::2;6366:355:1::0;48077:51:0::2;48154:42;48188:7;;48154:29;48169:13;34354:12:::0;;;34283:91;48154:29:::2;:33:::0;::::2;:42::i;:::-;48147:3;:49;;48139:81;;;::::0;-1:-1:-1;;;48139:81:0;;12766:2:1;48139:81:0::2;::::0;::::2;12748:21:1::0;12805:2;12785:18;;;12778:30;-1:-1:-1;;;12824:18:1;;;12817:49;12883:18;;48139:81:0::2;12564:343:1::0;48139:81:0::2;48270:6;::::0;48254:10:::2;48247:18;::::0;;;:6:::2;:18;::::0;;;;;48239:27:::2;::::0;:3;;:7:::2;:27::i;:::-;:37;;48231:68;;;::::0;-1:-1:-1;;;48231:68:0;;8497:2:1;48231:68:0::2;::::0;::::2;8479:21:1::0;8536:2;8516:18;;;8509:30;-1:-1:-1;;;8555:18:1;;;8548:48;8613:18;;48231:68:0::2;8295:342:1::0;48231:68:0::2;48348:10;48341:18;::::0;;;:6:::2;:18;::::0;;;;;:27:::2;::::0;48364:3;48341:22:::2;:27::i;:::-;48327:10;48320:18;::::0;;;:6:::2;:18;::::0;;;;:48;;;;48381:26:::2;::::0;48403:3;48381:9:::2;:26::i;38069:288::-:0;-1:-1:-1;;;;;38164:24:0;;736:10;38164:24;;38156:63;;;;-1:-1:-1;;;38156:63:0;;11651:2:1;38156:63:0;;;11633:21:1;11690:2;11670:18;;;11663:30;11729:28;11709:18;;;11702:56;11775:18;;38156:63:0;11449:350:1;38156:63:0;736:10;38232:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38232:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38232:53:0;;;;;;;;;;38301:48;;6090:41:1;;;38232:42:0;;736:10;38301:48;;6063:18:1;38301:48:0;;;;;;;38069:288;;:::o;49159:75::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;49210:9:::1;:16:::0;;-1:-1:-1;;49210:16:0::1;49222:4;49210:16;::::0;;49159:75::o;39140:355::-;39299:28;39309:4;39315:2;39319:7;39299:9;:28::i;:::-;39360:48;39383:4;39389:2;39393:7;39402:5;39360:22;:48::i;:::-;39338:149;;;;-1:-1:-1;;;39338:149:0;;;;;;;:::i;:::-;39140:355;;;;:::o;48860:143::-;48934:13;48972:23;48987:7;48972:14;:23::i;49011:140::-;49055:13;49081:62;;;;;;;;;;;;;;;;;;;49011:140;:::o;2847:201::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2936:22:0;::::1;2928:73;;;::::0;-1:-1:-1;;;2928:73:0;;6928:2:1;2928:73:0::1;::::0;::::1;6910:21:1::0;6967:2;6947:18;;;6940:30;7006:34;6986:18;;;6979:62;-1:-1:-1;;;7057:18:1;;;7050:36;7103:19;;2928:73:0::1;6726:402:1::0;2928:73:0::1;3012:28;3031:8;3012:18;:28::i;:::-;2847:201:::0;:::o;44530:196::-;44645:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44645:29:0;-1:-1:-1;;;;;44645:29:0;;;;;;;;;44690:28;;44645:24;;44690:28;;;;;;;44530:196;;;:::o;42478:1934::-;42593:35;42631:20;42643:7;42631:11;:20::i;:::-;42706:18;;42593:58;;-1:-1:-1;42664:22:0;;-1:-1:-1;;;;;42690:34:0;736:10;-1:-1:-1;;;;;42690:34:0;;:83;;;-1:-1:-1;736:10:0;42737:20;42749:7;42737:11;:20::i;:::-;-1:-1:-1;;;;;42737:36:0;;42690:83;:146;;;-1:-1:-1;42803:18:0;;42786:50;;736:10;38428:164;:::i;42786:50::-;42664:173;;42858:17;42850:80;;;;-1:-1:-1;;;42850:80:0;;12006:2:1;42850:80:0;;;11988:21:1;12045:2;12025:18;;;12018:30;12084:34;12064:18;;;12057:62;-1:-1:-1;;;12135:18:1;;;12128:48;12193:19;;42850:80:0;11804:414:1;42850:80:0;42973:4;-1:-1:-1;;;;;42951:26:0;:13;:18;;;-1:-1:-1;;;;;42951:26:0;;42943:77;;;;-1:-1:-1;;;42943:77:0;;10467:2:1;42943:77:0;;;10449:21:1;10506:2;10486:18;;;10479:30;10545:34;10525:18;;;10518:62;-1:-1:-1;;;10596:18:1;;;10589:36;10642:19;;42943:77:0;10265:402:1;42943:77:0;-1:-1:-1;;;;;43039:16:0;;43031:66;;;;-1:-1:-1;;;43031:66:0;;8091:2:1;43031:66:0;;;8073:21:1;8130:2;8110:18;;;8103:30;8169:34;8149:18;;;8142:62;-1:-1:-1;;;8220:18:1;;;8213:35;8265:19;;43031:66:0;7889:401:1;43031:66:0;43218:49;43235:1;43239:7;43248:13;:18;;;43218:8;:49::i;:::-;-1:-1:-1;;;;;43555:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;43555:31:0;;;-1:-1:-1;;;;;43555:31:0;;;-1:-1:-1;;43555:31:0;;;;;;;43597:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43597:29:0;;;;;;;;;;;;;43639:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43680:61:0;;;;-1:-1:-1;;;43725:15:0;43680:61;;;;;;44003:11;;;44029:24;;;;;:29;44003:11;;44029:29;44025:275;;44093:20;44101:11;39841:12;;-1:-1:-1;39831:22:0;39750:111;44093:20;44089:200;;;44166:18;;;44134:24;;;:11;:24;;;;;;;;:50;;44245:28;;;;44203:70;;-1:-1:-1;;;44203:70:0;-1:-1:-1;;;;;;44203:70:0;;;-1:-1:-1;;;;;44134:50:0;;;44203:70;;;;;;;44089:200;43534:773;44343:7;44339:2;-1:-1:-1;;;;;44324:27:0;44333:4;-1:-1:-1;;;;;44324:27:0;;;;;;;;;;;44362:42;42582:1830;;42478:1934;;;:::o;23413:317::-;23528:6;23503:21;:31;;23495:73;;;;-1:-1:-1;;;23495:73:0;;9271:2:1;23495:73:0;;;9253:21:1;9310:2;9290:18;;;9283:30;9349:31;9329:18;;;9322:59;9398:18;;23495:73:0;9069:353:1;23495:73:0;23582:12;23600:9;-1:-1:-1;;;;;23600:14:0;23622:6;23600:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23581:52;;;23652:7;23644:78;;;;-1:-1:-1;;;23644:78:0;;8844:2:1;23644:78:0;;;8826:21:1;8883:2;8863:18;;;8856:30;8922:34;8902:18;;;8895:62;8993:28;8973:18;;;8966:56;9039:19;;23644:78:0;8642:422:1;6671:98:0;6729:7;6756:5;6760:1;6756;:5;:::i;:::-;6749:12;6671:98;-1:-1:-1;;;6671:98:0:o;6290:::-;6348:7;6375:5;6379:1;6375;:5;:::i;39869:104::-;39938:27;39948:2;39952:8;39938:27;;;;;;;;;;;;:9;:27::i;35463:505::-;-1:-1:-1;;;;;;;;;;;;;;;;;35566:16:0;35574:7;39841:12;;-1:-1:-1;39831:22:0;39750:111;35566:16;35558:71;;;;-1:-1:-1;;;35558:71:0;;7335:2:1;35558:71:0;;;7317:21:1;7374:2;7354:18;;;7347:30;7413:34;7393:18;;;7386:62;-1:-1:-1;;;7464:18:1;;;7457:40;7514:19;;35558:71:0;7133:406:1;35558:71:0;35679:7;35659:225;35722:31;35756:17;;;:11;:17;;;;;;;;;35722:51;;;;;;;;;-1:-1:-1;;;;;35722:51:0;;;;;-1:-1:-1;;;35722:51:0;;;;;;;;;;;;35792:28;35788:85;;35848:9;35463:505;-1:-1:-1;;;35463:505:0:o;35788:85::-;-1:-1:-1;;;35699:6:0;35659:225;;3208:191;3282:16;3301:6;;-1:-1:-1;;;;;3318:17:0;;;-1:-1:-1;;;;;;3318:17:0;;;;;;3351:40;;3301:6;;;;;;;3351:40;;3282:16;3351:40;3271:128;3208:191;:::o;45291:804::-;45446:4;-1:-1:-1;;;;;45467:13:0;;22447:19;:23;45463:625;;45503:72;;-1:-1:-1;;;45503:72:0;;-1:-1:-1;;;;;45503:36:0;;;;;:72;;736:10;;45554:4;;45560:7;;45569:5;;45503:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45503:72:0;;;;;;;;-1:-1:-1;;45503:72:0;;;;;;;;;;;;:::i;:::-;;;45499:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45749:13:0;;45745:273;;45792:61;;-1:-1:-1;;;45792:61:0;;;;;;;:::i;45745:273::-;45968:6;45962:13;45953:6;45949:2;45945:15;45938:38;45499:534;-1:-1:-1;;;;;;45626:55:0;-1:-1:-1;;;45626:55:0;;-1:-1:-1;45619:62:0;;45463:625;-1:-1:-1;46072:4:0;45463:625;45291:804;;;;;;:::o;36565:335::-;36638:13;36672:16;36680:7;39841:12;;-1:-1:-1;39831:22:0;39750:111;36672:16;36664:76;;;;-1:-1:-1;;;36664:76:0;;11235:2:1;36664:76:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;-1:-1:-1;;;11364:18:1;;;11357:45;11419:19;;36664:76:0;11033:411:1;36664:76:0;36753:21;36777:10;:8;:10::i;:::-;36753:34;;36811:7;36805:21;36830:1;36805:26;;:87;;;;;;;;;;;;;;;;;36858:7;36867:18;:7;:16;:18::i;:::-;36841:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36798:94;36565:335;-1:-1:-1;;;36565:335:0:o;40336:163::-;40459:32;40465:2;40469:8;40479:5;40486:4;40459:5;:32::i;48746:106::-;48798:13;48831;48824:20;;;;;:::i;29795:723::-;29851:13;30072:10;30068:53;;-1:-1:-1;;30099:10:0;;;;;;;;;;;;-1:-1:-1;;;30099:10:0;;;;;29795:723::o;30068:53::-;30146:5;30131:12;30187:78;30194:9;;30187:78;;30220:8;;;;:::i;:::-;;-1:-1:-1;30243:10:0;;-1:-1:-1;30251:2:0;30243:10;;:::i;:::-;;;30187:78;;;30275:19;30307:6;30297:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30297:17:0;;30275:39;;30325:154;30332:10;;30325:154;;30359:11;30369:1;30359:11;;:::i;:::-;;-1:-1:-1;30428:10:0;30436:2;30428:5;:10;:::i;:::-;30415:24;;:2;:24;:::i;:::-;30402:39;;30385:6;30392;30385:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;30385:56:0;;;;;;;;-1:-1:-1;30456:11:0;30465:2;30456:11;;:::i;:::-;;;30325:154;;40758:1466;40920:12;;-1:-1:-1;;;;;40951:16:0;;40943:62;;;;-1:-1:-1;;;40943:62:0;;13937:2:1;40943:62:0;;;13919:21:1;13976:2;13956:18;;;13949:30;14015:34;13995:18;;;13988:62;-1:-1:-1;;;14066:18:1;;;14059:31;14107:19;;40943:62:0;13735:397:1;40943:62:0;41024:13;41016:66;;;;-1:-1:-1;;;41016:66:0;;14339:2:1;41016:66:0;;;14321:21:1;14378:2;14358:18;;;14351:30;14417:34;14397:18;;;14390:62;-1:-1:-1;;;14468:18:1;;;14461:38;14516:19;;41016:66:0;14137:404:1;41016:66:0;-1:-1:-1;;;;;41426:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;41426:45:0;;-1:-1:-1;;;;;41426:45:0;;;;;;;;;;41482:50;;;;;;;;;;;;;;41545:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;41591:66:0;;;;-1:-1:-1;;;41641:15:0;41591:66;;;;;;;41545:25;;41718:379;41738:8;41734:1;:12;41718:379;;;41773:38;;41798:12;;-1:-1:-1;;;;;41773:38:0;;;41790:1;;41773:38;;41790:1;;41773:38;41830:4;41826:229;;;41885:59;41916:1;41920:2;41924:12;41938:5;41885:22;:59::i;:::-;41855:184;;;;-1:-1:-1;;;41855:184:0;;;;;;;:::i;:::-;42071:14;;;;;41748:3;41718:379;;;-1:-1:-1;42109:12:0;:27;42156:60;39140:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4564:470::-;4743:3;4781:6;4775:13;4797:53;4843:6;4838:3;4831:4;4823:6;4819:17;4797:53;:::i;:::-;4913:13;;4872:16;;;;4935:57;4913:13;4872:16;4969:4;4957:17;;4935:57;:::i;:::-;5008:20;;4564:470;-1:-1:-1;;;;4564:470:1:o;5457:488::-;-1:-1:-1;;;;;5726:15:1;;;5708:34;;5778:15;;5773:2;5758:18;;5751:43;5825:2;5810:18;;5803:34;;;5873:3;5868:2;5853:18;;5846:31;;;5651:4;;5894:45;;5919:19;;5911:6;5894:45;:::i;:::-;5886:53;5457:488;-1:-1:-1;;;;;;5457:488:1:o;6142:219::-;6291:2;6280:9;6273:21;6254:4;6311:44;6351:2;6340:9;6336:18;6328:6;6311:44;:::i;10672:356::-;10874:2;10856:21;;;10893:18;;;10886:30;10952:34;10947:2;10932:18;;10925:62;11019:2;11004:18;;10672:356::o;13315:415::-;13517:2;13499:21;;;13556:2;13536:18;;;13529:30;13595:34;13590:2;13575:18;;13568:62;-1:-1:-1;;;13661:2:1;13646:18;;13639:49;13720:3;13705:19;;13315:415::o;14546:355::-;14748:2;14730:21;;;14787:2;14767:18;;;14760:30;14826:33;14821:2;14806:18;;14799:61;14892:2;14877:18;;14546:355::o;15918:128::-;15958:3;15989:1;15985:6;15982:1;15979:13;15976:39;;;15995:18;;:::i;:::-;-1:-1:-1;16031:9:1;;15918:128::o;16051:120::-;16091:1;16117;16107:35;;16122:18;;:::i;:::-;-1:-1:-1;16156:9:1;;16051:120::o;16176:125::-;16216:4;16244:1;16241;16238:8;16235:34;;;16249:18;;:::i;:::-;-1:-1:-1;16286:9:1;;16176:125::o;16306:258::-;16378:1;16388:113;16402:6;16399:1;16396:13;16388:113;;;16478:11;;;16472:18;16459:11;;;16452:39;16424:2;16417:10;16388:113;;;16519:6;16516:1;16513:13;16510:48;;;-1:-1:-1;;16554:1:1;16536:16;;16529:27;16306:258::o;16569:380::-;16648:1;16644:12;;;;16691;;;16712:61;;16766:4;16758:6;16754:17;16744:27;;16712:61;16819:2;16811:6;16808:14;16788:18;16785:38;16782:161;;;16865:10;16860:3;16856:20;16853:1;16846:31;16900:4;16897:1;16890:15;16928:4;16925:1;16918:15;16782:161;;16569:380;;;:::o;16954:135::-;16993:3;-1:-1:-1;;17014:17:1;;17011:43;;;17034:18;;:::i;:::-;-1:-1:-1;17081:1:1;17070:13;;16954:135::o;17094:112::-;17126:1;17152;17142:35;;17157:18;;:::i;:::-;-1:-1:-1;17191:9:1;;17094:112::o;17211:127::-;17272:10;17267:3;17263:20;17260:1;17253:31;17303:4;17300:1;17293:15;17327:4;17324:1;17317:15;17343:127;17404:10;17399:3;17395:20;17392:1;17385:31;17435:4;17432:1;17425:15;17459:4;17456:1;17449:15;17475:127;17536:10;17531:3;17527:20;17524:1;17517:31;17567:4;17564:1;17557:15;17591:4;17588:1;17581:15;17607:127;17668:10;17663:3;17659:20;17656:1;17649:31;17699:4;17696:1;17689:15;17723:4;17720:1;17713:15;17739:131;-1:-1:-1;;;;;;17813:32:1;;17803:43;;17793:71;;17860:1;17857;17850:12

Swarm Source

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