ETH Price: $3,090.05 (+0.92%)
Gas: 5 Gwei

Token

BakedBlueJays (BBJ)
 

Overview

Max Total Supply

386 BBJ

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
uncledarty.eth
Balance
1 BBJ
0x8a39ac58c6cb82f1f5ae8c575923a28ce09a5296
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:
BakedBlueJays

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;


/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/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/token/ERC721/extensions/[email protected]


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/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;
    }
}



// Creator: Chiru Labs

pragma solidity ^0.8.4;



error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

    

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

  
 
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
        
    }
    
    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        
        uint256 startTokenId = _currentIndex;
        
        if (quantity == 0) revert MintZeroQuantity();
          
        _beforeTokenTransfers(address(0), to, startTokenId, quantity);
       
        
        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }
 
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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

/*MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWOodk0XN0kKNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWKc,:::c;..:oxk0XWWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM0dkd;col:;'..';:clodxxO0KNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNo,;''ldollc:,',cooolccclloddxxO0XNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKc,;.'ldollllc;,;loooooddoolccccllodxk0XNWWWWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk;:l,'coollooolccloooooooollccccc:;,,;coooodddxxkkO0KNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWx;co:;;loooolooooooolcc:::::cccllllllllllllllllcccccodk0NWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWx;colc:clooooollc::::ccllllllllllllllllllllllllllllllccldkKNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO::oollloolc::::clllllllllllllllllllooollllllllllllllllcccox0NWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWWWKo:loolc::::cllllllllllllllllloollllllloooooolllllllclcccc;;:ld0NWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMW0xddolllllc,';:;:cclllllllllllllllllllllllllllloooooooolllllc:::;;;;,,,',cOWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKd:,,;;;,,...':cccclllllllllllllllllllllllllllloooooooooooollllcc:::;;;;;';kNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNx;:llc;,,:ccccccclllllllllllllllllllllllllllloooooooooooollllllllccccc:;:cdXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk::c,,;:ccccccccccllllccclllllllllllllllllllllllooooooooooollllllllllccc:;cOWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWd'',;:ccccccccccccccccccccllllllllllllllllllooollllccc:::;;;;;;;;;:::ccllc:xXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO:,;;:ccccccccccccc:::::clllllllllllllllllc::::;,;;;;;;;;;;:;,;:::::;,;;;,;;;l0WMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk:,,,:cccc::cccc:;;;;:ccllllllllllllcc:;:clodxxkkxdolodddddo:''cddddo:;dK0kl:;.:KMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk;,,,;cccc::cc:;,,,:ccclllllllllc:;:clodk0XNWWWWWWWWXOxodoc;,'.;oddddlo;'dXWN0o';KMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWd,,';:cc::::;,',;ccccccccllc:;:cldx0XNWWWWWWWWWWWWMWNXkc;;,,;,,ldddddoOo',ckXWXo;dNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWNNXXXXNWMMMWd'.,:c::::;'',:ccccccccc:;:cox0XWWMWWWWWWWWWWWNXKOxdl:;;;:;,,:odddddoo00:,;;lx0Ko;xWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKkdoolllllllldKWWd..;::;;,'',;:cccccc:;;cokKNWWWWWWWWWWMWWXKkxolc:;;;;;;,''';ldddddddooKWd'',;;:lo;;OMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk::cccccccc::;,;o0o.,:;;,'',;;:ccc:;';lx0NWWWWWWWWWWWWNKkdoc;,,;;;;;,,,,,..:olodddddddoo0Ndlxo:,,;;,.:XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWd;:::;,,,,,;;;;;;;'.;;,'',;;;:::,''.c0WWWWWWWWWWWWWWXOo:;;;;;;;,,,,:ldx0KOlo0dloddddddolO0dKMMXOo:,;,'dWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXo,;;,'..'''''',;;..;,.';;;;;;'',::lKWWWWWWWWWWWWWNk:,;;;;,,,;coxO0NWWWWWWXkkOllddddddockkkNWWNXXKkc,';OMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNx:,,,,',,,;,'.......';;;;,..;odo:dNWWWWWWWWWWWWKl,,;,,,:cokKNNWMMXxlclxXWXxkdcddxdddocdkONKd:',oKXd,.lNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXkdlc;,,,,;;;,'....;;;'....':ldllONWWWWWWWWWWKc',,;;:d0XNWWNWNN0ol:.  ,kNOxklldxxdoocdxOKkOKo. :KNx.'OMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWXkc'..........';'.........,;:cxKNWWWWWWWNo',codokXNNWNWWWKkdOWW0,  'OXxkdcddxdddloxkxdKMX; .dWNo'oNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKdc::;;,''''........''''.......',:ok0KNNW0;;kXXddXWWNWWWWWkccOMMWo   cKxkkcodxxdollxko,:xd;'.cNWKlc0MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNkc:ccc:cccc;,lOc...''''''''';::ccc:::clodxl:dkOkoOWWWWWWNNWOc''dOx:',.,0kk0llddxdoocxOd;.. .::lNMKxcxWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXo::;;;;;;;,ckNWd..'''''''':kKNNNWWNNNNNXXK0OkkkdlOWWMWWWWWWX0c  . .;x:;0xOXocolc:;;,cOkol'   ,kWNOOdoXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNK00OkkkkxdOXXk,..''''''',xWWWWWWWWWWNWWNNNNNWWNkdOXNWWWWWWWWKl,.   ..dOxKNx;;',lo:'';oxdoc:lOXKOON0lOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWd',;'..''''''',,xWWWWWWWWWWWWNNNNNNNNNNOxxOKXXNNWNNNXkc...;x0xONNx'.',:c;'...:ddxxkOOOKNWXoxWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKc....'''''''',,oNWWWWWWWWWWWNNNNNNNNNNNX0kkkkO0KXXXXXX0OOOkxONXx;''...'',',',;::;;;codxxxclKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMO;....''''''',':OWWWWWWWWWWWNNNNNNNNNNNNNNNK0OOOOOOOOOOkOOO0Odc'.'.....,,,,,;;::ccllllccc::clodk0NWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNd,...''''''''',,oXWWWWWWWWWWNNNNNNNNNNNNWWNNWWNNXXXK00Okkxl;'.''''...',,,,,;:::cclooddddxxxxoc:;;:ld0NMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNd'...''''''''',,;kWWWWWWWWWWWWNNNNNNNKkkkkxxxxddooolc:;;,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,;;::::::;,',:d0WMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO:..'''''''''','c0WWWWWWWWWWWNNNNNN0c;;:::;,'',;:::;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;,,,,,,,,,,''''''''''',oKWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXo..'''''''',,,,lXWWWWWWWWWWWNNNNNXd;,;'.........''',,,;;;,,;;,,,,,,,''''''..................''';ccc;''c0MMMMMMWWNXKK0000KXXNWMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNo..''''',::,'';OWWWWWWWWWWWNNNNNNNk:,''''''.................................................',,.',,:x0NWMMWK0Oxoc::::ccccodxO0NMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMK, .'''''cOOkkOXWWWWWWWWWWWNNWNNWNNKdc;,,,,,''''''''''''''''''''''''''''''''''''''''''''''''..,,':ONMMMMWKxk0X0dlllcclc::cdO0kk0NMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWd'...''''':kNWWWWWWWWWWWWWNWWWNWWWWWNXOxolcc:;;,'''''''''''.''...................'''''''''',::,,;:OWMMMMNddKXXNXKK0OO0000KXNXXKxkWMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk;',. .''''',cONWWWNKOO000KNWWWWWWWWWNWWNNNNXKK0Okdolc:;,,',','''''''''''''''''''''''''',cox0NNx,,,;OWMMMWOdx0XXXXNXXXXXXXXXXXKOdOWMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNx,.,'....''''',dNWWWXOoloxOXWWWWWWWWWWWWWNWNNNNNNNNNNXK0Oxdlc:;,,;;;,,,,,,,,,,,,,,,,:col,oNMMMMMNd',,;OWMMMMXkccodxkkOO00OOkxdocckWMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKxOd','..'''''.;oOKNNNXKKKKXNKXWWWWWWWWWWWWWWWNNNNNNNNNNNNXXK0Oxdlc:;;,,,;,,;:cccldxOKNXx:xMMMMMMMXl''',lKMMMMNd;::;;::::::::::c:dNMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWWx',:. ..''''''';:cxXWNKOxookXWWWWWWWWWWWWWWWWWNNNNNNNNNNNNNXXK0Okxddddo:lxOO0KXNNWNNXd:kMMMMMMMM0;.:lclONWMMk;:cccccccccccodcoXMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXc.:c:. ..''''''..,dXWNKxdxkKNWWWWWWWWWWWWWWWWWWWWNNWWWNNNNNNNNNXK0OOOOolOKKXNNNNNNNNKoc0MMMMMMMMW0c;ldolodxdc:cccccccccccldclKMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNo.,c;,''''''''''''',ckXWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWNNWWNNNNXXKOloKNNNNNNNNNNNKl:OWMMMMMMMMMXo;coddoooooccccccccccloclKMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWx''::.......'''''''''''ckXWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWNNNNNNWWNXko0NNNNNNNNNNNKd:ckXMMMMMMMMMNx;;cloddolcccccccc:cl:oXMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk'':c:'',,,'....'''''''''':xKWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWNWWNNOx0NNNWNNNNNNKkddoo0WMMMMMMMMW0l;:clllccccccc:::::xNMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk,':cc::cc::c:;...''''''''''';oOXWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWNWNKkkKNWNNNNNWXOk00xlxXMMMMMMMMMNkc;::c::::::::;:oKWMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO,':c::::::;;;;;;'. .''''''''''',cxKNWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWNX00OkOXNWNNWNXOk0NKkcl0WMMMMMMMMMNOoc:;;;;;;:lxKWMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO;':c::;,;:clloooool:;'..''''''''''':oOKNWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWX0OOkdxKWWNWNX0xkXNKx,'kWMMMMMMMMMMWN0kxxxkOKWMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM0;':;,',;codxdddddddddxdl:'.''''''''''',:dOKXWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWXkd0WWWWWWXxo0NKkl..dNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM0:','',:oddddddddddddoddddxd:'..''''''''''';cdOKNWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWNKXWWWWNNKkkXW0do,.'dXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMK:..';coooododdoodddddooooodddo,...''''''''''',;cdOKXNWWWWWWWWWWWWWWWWWWWXKNWNXNWWWWWWWWWWWWNXOdxXWXxl:.';dXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXc..;coooooooooooooooooooooooooddc.',''''''''''''',;cok00XNWWWXKNWWWWWWWWWN0OXXOKWWWWWWWNNWWX0XXolKWNxl:'.;cdXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO:',cloooooooooooooooooooooooooooddc;od:'.''''''''''''';::lxOKXKOOKNWWWWWWWWWKOOk0WWWWWWWX00XXkOWOxXWW0dc'.'lodNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKo,,:cooooooooooooooooooooooooooooooddc:OXkl,'''''''''''''''',;coxkkkOKNNXXNWWWWXxlOWWWWWWWWWKOOxxNWNWWWWXo''':xoxWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNk;';:looooooooooooooooooooooooooooooooodclKWNKxl;''''''''''''',''',:ldkdxO0O0XWWWWOo0WWWWWWWWWWWKooXWWWWWWNk,'''dOoOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXl',:cloooooooooooooooooooooooooooooooooodo:dNWWWNKkl;''''''''''''''''',c:,;lxkO0XNWNXNWWWWWWWWWWWW0ONWWWWWWN0:.'.cKkoKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWO:';:cloooooooooooooooooooooooooooooooooooodcc0WWWWWWNKko:'''''''''''''''''''';:cokOKKXNNWWWWWWWNXXWWWNXNWWWWN0:.'',OXodNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNx,';:loooooooooooooooooooooooooooooooooooooooo;oNWWWWWWWWWKko:''''''''''''''',,'..';cldkOO000KKXNN0OXWNKOKWWWWWO;.'''dNOl0MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNd',::looooooooooooooooooooooooooooooooooooooooo;c0NWWWWWWWWWWWXkxo:,''''''''',''''''''',;:clloxkkOOOkOXXOkOKNWWN0:.''.oNXodNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXl',:cloolollooooooooooooooololoolooolooooooooood;;OXXNWWWWWWWWWWWWWXOo:,'','',''''''''''''''''',;:cldxkOxdkkxkKNNO:.''.lXWxlKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMXc',:clllllolllllllllllllllllllllllllolllooooooooc.,kKXXNWWWWWWWWWWWWWWWXOdc,'',,','''''''''''''''''''';:c,'cddccO0k:.''.lXW0ckMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKc.,:clllllllllllllllllllllllllllllllollllooooooo:'.,kKXXXNNWWWWWWWWWWWWWWWWXOo:,',,'''''''''''''''''''''''..''::';dd;.''.cXWKloNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKc.,:clllllllllllllllllllllllllllllloolcllooooool;'..cOKXXXXXNWWWWWWWWWWWWWWWWWWXkl;'','''''''''''''''''''''''''.'..:c''''.oNWXolXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMKc.,:cllllllllllllllllllllllllllllllolcclloooooo:,''.'oOKXXXXXXNNWWWWWWWWWWWWWWWWWWN0d:,',''''''''''''''''''''''''.....'''',xWWXdcKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMXc.,;:llllllllllllllllllllllllllllllol:clloooooc;,,,..:xOKXXXXXXXXNNWWWWWWWWWWWWWWWWWWNKxc,'..,,''''''''''''''''''''''''''..:0WWXdc0MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMXc.,;clllllllllllllllllllllllllllllolc:lllooool:,,,,'.;dxOKXXXXXXXXXXNNNWWWWWWWWWWWWWWWWWWXk:..'',,''''''''''''''''''''''''.'dXWWXdcOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMXl.,;:clllllllllllllllccllllllllllolc:cllllool:,,;,''.,oxxOKKXXXXXXXXXXXNNNNNNWWWWWWWWWWWWWWWKdlol,',,'''''''''''''''''''''''dXWWNXdcOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMNo.';:cllllllllllllllc:clllllllllllc::llloolc;,,;;,''.'lxxk0XXKXXXXXXXXXXXXNNNNNWWWWWWWWWWWWWWWNXNNk:'';oo:''''''''''''''....cKWWWNKdc0MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMWd'';:cllllccllllllll::cllllllllllc;;cooolc:,,,;;;,''.'lxxxO00KKKKXXXXXXXXXXXXXXXNNWWWWWWWWWWWWWWWWWWKo.:KWXOdl:,'''..'''''',:kNWWWX0lcKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMWk'';:clllc:clllllll:::llllllllolc;,,;;:;;,,,;;;;,,'..,oxxxk0OdOOkKXXXXXXXXXXXXXXXXXNNWWWWWWWWWWWWWWWWWXdl0WWWWWX0ko;..''',';kXNWWWNKOclNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMO,.;;:llc::clllllc:::cllllllooc:;,,;;;;;;;;;;;;;,''..;oxxxxOKOoddxKXKKXXXXXXXXXXXXXXXXNNNWWWWWWWWWWWWWWWNXNWWWWWWWWNKdldc'''lXWWWWWX0kcdWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMK;.,;:cc:::cllllc:::clllllolc:;,,;;;;;;;;;;;;;;,,'...cdxdxxOKKOlcd0KKKKKXKXXXXXXXXXXXXXXXNNNWWWWWWWWWWWWWWWWWWWWWWWWWWNNNKc'l0WWWWWNK0dcOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMXc.,;:::::clllc:;,,:::ccc::;,,,;;;;;;;;;;;;;;;;,''..,oddxdxk0KKx;l0KKKKKKKKKXXKXXXXXXXXXXXXXNNNNWWWWWWWWWWWWWWWWWWWWNWWWWWNKOXWNWWWWX0OllXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMNl.',,,',:c:::;,,;;;,,,,,,,,;;;;;;,;;;;;;;;;;;,,'..'cdddddxk0KKKkd0KKKKKK0kOOOKXXXXXXXXXXXXXXXXXNNNWWWWWWWWWWWWWWWWNWWNWWWWWWWNNWWWWNK0k:xWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMWd....',;;,,,,,;;;;;;;;;;;;;;;;;;,..,;;;;;;;;;,''..;oddddddk0KKKKKKKKKKKKKKxdodKXXKXXXXXXXXXXXXXXXXXNNNWWWWWNWWWNWWWWWNWNWWWWWWWNWNNNK0OlcKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMWO,.''',;;;;;;;;;;,'';;;;;;;;;;;;;...':c:;;;;,''..,ldddddddk0KKKKKKKKKKKKKKKOlcxKKKKKKXXXXXXXXXXXXXXXXXNNNWWWWWWWWWWWWWWWWWWWWWWWWWWNX00xcxWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMK;.''..,;;;;;;;;;;'..,:;;;;;;;;;;,....';clcc:;'.':ddddddddod0KKKKKKKKKKKKKKKOcl0KKKKKKKKXXXXXXXXXXXXXXXXXXNNNNNWWNNWWWWWWWWWWNWWWWWNX00OllXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMNl..'...,:::;;;;;;;....,:ccc:cc:ccc,..'...',,,,';odddddddxdldOk0KKKKKKKKKKKKK0k0KKKKKKKKKKKKXXXXXXXXXXXXXXXXNNNNNNNNNNNNNNNNNNNNWNNNXKOOdcOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMWx'.''....';:ccccccc,.....,;::::::;;,,:,'..'...,lddddddddxxllddOKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKXXXXXXXXXXXXXXXXXXXXXNNNNNNNNNNNNNNNNNXKOOxcxWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMM0:,,''...'...'',,,,'','.''.......'''cO0kolc;';ldddddddddkxc:dkKKKK0OOK0O0KKKKKKKKKKKKKKKKKKK00KKKKKKKXXXXXXXXXXXXXXXNNNNNWNNNNNNNNNNKOOkloNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMNl.,;,'...''''''..',;dOxc:,,,,;:llccdOOxdl;',cdxdddddddxkOxdOKKKKKK0odKdlOKKKKKKKK0KKKKKKKKKOdokKKKKKKKKKKKKKKKKKKXXXXXXXNNNNWNNNNNNKOOkloXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMWk'.....:l;'...',:lllxKKKK00OOO00xlokkxdl;';lddddddddddxOKKKKKKKKKKK0loxcdKKKKKKKKOxkKkkKKKKKo;d0KKKKKKKKKKKKKKKKKKKKKKKKKXNNWNNNNNNKOOkooKMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMNl.....cOKOdlclok0xcxKKKKKKKKKK0dcdkxxd:.'ldddddddddddx0KKKKOOKKKKKK0lccl0KKKKKKKKOodkoxKKKKOcl0KKKKKKKKKKKKKKKKKKKKKKKKKKKXNNNWNNNKOOOdl0MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM@_bcbrEad*/
pragma solidity ^0.8.0;

contract BakedBlueJays is ERC721A, Ownable {
    
    using Strings for uint;
    

    string public constant NR = "ipfs://QmSGBXbM2DDz92dHEBwaApV8BSettcJnGRz7V6c3EBDbgj/1.json";
    uint public cost = 42000000000000000;//0.042amount in wei
    uint private constant totalBBJs = 10000;
    uint private constant maxPerMint = 50;
    bool paused = true;
    bool revealed = false;

    

    constructor(
    ) ERC721A("BakedBlueJays", "BBJ")payable{
        _mint(msg.sender, 20,"",true);
    }

  
////Public Functions



    function publicMint(uint qty) external payable
    
    {
        uint tm = _totalMinted();
        uint _cost = cost;
        require(paused==false);
        require(tm + qty < 10001, "Nest is empty");
        require(msg.value + 1 > qty * _cost, "Not Enough ETH");
                                  
                _mint(msg.sender, qty,"",true);       
    }
 
 //// metadata URI
    string private _baseTokenURI;

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

    function exists(uint256 tokenId) public view returns (bool) 
    {
        return _exists(tokenId);
    }

    function tokenURI(uint tokenId) public view virtual override returns (string memory) 
    {
      if(revealed == false) 
      {
        return NR;
      }

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

////Only Owner Functions
    
    function giftMint(address recipient, uint qty) external onlyOwner 
    {
        require(_totalMinted() + qty <10001, "Nest is empty");

                _mint(recipient, qty, '', true);
    }

    function setCost(uint256 _newCost) public onlyOwner() 
    {
        cost = _newCost;
    }

    function withdraw() public payable onlyOwner 
    {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }

    function setBaseURI(string memory baseURI) external onlyOwner 
    {
        _baseTokenURI = baseURI;
    }
 
    function reveal(bool _state) external onlyOwner 
    {
        revealed = _state;//reveal
    }

    function pause(bool _state) public onlyOwner() 
    {
        paused = _state;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"NR","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","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":"payable","type":"function"}]

669536c708910000600955600a805461ffff19166001179055600d60808181526c42616b6564426c75654a61797360981b60a0908152610100604052600360c09081526221212560e91b60e05291926200005c91600291620003ae565b50805162000072906003906020840190620003ae565b50506001600055506200008533620000b0565b620000aa3360146040518060200160405280600081525060016200010260201b60201c565b6200053f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005483620001245760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620001dd5750620001dd876001600160a01b03166200029e60201b62000eeb1760201c565b156200025d575b60405182906001600160a01b0389169060009060008051602062002289833981519152908290a460018201916200022190600090899088620002ad565b6200023f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620001e45782600054146200025757600080fd5b62000293565b5b6040516001830192906001600160a01b0389169060009060008051602062002289833981519152908290a4808214156200025e575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620002e490339089908890889060040162000487565b602060405180830381600087803b158015620002ff57600080fd5b505af192505050801562000332575060408051601f3d908101601f191682019092526200032f9181019062000454565b60015b62000391573d80801562000363576040519150601f19603f3d011682016040523d82523d6000602084013e62000368565b606091505b50805162000389576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620003bc9062000502565b90600052602060002090601f016020900481019282620003e057600085556200042b565b82601f10620003fb57805160ff19168380011785556200042b565b828001600101855582156200042b579182015b828111156200042b5782518255916020019190600101906200040e565b50620004399291506200043d565b5090565b5b808211156200043957600081556001016200043e565b6000602082840312156200046757600080fd5b81516001600160e01b0319811681146200048057600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620004d65785810182015185820160a001528101620004b8565b82811115620004e957600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200051757607f821691505b602082108114156200053957634e487b7160e01b600052602260045260246000fd5b50919050565b611d3a806200054f6000396000f3fe6080604052600436106101ac5760003560e01c806345bf9b15116100ec578063940cd05b1161008a578063b88d4fde11610064578063b88d4fde1461049b578063c87b56dd146104bb578063e985e9c5146104db578063f2fde38b1461052457600080fd5b8063940cd05b1461044657806395d89b4114610466578063a22cb4651461047b57600080fd5b80636352211e116100c65780636352211e146103b357806370a08231146103d3578063715018a6146104135780638da5cb5b1461042857600080fd5b806345bf9b15146103535780634f558e791461037357806355f804b31461039357600080fd5b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146102f657806342842e0e146102fe57806344a0d68a1461031e578063458b221a1461033e57600080fd5b806318160ddd146102a657806323b872dd146102c35780632db11544146102e357600080fd5b8063081812fc1161018a578063081812fc1461022a578063095ea7b31461026257806313faede61461028257600080fd5b806301ffc9a7146101b157806302329a29146101e657806306fdde0314610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc3660046119f4565b610544565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506102066102013660046119d9565b6105e1565b005b34801561021457600080fd5b5061021d610653565b6040516101dd9190611b4f565b34801561023657600080fd5b5061024a610245366004611a77565b6106e5565b6040516001600160a01b0390911681526020016101dd565b34801561026e57600080fd5b5061020661027d3660046119af565b610742565b34801561028e57600080fd5b5061029860095481565b6040519081526020016101dd565b3480156102b257600080fd5b506001546000540360001901610298565b3480156102cf57600080fd5b506102066102de3660046118cd565b610802565b6102066102f1366004611a77565b61080d565b6102066108f2565b34801561030a57600080fd5b506102066103193660046118cd565b6109a4565b34801561032a57600080fd5b50610206610339366004611a77565b6109bf565b34801561034a57600080fd5b5061021d610a1e565b34801561035f57600080fd5b5061020661036e3660046119af565b610a3a565b34801561037f57600080fd5b506101d161038e366004611a77565b610b0c565b34801561039f57600080fd5b506102066103ae366004611a2e565b610b17565b3480156103bf57600080fd5b5061024a6103ce366004611a77565b610b84565b3480156103df57600080fd5b506102986103ee36600461187f565b6001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b34801561041f57600080fd5b50610206610b96565b34801561043457600080fd5b506008546001600160a01b031661024a565b34801561045257600080fd5b506102066104613660046119d9565b610bfc565b34801561047257600080fd5b5061021d610c70565b34801561048757600080fd5b50610206610496366004611985565b610c7f565b3480156104a757600080fd5b506102066104b6366004611909565b610d2e565b3480156104c757600080fd5b5061021d6104d6366004611a77565b610d7f565b3480156104e757600080fd5b506101d16104f636600461189a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053057600080fd5b5061020661053f36600461187f565b610e0c565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105a757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105db57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b031633146106405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a805460ff1916911515919091179055565b60606002805461066290611bf0565b80601f016020809104026020016040519081016040528092919081815260200182805461068e90611bf0565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006106f082610efa565b610726576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061074d82610b84565b9050806001600160a01b0316836001600160a01b0316141561079b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906107bb57506107b981336104f6565b155b156107f2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107fd838383610f33565b505050565b6107fd838383610f9c565b600054600954600a546000199092019160ff161561082a57600080fd5b6127116108378484611b62565b106108745760405162461bcd60e51b815260206004820152600d60248201526c4e65737420697320656d70747960981b6044820152606401610637565b61087e8184611b8e565b610889346001611b62565b116108d65760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610637565b6107fd3384604051806020016040528060008152506001611197565b6008546001600160a01b0316331461094c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b604051600090339047908381818185875af1925050503d806000811461098e576040519150601f19603f3d011682016040523d82523d6000602084013e610993565b606091505b50509050806109a157600080fd5b50565b6107fd83838360405180602001604052806000815250610d2e565b6008546001600160a01b03163314610a195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b600955565b6040518060600160405280603c8152602001611cc9603c913981565b6008546001600160a01b03163314610a945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b61271181610aa56000546000190190565b610aaf9190611b62565b10610aec5760405162461bcd60e51b815260206004820152600d60248201526c4e65737420697320656d70747960981b6044820152606401610637565b610b088282604051806020016040528060008152506001611197565b5050565b60006105db82610efa565b6008546001600160a01b03163314610b715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b8051610b0890600b906020840190611744565b6000610b8f8261136a565b5192915050565b6008546001600160a01b03163314610bf05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b610bfa60006114ac565b565b6008546001600160a01b03163314610c565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b600a80549115156101000261ff0019909216919091179055565b60606003805461066290611bf0565b6001600160a01b038216331415610cc2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d39848484610f9c565b6001600160a01b0383163b15158015610d5b5750610d598484848461150b565b155b15610d79576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a54606090610100900460ff16610db0576040518060600160405280603c8152602001611cc9603c913992915050565b6000610dba611603565b90506000815111610dda5760405180602001604052806000815250610e05565b80610de484611612565b604051602001610df5929190611abc565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b6001600160a01b038116610ee25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610637565b6109a1816114ac565b6001600160a01b03163b151590565b600081600111158015610f0e575060005482105b80156105db575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fa78261136a565b9050836001600160a01b031681600001516001600160a01b031614610ff8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611016575061101685336104f6565b80611031575033611026846106e5565b6001600160a01b0316145b90508061106a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166110aa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110b660008487610f33565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661118c57600054821461118c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b5050505b5050505050565b600054836111d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561129257506001600160a01b0387163b15155b1561131b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112e3600088848060010195508861150b565b611300576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561129857826000541461131657600080fd5b611361565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561131c575b50600055611190565b6040805160608101825260008082526020820181905291810191909152818060011115801561139a575060005481105b1561147a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114785780516001600160a01b03161561140e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611473579392505050565b61140e565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611540903390899088908890600401611b13565b602060405180830381600087803b15801561155a57600080fd5b505af192505050801561158a575060408051601f3d908101601f1916820190925261158791810190611a11565b60015b6115e5573d8080156115b8576040519150601f19603f3d011682016040523d82523d6000602084013e6115bd565b606091505b5080516115dd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461066290611bf0565b60608161165257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561167c578061166681611c2b565b91506116759050600a83611b7a565b9150611656565b60008167ffffffffffffffff81111561169757611697611c9c565b6040519080825280601f01601f1916602001820160405280156116c1576020820181803683370190505b5090505b84156115fb576116d6600183611bad565b91506116e3600a86611c46565b6116ee906030611b62565b60f81b81838151811061170357611703611c86565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061173d600a86611b7a565b94506116c5565b82805461175090611bf0565b90600052602060002090601f01602090048101928261177257600085556117b8565b82601f1061178b57805160ff19168380011785556117b8565b828001600101855582156117b8579182015b828111156117b857825182559160200191906001019061179d565b506117c49291506117c8565b5090565b5b808211156117c457600081556001016117c9565b600067ffffffffffffffff808411156117f8576117f8611c9c565b604051601f8501601f19908116603f0116810190828211818310171561182057611820611c9c565b8160405280935085815286868601111561183957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461186a57600080fd5b919050565b8035801515811461186a57600080fd5b60006020828403121561189157600080fd5b610e0582611853565b600080604083850312156118ad57600080fd5b6118b683611853565b91506118c460208401611853565b90509250929050565b6000806000606084860312156118e257600080fd5b6118eb84611853565b92506118f960208501611853565b9150604084013590509250925092565b6000806000806080858703121561191f57600080fd5b61192885611853565b935061193660208601611853565b925060408501359150606085013567ffffffffffffffff81111561195957600080fd5b8501601f8101871361196a57600080fd5b611979878235602084016117dd565b91505092959194509250565b6000806040838503121561199857600080fd5b6119a183611853565b91506118c46020840161186f565b600080604083850312156119c257600080fd5b6119cb83611853565b946020939093013593505050565b6000602082840312156119eb57600080fd5b610e058261186f565b600060208284031215611a0657600080fd5b8135610e0581611cb2565b600060208284031215611a2357600080fd5b8151610e0581611cb2565b600060208284031215611a4057600080fd5b813567ffffffffffffffff811115611a5757600080fd5b8201601f81018413611a6857600080fd5b6115fb848235602084016117dd565b600060208284031215611a8957600080fd5b5035919050565b60008151808452611aa8816020860160208601611bc4565b601f01601f19169290920160200192915050565b60008351611ace818460208801611bc4565b835190830190611ae2818360208801611bc4565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611b456080830184611a90565b9695505050505050565b602081526000610e056020830184611a90565b60008219821115611b7557611b75611c5a565b500190565b600082611b8957611b89611c70565b500490565b6000816000190483118215151615611ba857611ba8611c5a565b500290565b600082821015611bbf57611bbf611c5a565b500390565b60005b83811015611bdf578181015183820152602001611bc7565b83811115610d795750506000910152565b600181811c90821680611c0457607f821691505b60208210811415611c2557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c3f57611c3f611c5a565b5060010190565b600082611c5557611c55611c70565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109a157600080fdfe697066733a2f2f516d53474258624d3244447a3932644845427761417056384253657474634a6e47527a375636633345424462676a2f312e6a736f6ea26469706673582212202c3a323f8bd2cc51e8e4527ea32b8d4143e0b6939910ed5b415f4dad4c5e151a64736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106101ac5760003560e01c806345bf9b15116100ec578063940cd05b1161008a578063b88d4fde11610064578063b88d4fde1461049b578063c87b56dd146104bb578063e985e9c5146104db578063f2fde38b1461052457600080fd5b8063940cd05b1461044657806395d89b4114610466578063a22cb4651461047b57600080fd5b80636352211e116100c65780636352211e146103b357806370a08231146103d3578063715018a6146104135780638da5cb5b1461042857600080fd5b806345bf9b15146103535780634f558e791461037357806355f804b31461039357600080fd5b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146102f657806342842e0e146102fe57806344a0d68a1461031e578063458b221a1461033e57600080fd5b806318160ddd146102a657806323b872dd146102c35780632db11544146102e357600080fd5b8063081812fc1161018a578063081812fc1461022a578063095ea7b31461026257806313faede61461028257600080fd5b806301ffc9a7146101b157806302329a29146101e657806306fdde0314610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc3660046119f4565b610544565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506102066102013660046119d9565b6105e1565b005b34801561021457600080fd5b5061021d610653565b6040516101dd9190611b4f565b34801561023657600080fd5b5061024a610245366004611a77565b6106e5565b6040516001600160a01b0390911681526020016101dd565b34801561026e57600080fd5b5061020661027d3660046119af565b610742565b34801561028e57600080fd5b5061029860095481565b6040519081526020016101dd565b3480156102b257600080fd5b506001546000540360001901610298565b3480156102cf57600080fd5b506102066102de3660046118cd565b610802565b6102066102f1366004611a77565b61080d565b6102066108f2565b34801561030a57600080fd5b506102066103193660046118cd565b6109a4565b34801561032a57600080fd5b50610206610339366004611a77565b6109bf565b34801561034a57600080fd5b5061021d610a1e565b34801561035f57600080fd5b5061020661036e3660046119af565b610a3a565b34801561037f57600080fd5b506101d161038e366004611a77565b610b0c565b34801561039f57600080fd5b506102066103ae366004611a2e565b610b17565b3480156103bf57600080fd5b5061024a6103ce366004611a77565b610b84565b3480156103df57600080fd5b506102986103ee36600461187f565b6001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b34801561041f57600080fd5b50610206610b96565b34801561043457600080fd5b506008546001600160a01b031661024a565b34801561045257600080fd5b506102066104613660046119d9565b610bfc565b34801561047257600080fd5b5061021d610c70565b34801561048757600080fd5b50610206610496366004611985565b610c7f565b3480156104a757600080fd5b506102066104b6366004611909565b610d2e565b3480156104c757600080fd5b5061021d6104d6366004611a77565b610d7f565b3480156104e757600080fd5b506101d16104f636600461189a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053057600080fd5b5061020661053f36600461187f565b610e0c565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105a757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105db57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b031633146106405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a805460ff1916911515919091179055565b60606002805461066290611bf0565b80601f016020809104026020016040519081016040528092919081815260200182805461068e90611bf0565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006106f082610efa565b610726576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061074d82610b84565b9050806001600160a01b0316836001600160a01b0316141561079b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906107bb57506107b981336104f6565b155b156107f2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107fd838383610f33565b505050565b6107fd838383610f9c565b600054600954600a546000199092019160ff161561082a57600080fd5b6127116108378484611b62565b106108745760405162461bcd60e51b815260206004820152600d60248201526c4e65737420697320656d70747960981b6044820152606401610637565b61087e8184611b8e565b610889346001611b62565b116108d65760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610637565b6107fd3384604051806020016040528060008152506001611197565b6008546001600160a01b0316331461094c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b604051600090339047908381818185875af1925050503d806000811461098e576040519150601f19603f3d011682016040523d82523d6000602084013e610993565b606091505b50509050806109a157600080fd5b50565b6107fd83838360405180602001604052806000815250610d2e565b6008546001600160a01b03163314610a195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b600955565b6040518060600160405280603c8152602001611cc9603c913981565b6008546001600160a01b03163314610a945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b61271181610aa56000546000190190565b610aaf9190611b62565b10610aec5760405162461bcd60e51b815260206004820152600d60248201526c4e65737420697320656d70747960981b6044820152606401610637565b610b088282604051806020016040528060008152506001611197565b5050565b60006105db82610efa565b6008546001600160a01b03163314610b715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b8051610b0890600b906020840190611744565b6000610b8f8261136a565b5192915050565b6008546001600160a01b03163314610bf05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b610bfa60006114ac565b565b6008546001600160a01b03163314610c565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b600a80549115156101000261ff0019909216919091179055565b60606003805461066290611bf0565b6001600160a01b038216331415610cc2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d39848484610f9c565b6001600160a01b0383163b15158015610d5b5750610d598484848461150b565b155b15610d79576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a54606090610100900460ff16610db0576040518060600160405280603c8152602001611cc9603c913992915050565b6000610dba611603565b90506000815111610dda5760405180602001604052806000815250610e05565b80610de484611612565b604051602001610df5929190611abc565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610637565b6001600160a01b038116610ee25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610637565b6109a1816114ac565b6001600160a01b03163b151590565b600081600111158015610f0e575060005482105b80156105db575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fa78261136a565b9050836001600160a01b031681600001516001600160a01b031614610ff8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611016575061101685336104f6565b80611031575033611026846106e5565b6001600160a01b0316145b90508061106a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166110aa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110b660008487610f33565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661118c57600054821461118c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b5050505b5050505050565b600054836111d1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561129257506001600160a01b0387163b15155b1561131b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112e3600088848060010195508861150b565b611300576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561129857826000541461131657600080fd5b611361565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561131c575b50600055611190565b6040805160608101825260008082526020820181905291810191909152818060011115801561139a575060005481105b1561147a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114785780516001600160a01b03161561140e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611473579392505050565b61140e565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611540903390899088908890600401611b13565b602060405180830381600087803b15801561155a57600080fd5b505af192505050801561158a575060408051601f3d908101601f1916820190925261158791810190611a11565b60015b6115e5573d8080156115b8576040519150601f19603f3d011682016040523d82523d6000602084013e6115bd565b606091505b5080516115dd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461066290611bf0565b60608161165257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561167c578061166681611c2b565b91506116759050600a83611b7a565b9150611656565b60008167ffffffffffffffff81111561169757611697611c9c565b6040519080825280601f01601f1916602001820160405280156116c1576020820181803683370190505b5090505b84156115fb576116d6600183611bad565b91506116e3600a86611c46565b6116ee906030611b62565b60f81b81838151811061170357611703611c86565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061173d600a86611b7a565b94506116c5565b82805461175090611bf0565b90600052602060002090601f01602090048101928261177257600085556117b8565b82601f1061178b57805160ff19168380011785556117b8565b828001600101855582156117b8579182015b828111156117b857825182559160200191906001019061179d565b506117c49291506117c8565b5090565b5b808211156117c457600081556001016117c9565b600067ffffffffffffffff808411156117f8576117f8611c9c565b604051601f8501601f19908116603f0116810190828211818310171561182057611820611c9c565b8160405280935085815286868601111561183957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461186a57600080fd5b919050565b8035801515811461186a57600080fd5b60006020828403121561189157600080fd5b610e0582611853565b600080604083850312156118ad57600080fd5b6118b683611853565b91506118c460208401611853565b90509250929050565b6000806000606084860312156118e257600080fd5b6118eb84611853565b92506118f960208501611853565b9150604084013590509250925092565b6000806000806080858703121561191f57600080fd5b61192885611853565b935061193660208601611853565b925060408501359150606085013567ffffffffffffffff81111561195957600080fd5b8501601f8101871361196a57600080fd5b611979878235602084016117dd565b91505092959194509250565b6000806040838503121561199857600080fd5b6119a183611853565b91506118c46020840161186f565b600080604083850312156119c257600080fd5b6119cb83611853565b946020939093013593505050565b6000602082840312156119eb57600080fd5b610e058261186f565b600060208284031215611a0657600080fd5b8135610e0581611cb2565b600060208284031215611a2357600080fd5b8151610e0581611cb2565b600060208284031215611a4057600080fd5b813567ffffffffffffffff811115611a5757600080fd5b8201601f81018413611a6857600080fd5b6115fb848235602084016117dd565b600060208284031215611a8957600080fd5b5035919050565b60008151808452611aa8816020860160208601611bc4565b601f01601f19169290920160200192915050565b60008351611ace818460208801611bc4565b835190830190611ae2818360208801611bc4565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611b456080830184611a90565b9695505050505050565b602081526000610e056020830184611a90565b60008219821115611b7557611b75611c5a565b500190565b600082611b8957611b89611c70565b500490565b6000816000190483118215151615611ba857611ba8611c5a565b500290565b600082821015611bbf57611bbf611c5a565b500390565b60005b83811015611bdf578181015183820152602001611bc7565b83811115610d795750506000910152565b600181811c90821680611c0457607f821691505b60208210811415611c2557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c3f57611c3f611c5a565b5060010190565b600082611c5557611c55611c70565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109a157600080fdfe697066733a2f2f516d53474258624d3244447a3932644845427761417056384253657474634a6e47527a375636633345424462676a2f312e6a736f6ea26469706673582212202c3a323f8bd2cc51e8e4527ea32b8d4143e0b6939910ed5b415f4dad4c5e151a64736f6c63430008070033

Deployed Bytecode Sourcemap

73132:2439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37586:305;;;;;;;;;;-1:-1:-1;37586:305:0;;;;;:::i;:::-;;:::i;:::-;;;6349:14:1;;6342:22;6324:41;;6312:2;6297:18;37586:305:0;;;;;;;;75477:87;;;;;;;;;;-1:-1:-1;75477:87:0;;;;;:::i;:::-;;:::i;:::-;;40638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42141:204::-;;;;;;;;;;-1:-1:-1;42141:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5601:55:1;;;5583:74;;5571:2;5556:18;42141:204:0;5437:226:1;41704:371:0;;;;;;;;;;-1:-1:-1;41704:371:0;;;;;:::i;:::-;;:::i;73322:36::-;;;;;;;;;;;;;;;;;;;8199:25:1;;;8187:2;8172:18;73322:36:0;8053:177:1;36835:303:0;;;;;;;;;;-1:-1:-1;36692:1:0;37089:12;36879:7;37073:13;:28;-1:-1:-1;;37073:46:0;36835:303;;43006:170;;;;;;;;;;-1:-1:-1;43006:170:0;;;;;:::i;:::-;;:::i;73684:372::-;;;;;;:::i;:::-;;:::i;75070:174::-;;;:::i;43247:185::-;;;;;;;;;;-1:-1:-1;43247:185:0;;;;;:::i;:::-;;:::i;74968:94::-;;;;;;;;;;-1:-1:-1;74968:94:0;;;;;:::i;:::-;;:::i;73225:90::-;;;;;;;;;;;;;:::i;74764:196::-;;;;;;;;;;-1:-1:-1;74764:196:0;;;;;:::i;:::-;;:::i;74250:108::-;;;;;;;;;;-1:-1:-1;74250:108:0;;;;;:::i;:::-;;:::i;75252:110::-;;;;;;;;;;-1:-1:-1;75252:110:0;;;;;:::i;:::-;;:::i;40446:125::-;;;;;;;;;;-1:-1:-1;40446:125:0;;;;;:::i;:::-;;:::i;37955:145::-;;;;;;;;;;-1:-1:-1;37955:145:0;;;;;:::i;:::-;-1:-1:-1;;;;;38064:19:0;38019:7;38064:19;;;:12;:19;;;;;:27;;;;37955:145;2590:103;;;;;;;;;;;;;:::i;1939:87::-;;;;;;;;;;-1:-1:-1;2012:6:0;;-1:-1:-1;;;;;2012:6:0;1939:87;;75371:98;;;;;;;;;;-1:-1:-1;75371:98:0;;;;;:::i;:::-;;:::i;40807:104::-;;;;;;;;;;;;;:::i;42417:287::-;;;;;;;;;;-1:-1:-1;42417:287:0;;;;;:::i;:::-;;:::i;43503:369::-;;;;;;;;;;-1:-1:-1;43503:369:0;;;;;:::i;:::-;;:::i;74366:358::-;;;;;;;;;;-1:-1:-1;74366:358:0;;;;;:::i;:::-;;:::i;42775:164::-;;;;;;;;;;-1:-1:-1;42775:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42896:25:0;;;42872:4;42896:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42775:164;2848:201;;;;;;;;;;-1:-1:-1;2848:201:0;;;;;:::i;:::-;;:::i;37586:305::-;37688:4;-1:-1:-1;;;;;;37725:40:0;;37740:25;37725:40;;:105;;-1:-1:-1;;;;;;;37782:48:0;;37797:33;37782:48;37725:105;:158;;;-1:-1:-1;33287:25:0;-1:-1:-1;;;;;;33272:40:0;;;37847:36;37705:178;37586:305;-1:-1:-1;;37586:305:0:o;75477:87::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;;;;;;;;;75541:6:::1;:15:::0;;-1:-1:-1;;75541:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75477:87::o;40638:100::-;40692:13;40725:5;40718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40638:100;:::o;42141:204::-;42209:7;42234:16;42242:7;42234;:16::i;:::-;42229:64;;42259:34;;;;;;;;;;;;;;42229:64;-1:-1:-1;42313:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42313:24:0;;42141:204::o;41704:371::-;41777:13;41793:24;41809:7;41793:15;:24::i;:::-;41777:40;;41838:5;-1:-1:-1;;;;;41832:11:0;:2;-1:-1:-1;;;;;41832:11:0;;41828:48;;;41852:24;;;;;;;;;;;;;;41828:48;736:10;-1:-1:-1;;;;;41893:21:0;;;;;;:63;;-1:-1:-1;41919:37:0;41936:5;736:10;42775:164;:::i;41919:37::-;41918:38;41893:63;41889:138;;;41980:35;;;;;;;;;;;;;;41889:138;42039:28;42048:2;42052:7;42061:5;42039:8;:28::i;:::-;41766:309;41704:371;;:::o;43006:170::-;43140:28;43150:4;43156:2;43160:7;43140:9;:28::i;73684:372::-;73753:7;37464:13;73801:4;;73824:6;;-1:-1:-1;;37464:31:0;;;;73824:6;;:13;73816:22;;;;;;73868:5;73857:8;73862:3;73857:2;:8;:::i;:::-;:16;73849:42;;;;-1:-1:-1;;;73849:42:0;;7913:2:1;73849:42:0;;;7895:21:1;7952:2;7932:18;;;7925:30;-1:-1:-1;;;7971:18:1;;;7964:43;8024:18;;73849:42:0;7711:337:1;73849:42:0;73926:11;73932:5;73926:3;:11;:::i;:::-;73910:13;:9;73922:1;73910:13;:::i;:::-;:27;73902:54;;;;-1:-1:-1;;;73902:54:0;;7209:2:1;73902:54:0;;;7191:21:1;7248:2;7228:18;;;7221:30;7287:16;7267:18;;;7260:44;7321:18;;73902:54:0;7007:338:1;73902:54:0;74011:30;74017:10;74029:3;74011:30;;;;;;;;;;;;74036:4;74011:5;:30::i;75070:174::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;75151:58:::1;::::0;75133:12:::1;::::0;75159:10:::1;::::0;75183:21:::1;::::0;75133:12;75151:58;75133:12;75151:58;75183:21;75159:10;75151:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75132:77;;;75228:7;75220:16;;;::::0;::::1;;75121:123;75070:174::o:0;43247:185::-;43385:39;43402:4;43408:2;43412:7;43385:39;;;;;;;;;;;;:16;:39::i;74968:94::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;75039:4:::1;:15:::0;74968:94::o;73225:90::-;;;;;;;;;;;;;;;;;;;:::o;74764:196::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;74877:5:::1;74872:3;74855:14;37278:7:::0;37464:13;-1:-1:-1;;37464:31:0;;37231:283;74855:14:::1;:20;;;;:::i;:::-;:27;74847:53;;;::::0;-1:-1:-1;;;74847:53:0;;7913:2:1;74847:53:0::1;::::0;::::1;7895:21:1::0;7952:2;7932:18;;;7925:30;-1:-1:-1;;;7971:18:1;;;7964:43;8024:18;;74847:53:0::1;7711:337:1::0;74847:53:0::1;74921:31;74927:9;74938:3;74921:31;;;;;;;;;;;::::0;74947:4:::1;74921:5;:31::i;:::-;74764:196:::0;;:::o;74250:108::-;74304:4;74334:16;74342:7;74334;:16::i;75252:110::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;75331:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;40446:125::-:0;40510:7;40537:21;40550:7;40537:12;:21::i;:::-;:26;;40446:125;-1:-1:-1;;40446:125:0:o;2590:103::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;2655:30:::1;2682:1;2655:18;:30::i;:::-;2590:103::o:0;75371:98::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;75436:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;75436:17:0;;::::1;::::0;;;::::1;::::0;;75371:98::o;40807:104::-;40863:13;40896:7;40889:14;;;;;:::i;42417:287::-;-1:-1:-1;;;;;42516:24:0;;736:10;42516:24;42512:54;;;42549:17;;;;;;;;;;;;;;42512:54;736:10;42579:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42579:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42579:53:0;;;;;;;;;;42648:48;;6324:41:1;;;42579:42:0;;736:10;42648:48;;6297:18:1;42648:48:0;;;;;;;42417:287;;:::o;43503:369::-;43670:28;43680:4;43686:2;43690:7;43670:9;:28::i;:::-;-1:-1:-1;;;;;43713:13:0;;10597:19;:23;;43713:76;;;;;43733:56;43764:4;43770:2;43774:7;43783:5;43733:30;:56::i;:::-;43732:57;43713:76;43709:156;;;43813:40;;-1:-1:-1;;;43813:40:0;;;;;;;;;;;43709:156;43503:369;;;;:::o;74366:358::-;74469:8;;74436:13;;74469:8;;;;;74466:60;;74514:2;;;;;;;;;;;;;;;;;74507:9;74366:358;-1:-1:-1;;74366:358:0:o;74466:60::-;74534:28;74565:10;:8;:10::i;:::-;74534:41;;74620:1;74595:14;74589:28;:32;:127;;;;;;;;;;;;;;;;;74657:14;74673:18;:7;:16;:18::i;:::-;74640:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74589:127;74582:134;74366:358;-1:-1:-1;;;74366:358:0:o;2848:201::-;2012:6;;-1:-1:-1;;;;;2012:6:0;736:10;2159:23;2151:68;;;;-1:-1:-1;;;2151:68:0;;7552:2:1;2151:68:0;;;7534:21:1;;;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;7682:18;;2151:68:0;7350:356:1;2151:68:0;-1:-1:-1;;;;;2937:22:0;::::1;2929:73;;;::::0;-1:-1:-1;;;2929:73:0;;6802:2:1;2929:73:0::1;::::0;::::1;6784:21:1::0;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;6951:8;6931:18;;;6924:36;6977:19;;2929:73:0::1;6600:402:1::0;2929:73:0::1;3013:28;3032:8;3013:18;:28::i;10302:326::-:0;-1:-1:-1;;;;;10597:19:0;;:23;;;10302:326::o;44127:174::-;44184:4;44227:7;36692:1;44208:26;;:53;;;;;44248:13;;44238:7;:23;44208:53;:85;;;;-1:-1:-1;;44266:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44266:27:0;;;;44265:28;;44127:174::o;52230:196::-;52345:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;52345:29:0;-1:-1:-1;;;;;52345:29:0;;;;;;;;;52390:28;;52345:24;;52390:28;;;;;;;52230:196;;;:::o;47215:2088::-;47330:35;47368:21;47381:7;47368:12;:21::i;:::-;47330:59;;47428:4;-1:-1:-1;;;;;47406:26:0;:13;:18;;;-1:-1:-1;;;;;47406:26:0;;47402:67;;47441:28;;;;;;;;;;;;;;47402:67;47482:22;736:10;-1:-1:-1;;;;;47508:20:0;;;;:73;;-1:-1:-1;47545:36:0;47562:4;736:10;42775:164;:::i;47545:36::-;47508:126;;;-1:-1:-1;736:10:0;47598:20;47610:7;47598:11;:20::i;:::-;-1:-1:-1;;;;;47598:36:0;;47508:126;47482:153;;47653:17;47648:66;;47679:35;;;;;;;;;;;;;;47648:66;-1:-1:-1;;;;;47729:16:0;;47725:52;;47754:23;;;;;;;;;;;;;;47725:52;47898:35;47915:1;47919:7;47928:4;47898:8;:35::i;:::-;-1:-1:-1;;;;;48229:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48229:31:0;;;;;;;-1:-1:-1;;48229:31:0;;;;;;;48275:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48275:29:0;;;;;;;;;;;48355:20;;;:11;:20;;;;;;48390:18;;-1:-1:-1;;;;;;48423:49:0;;;;-1:-1:-1;;;48456:15:0;48423:49;;;;;;;;;;48746:11;;48806:24;;;;;48849:13;;48355:20;;48806:24;;48849:13;48845:384;;49059:13;;49044:11;:28;49040:174;;49097:20;;49166:28;;;;49140:54;;-1:-1:-1;;;49140:54:0;-1:-1:-1;;;;;;49140:54:0;;;-1:-1:-1;;;;;49097:20:0;;49140:54;;;;49040:174;48204:1036;;;49253:42;47319:1984;;47215:2088;;;:::o;45198:1763::-;45347:20;45370:13;45408;45404:44;;45430:18;;;;;;;;;;;;;;45404:44;-1:-1:-1;;;;;45826:16:0;;;;;;:12;:16;;;;;;;;:44;;45885:49;;;45826:44;;;;;;;;45885:49;;;;-1:-1:-1;;45826:44:0;;;;;;45885:49;;;;;;;;;;;;;;;;45951:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46001:66:0;;;;-1:-1:-1;;;46051:15:0;46001:66;;;;;;;;;;45951:25;46148:23;;;46192:4;:23;;;;-1:-1:-1;;;;;;46200:13:0;;10597:19;:23;;46200:15;46188:641;;;46236:314;46267:38;;46292:12;;-1:-1:-1;;;;;46267:38:0;;;46284:1;;46267:38;;46284:1;;46267:38;46333:69;46372:1;46376:2;46380:14;;;;;;46396:5;46333:30;:69::i;:::-;46328:174;;46438:40;;-1:-1:-1;;;46438:40:0;;;;;;;;;;;46328:174;46545:3;46529:12;:19;;46236:314;;46631:12;46614:13;;:29;46610:43;;46645:8;;;46610:43;46188:641;;;46694:120;46725:40;;46750:14;;;;;-1:-1:-1;;;;;46725:40:0;;;46742:1;;46725:40;;46742:1;;46725:40;46809:3;46793:12;:19;;46694:120;;46188:641;-1:-1:-1;46843:13:0;:28;46893:60;43503:369;39275:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39386:7:0;;36692:1;39435:23;;:47;;;;;39469:13;;39462:4;:20;39435:47;39431:886;;;39503:31;39537:17;;;:11;:17;;;;;;;;;39503:51;;;;;;;;;-1:-1:-1;;;;;39503:51:0;;;;-1:-1:-1;;;39503:51:0;;;;;;;;;;;-1:-1:-1;;;39503:51:0;;;;;;;;;;;;;;39573:729;;39623:14;;-1:-1:-1;;;;;39623:28:0;;39619:101;;39687:9;39275:1109;-1:-1:-1;;;39275:1109:0:o;39619:101::-;-1:-1:-1;;;40062:6:0;40107:17;;;;:11;:17;;;;;;;;;40095:29;;;;;;;;;-1:-1:-1;;;;;40095:29:0;;;;;-1:-1:-1;;;40095:29:0;;;;;;;;;;;-1:-1:-1;;;40095:29:0;;;;;;;;;;;;;40155:28;40151:109;;40223:9;39275:1109;-1:-1:-1;;;39275:1109:0:o;40151:109::-;40022:261;;;39484:833;39431:886;40345:31;;;;;;;;;;;;;;3209:191;3302:6;;;-1:-1:-1;;;;;3319:17:0;;;-1:-1:-1;;3319:17:0;;;;;;;3352:40;;3302:6;;;3319:17;3302:6;;3352:40;;3283:16;;3352:40;3272:128;3209:191;:::o;52918:667::-;53102:72;;-1:-1:-1;;;53102:72:0;;53081:4;;-1:-1:-1;;;;;53102:36:0;;;;;:72;;736:10;;53153:4;;53159:7;;53168:5;;53102:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53102:72:0;;;;;;;;-1:-1:-1;;53102:72:0;;;;;;;;;;;;:::i;:::-;;;53098:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53336:13:0;;53332:235;;53382:40;;-1:-1:-1;;;53382:40:0;;;;;;;;;;;53332:235;53525:6;53519:13;53510:6;53506:2;53502:15;53495:38;53098:480;-1:-1:-1;;;;;;53221:55:0;-1:-1:-1;;;53221:55:0;;-1:-1:-1;53098:480:0;52918:667;;;;;;:::o;74122:120::-;74182:13;74221;74214:20;;;;;:::i;30533:723::-;30589:13;30810:10;30806:53;;-1:-1:-1;;30837:10:0;;;;;;;;;;;;;;;;;;30533:723::o;30806:53::-;30884:5;30869:12;30925:78;30932:9;;30925:78;;30958:8;;;;:::i;:::-;;-1:-1:-1;30981:10:0;;-1:-1:-1;30989:2:0;30981:10;;:::i;:::-;;;30925:78;;;31013:19;31045:6;31035:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31035:17:0;;31013:39;;31063:154;31070:10;;31063:154;;31097:11;31107:1;31097:11;;:::i;:::-;;-1:-1:-1;31166:10:0;31174:2;31166:5;:10;:::i;:::-;31153:24;;:2;:24;:::i;:::-;31140:39;;31123:6;31130;31123:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;31194:11:0;31203:2;31194:11;;:::i;:::-;;;31063:154;;-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:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:52;;;3567:1;3564;3557:12;3519:52;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3861:9;3848:23;3894:18;3886:6;3883:30;3880:50;;;3926:1;3923;3916:12;3880:50;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:55:1;;4031:1;4028;4021:12;3980:55;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:180::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;-1:-1:-1;4289:23:1;;4138:180;-1:-1:-1;4138:180:1:o;4323:257::-;4364:3;4402:5;4396:12;4429:6;4424:3;4417:19;4445:63;4501:6;4494:4;4489:3;4485:14;4478:4;4471:5;4467:16;4445:63;:::i;:::-;4562:2;4541:15;-1:-1:-1;;4537:29:1;4528:39;;;;4569:4;4524:50;;4323:257;-1:-1:-1;;4323:257:1:o;4585:637::-;4865:3;4903:6;4897:13;4919:53;4965:6;4960:3;4953:4;4945:6;4941:17;4919:53;:::i;:::-;5035:13;;4994:16;;;;5057:57;5035:13;4994:16;5091:4;5079:17;;5057:57;:::i;:::-;5179:7;5136:20;;5165:22;;;5214:1;5203:13;;4585:637;-1:-1:-1;;;;4585:637:1:o;5668:511::-;5862:4;-1:-1:-1;;;;;5972:2:1;5964:6;5960:15;5949:9;5942:34;6024:2;6016:6;6012:15;6007:2;5996:9;5992:18;5985:43;;6064:6;6059:2;6048:9;6044:18;6037:34;6107:3;6102:2;6091:9;6087:18;6080:31;6128:45;6168:3;6157:9;6153:19;6145:6;6128:45;:::i;:::-;6120:53;5668:511;-1:-1:-1;;;;;;5668:511:1:o;6376:219::-;6525:2;6514:9;6507:21;6488:4;6545:44;6585:2;6574:9;6570:18;6562:6;6545:44;:::i;8235:128::-;8275:3;8306:1;8302:6;8299:1;8296:13;8293:39;;;8312:18;;:::i;:::-;-1:-1:-1;8348:9:1;;8235:128::o;8368:120::-;8408:1;8434;8424:35;;8439:18;;:::i;:::-;-1:-1:-1;8473:9:1;;8368:120::o;8493:168::-;8533:7;8599:1;8595;8591:6;8587:14;8584:1;8581:21;8576:1;8569:9;8562:17;8558:45;8555:71;;;8606:18;;:::i;:::-;-1:-1:-1;8646:9:1;;8493:168::o;8666:125::-;8706:4;8734:1;8731;8728:8;8725:34;;;8739:18;;:::i;:::-;-1:-1:-1;8776:9:1;;8666:125::o;8796:258::-;8868:1;8878:113;8892:6;8889:1;8886:13;8878:113;;;8968:11;;;8962:18;8949:11;;;8942:39;8914:2;8907:10;8878:113;;;9009:6;9006:1;9003:13;9000:48;;;-1:-1:-1;;9044:1:1;9026:16;;9019:27;8796:258::o;9059:437::-;9138:1;9134:12;;;;9181;;;9202:61;;9256:4;9248:6;9244:17;9234:27;;9202:61;9309:2;9301:6;9298:14;9278:18;9275:38;9272:218;;;-1:-1:-1;;;9343:1:1;9336:88;9447:4;9444:1;9437:15;9475:4;9472:1;9465:15;9272:218;;9059:437;;;:::o;9501:135::-;9540:3;-1:-1:-1;;9561:17:1;;9558:43;;;9581:18;;:::i;:::-;-1:-1:-1;9628:1:1;9617:13;;9501:135::o;9641:112::-;9673:1;9699;9689:35;;9704:18;;:::i;:::-;-1:-1:-1;9738:9:1;;9641:112::o;9758:184::-;-1:-1:-1;;;9807:1:1;9800:88;9907:4;9904:1;9897:15;9931:4;9928:1;9921:15;9947:184;-1:-1:-1;;;9996:1:1;9989:88;10096:4;10093:1;10086:15;10120:4;10117:1;10110:15;10136:184;-1:-1:-1;;;10185:1:1;10178:88;10285:4;10282:1;10275:15;10309:4;10306:1;10299:15;10325:184;-1:-1:-1;;;10374:1:1;10367:88;10474:4;10471:1;10464:15;10498:4;10495:1;10488:15;10514:177;-1:-1:-1;;;;;;10592:5:1;10588:78;10581:5;10578:89;10568:117;;10681:1;10678;10671:12

Swarm Source

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