ETH Price: $2,283.44 (+2.28%)

Token

Phloodles (PHLOODLE)
 

Overview

Max Total Supply

20 PHLOODLE

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
flowtradertm.eth
Balance
1 PHLOODLE
0x3765240be64af984bc5bb3b6a2988e431d668f6b
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:
Phloodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-31
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity 0.8.7;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity 0.8.7;

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

pragma solidity 0.8.7;
/**
 * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity 0.8.7;

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity 0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity 0.8.7;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity 0.8.7;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity 0.8.7;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity 0.8.7;

/// @title Phloodles
contract Phloodles is Ownable, ERC721Enumerable {

    using Address for address;
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    
    string private baseTokenURI = "https://gateway.pinata.cloud/ipfs/QmZgXKiNFeCbXUt3WuA6N7qv31MRW13FDNCyp22DCrndar/"; 
    uint256 public price = 12300000000000000;
    uint256 public ERC20price = 10000000;
    uint256 public maxCount = 10000;
    IERC20 private erc20Token;
    bool public publicMint;
    address private withdrawaddr;

    constructor(
        address _initwithdrawaddr,
        address _initERC20TokenAddress
    ) ERC721("Phloodles", "PHLOODLE") { 
        withdrawaddr = _initwithdrawaddr;
        erc20Token = IERC20(_initERC20TokenAddress);
    }
    function mintEnabled() public view returns (bool) {
        return publicMint;
    }
    function setAddr(address newAddress) public onlyOwner {
        withdrawaddr = newAddress;
    }
    function setBaseURI(string memory newURI) public onlyOwner {
        baseTokenURI = newURI;
    }
    function togglePublicMint() public onlyOwner {
        publicMint = !publicMint;
    }
    function AirDrop(address[] calldata _Recipients, uint256 [] calldata _Quantity) public onlyOwner {
        uint256  totalAirDrops = 0;
        for(uint256 t; t < _Quantity.length; t.add(1)){
            totalAirDrops = totalAirDrops.add(_Quantity[t]);
        }
        require(publicMint, "minting must be active.");
        require(totalAirDrops <= maxCount.sub(totalSupply()), string(abi.encodePacked("No tokens remaining.")));
        for(uint256 i; i < _Recipients.length; i.add(1)){
            _AirDropMint(_Recipients[i], _Quantity[i]);
        }
    }
    function _AirDropMint(address _To, uint256  _Amount) private {
        uint256 activeSupply = totalSupply();
        for(uint256 i = 1; i <= _Amount; i++) {
            _safeMint(_To, activeSupply.add(i));
        }
    }
    function ERC20Mint(uint256 _NumberOfMints) public payable {
        uint256 activeSupply = totalSupply();
        require(publicMint, "minting must be active");
        require(_NumberOfMints <= 20, "Max 20 mints per transaction");
        require(activeSupply.add(_NumberOfMints) <= maxCount, "No tokens remaining.");

        uint256 cost = (_NumberOfMints.mul(ERC20price)).mul(1e18);
        SafeERC20.safeTransferFrom(erc20Token, msg.sender, address(this), cost);
        
        for(uint256 i = 1; i <= _NumberOfMints; i++) {
            _safeMint(msg.sender, activeSupply.add(i));
        }
    }
    function Mint(uint256 _NumberOfMints) public payable {
        uint256 activeSupply = totalSupply();
        require(publicMint, "Public sale must be active");
        require(_NumberOfMints <= 20, "Max 20 mints per transaction");
        require(activeSupply.add(_NumberOfMints) <= maxCount, "No tokens remaining.");
        require(price.mul(_NumberOfMints) == msg.value, "Ether value sent is not correct");
        for(uint256 i = 1; i <= _NumberOfMints; i++) {
            _safeMint(msg.sender, activeSupply.add(i));
        }
    }
    function tokenURI(uint256 _TokenId) public view virtual override returns (string memory) {
        require(_exists(_TokenId), "token does not exist");
        return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, Strings.toString(_TokenId))): "";
    }
    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Contract balance is empty");
        _safewithdraw(withdrawaddr, address(this).balance);
    } 
    function _safewithdraw(address _address, uint256 _amount) private {
        (bool success,) = _address.call{value : _amount}("");
        require(success, "Transfer failed.");
    }
    function withdrawERC20() public payable onlyOwner {
        uint256 balance = erc20Token.balanceOf(address(this));
        require(balance > 0, "Contract balance is empty");
        SafeERC20.safeTransfer(erc20Token, withdrawaddr, erc20Token.balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_initwithdrawaddr","type":"address"},{"internalType":"address","name":"_initERC20TokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_Recipients","type":"address[]"},{"internalType":"uint256[]","name":"_Quantity","type":"uint256[]"}],"name":"AirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NumberOfMints","type":"uint256"}],"name":"ERC20Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ERC20price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NumberOfMints","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setAddr","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[],"name":"withdrawERC20","outputs":[],"stateMutability":"payable","type":"function"}]

610100604052605160808181529062002cf360a03980516200002a91600b9160209091019062000188565b50662bb2c8eabcc000600c5562989680600d55612710600e553480156200005057600080fd5b5060405162002d4438038062002d4483398101604081905262000073916200024b565b6040518060400160405280600981526020016850686c6f6f646c657360b81b8152506040518060400160405280600881526020016750484c4f4f444c4560c01b815250620000d0620000ca6200013460201b60201c565b62000138565b8151620000e590600190602085019062000188565b508051620000fb90600290602084019062000188565b5050601080546001600160a01b039485166001600160a01b031991821617909155600f80549390941692169190911790915550620002c0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001969062000283565b90600052602060002090601f016020900481019282620001ba576000855562000205565b82601f10620001d557805160ff191683800117855562000205565b8280016001018555821562000205579182015b8281111562000205578251825591602001919060010190620001e8565b506200021392915062000217565b5090565b5b8082111562000213576000815560010162000218565b80516001600160a01b03811681146200024657600080fd5b919050565b600080604083850312156200025f57600080fd5b6200026a836200022e565b91506200027a602084016200022e565b90509250929050565b600181811c908216806200029857607f821691505b60208210811415620002ba57634e487b7160e01b600052602260045260246000fd5b50919050565b612a2380620002d06000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a25307fd11610095578063d1d80fdf11610064578063d1d80fdf1461051a578063e985e9c51461053a578063f2fde38b14610583578063f3ffffee146105a357600080fd5b8063a25307fd146104a5578063b88d4fde146104bb578063c87b56dd146104db578063d1239730146104fb57600080fd5b806395d89b41116100d157806395d89b41146104445780639ef2d87a14610459578063a035b1fe1461046f578063a22cb4651461048557600080fd5b80636352211e146103d157806370a08231146103f1578063715018a6146104115780638da5cb5b1461042657600080fd5b80632ed6d5e81161017a57806342842e0e1161014957806342842e0e146103515780634f6ccce71461037157806351524e5b1461039157806355f804b3146103b157600080fd5b80632ed6d5e81461030c5780632f745c59146103145780633ccfd60b146103345780634047638d1461033c57600080fd5b8063095ea7b3116101b6578063095ea7b31461028c57806318160ddd146102ac57806323b872dd146102cb57806326092b83146102eb57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063078837031461023f578063081812fc14610254575b600080fd5b3480156101f457600080fd5b5061020861020336600461257b565b6105b6565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105e1565b6040516102149190612778565b61025261024d3660046125fe565b610673565b005b34801561026057600080fd5b5061027461026f3660046125fe565b610812565b6040516001600160a01b039091168152602001610214565b34801561029857600080fd5b506102526102a73660046124c8565b6108a7565b3480156102b857600080fd5b506009545b604051908152602001610214565b3480156102d757600080fd5b506102526102e63660046123d9565b6109b8565b3480156102f757600080fd5b50600f5461020890600160a01b900460ff1681565b6102526109e9565b34801561032057600080fd5b506102bd61032f3660046124c8565b610b6b565b610252610c01565b34801561034857600080fd5b50610252610c8b565b34801561035d57600080fd5b5061025261036c3660046123d9565b610cd6565b34801561037d57600080fd5b506102bd61038c3660046125fe565b610cf1565b34801561039d57600080fd5b506102526103ac3660046124f2565b610d84565b3480156103bd57600080fd5b506102526103cc3660046125b5565b610f2e565b3480156103dd57600080fd5b506102746103ec3660046125fe565b610f6f565b3480156103fd57600080fd5b506102bd61040c36600461238b565b610fe6565b34801561041d57600080fd5b5061025261106d565b34801561043257600080fd5b506000546001600160a01b0316610274565b34801561045057600080fd5b506102326110a3565b34801561046557600080fd5b506102bd600e5481565b34801561047b57600080fd5b506102bd600c5481565b34801561049157600080fd5b506102526104a0366004612491565b6110b2565b3480156104b157600080fd5b506102bd600d5481565b3480156104c757600080fd5b506102526104d6366004612415565b6110bd565b3480156104e757600080fd5b506102326104f63660046125fe565b6110f5565b34801561050757600080fd5b50600f54600160a01b900460ff16610208565b34801561052657600080fd5b5061025261053536600461238b565b6111af565b34801561054657600080fd5b506102086105553660046123a6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058f57600080fd5b5061025261059e36600461238b565b6111fb565b6102526105b13660046125fe565b611293565b60006001600160e01b0319821663780e9d6360e01b14806105db57506105db82611404565b92915050565b6060600180546105f0906128f1565b80601f016020809104026020016040519081016040528092919081815260200182805461061c906128f1565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b600061067e60095490565b600f54909150600160a01b900460ff166106df5760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206d7573742062652061637469766500000000000060448201526064015b60405180910390fd5b60148211156107305760405162461bcd60e51b815260206004820152601c60248201527f4d6178203230206d696e747320706572207472616e73616374696f6e0000000060448201526064016106d6565b600e5461073d8284611454565b11156107825760405162461bcd60e51b81526020600482015260146024820152732737903a37b5b2b739903932b6b0b4b734b7339760611b60448201526064016106d6565b600c5434906107919084611467565b146107de5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106d6565b60015b82811161080d576107fb336107f68484611454565b611473565b806108058161292c565b9150506107e1565b505050565b6000818152600360205260408120546001600160a01b031661088b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d6565b506000908152600560205260409020546001600160a01b031690565b60006108b282610f6f565b9050806001600160a01b0316836001600160a01b031614156109205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d6565b336001600160a01b038216148061093c575061093c8133610555565b6109ae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d6565b61080d838361148d565b6109c233826114fb565b6109de5760405162461bcd60e51b81526004016106d690612812565b61080d8383836115f2565b6000546001600160a01b03163314610a135760405162461bcd60e51b81526004016106d6906127dd565b600f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610a5757600080fd5b505afa158015610a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8f9190612617565b905060008111610add5760405162461bcd60e51b8152602060048201526019602482015278436f6e74726163742062616c616e636520697320656d70747960381b60448201526064016106d6565b600f546010546040516370a0823160e01b8152306004820152610b68926001600160a01b0390811692169082906370a082319060240160206040518083038186803b158015610b2b57600080fd5b505afa158015610b3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b639190612617565b61179d565b50565b6000610b7683610fe6565b8210610bd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d6565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610c2b5760405162461bcd60e51b81526004016106d6906127dd565b4780610c755760405162461bcd60e51b8152602060048201526019602482015278436f6e74726163742062616c616e636520697320656d70747960381b60448201526064016106d6565b601054610b68906001600160a01b031647611800565b6000546001600160a01b03163314610cb55760405162461bcd60e51b81526004016106d6906127dd565b600f805460ff60a01b198116600160a01b9182900460ff1615909102179055565b61080d838383604051806020016040528060008152506110bd565b6000610cfc60095490565b8210610d5f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d6565b60098281548110610d7257610d7261299d565b90600052602060002001549050919050565b6000546001600160a01b03163314610dae5760405162461bcd60e51b81526004016106d6906127dd565b6000805b82811015610df857610de5848483818110610dcf57610dcf61299d565b905060200201358361145490919063ffffffff16565b9150610df2816001611454565b50610db2565b50600f54600160a01b900460ff16610e525760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e67206d757374206265206163746976652e00000000000000000060448201526064016106d6565b610e67610e5e60095490565b600e5490611896565b811115604051602001610e9490732737903a37b5b2b739903932b6b0b4b734b7339760611b815260140190565b60405160208183030381529060405290610ec15760405162461bcd60e51b81526004016106d69190612778565b5060005b84811015610f2657610f15868683818110610ee257610ee261299d565b9050602002016020810190610ef7919061238b565b858584818110610f0957610f0961299d565b905060200201356118a2565b610f20816001611454565b50610ec5565b505050505050565b6000546001600160a01b03163314610f585760405162461bcd60e51b81526004016106d6906127dd565b8051610f6b90600b906020840190612214565b5050565b6000818152600360205260408120546001600160a01b0316806105db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d6565b60006001600160a01b0382166110515760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d6565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110975760405162461bcd60e51b81526004016106d6906127dd565b6110a160006118d9565b565b6060600280546105f0906128f1565b610f6b338383611929565b6110c733836114fb565b6110e35760405162461bcd60e51b81526004016106d690612812565b6110ef848484846119f8565b50505050565b6000818152600360205260409020546060906001600160a01b03166111535760405162461bcd60e51b81526020600482015260146024820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106d6565b6000600b8054611162906128f1565b90501161117e57604051806020016040528060008152506105db565b600b61118983611a2b565b60405160200161119a929190612694565b60405160208183030381529060405292915050565b6000546001600160a01b031633146111d95760405162461bcd60e51b81526004016106d6906127dd565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112255760405162461bcd60e51b81526004016106d6906127dd565b6001600160a01b03811661128a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d6565b610b68816118d9565b600061129e60095490565b600f54909150600160a01b900460ff166112f35760405162461bcd60e51b81526020600482015260166024820152756d696e74696e67206d7573742062652061637469766560501b60448201526064016106d6565b60148211156113445760405162461bcd60e51b815260206004820152601c60248201527f4d6178203230206d696e747320706572207472616e73616374696f6e0000000060448201526064016106d6565b600e546113518284611454565b11156113965760405162461bcd60e51b81526020600482015260146024820152732737903a37b5b2b739903932b6b0b4b734b7339760611b60448201526064016106d6565b60006113bf670de0b6b3a76400006113b9600d548661146790919063ffffffff16565b90611467565b600f549091506113da906001600160a01b0316333084611b29565b60015b8381116110ef576113f2336107f68584611454565b806113fc8161292c565b9150506113dd565b60006001600160e01b031982166380ac58cd60e01b148061143557506001600160e01b03198216635b5e139f60e01b145b806105db57506301ffc9a760e01b6001600160e01b03198316146105db565b60006114608284612863565b9392505050565b6000611460828461288f565b610f6b828260405180602001604052806000815250611b61565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c282610f6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d6565b600061157f83610f6f565b9050806001600160a01b0316846001600160a01b031614806115ba5750836001600160a01b03166115af84610812565b6001600160a01b0316145b806115ea57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661160582610f6f565b6001600160a01b03161461166d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d6565b6001600160a01b0382166116cf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d6565b6116da838383611b94565b6116e560008261148d565b6001600160a01b038316600090815260046020526040812080546001929061170e9084906128ae565b90915550506001600160a01b038216600090815260046020526040812080546001929061173c908490612863565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6040516001600160a01b03831660248201526044810182905261080d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611c4c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461184d576040519150601f19603f3d011682016040523d82523d6000602084013e611852565b606091505b505090508061080d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106d6565b600061146082846128ae565b60006118ad60095490565b905060015b8281116110ef576118c7846107f68484611454565b806118d18161292c565b9150506118b2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561198b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d6565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a038484846115f2565b611a0f84848484611d1e565b6110ef5760405162461bcd60e51b81526004016106d69061278b565b606081611a4f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a795780611a638161292c565b9150611a729050600a8361287b565b9150611a53565b60008167ffffffffffffffff811115611a9457611a946129b3565b6040519080825280601f01601f191660200182016040528015611abe576020820181803683370190505b5090505b84156115ea57611ad36001836128ae565b9150611ae0600a86612947565b611aeb906030612863565b60f81b818381518110611b0057611b0061299d565b60200101906001600160f81b031916908160001a905350611b22600a8661287b565b9450611ac2565b6040516001600160a01b03808516602483015283166044820152606481018290526110ef9085906323b872dd60e01b906084016117c9565b611b6b8383611e2b565b611b786000848484611d1e565b61080d5760405162461bcd60e51b81526004016106d69061278b565b6001600160a01b038316611bef57611bea81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c12565b816001600160a01b0316836001600160a01b031614611c1257611c128382611f79565b6001600160a01b038216611c295761080d81612016565b826001600160a01b0316826001600160a01b03161461080d5761080d82826120c5565b6000611ca1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121099092919063ffffffff16565b80519091501561080d5780806020019051810190611cbf919061255e565b61080d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106d6565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6290339089908890889060040161273b565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da991810190612598565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b81526004016106d69061278b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ea565b506001949350505050565b6001600160a01b038216611e815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d6565b6000818152600360205260409020546001600160a01b031615611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d6565b611ef260008383611b94565b6001600160a01b0382166000908152600460205260408120805460019290611f1b908490612863565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f8684610fe6565b611f9091906128ae565b600083815260086020526040902054909150808214611fe3576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612028906001906128ae565b6000838152600a6020526040812054600980549394509092849081106120505761205061299d565b9060005260206000200154905080600983815481106120715761207161299d565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120a9576120a9612987565b6001900381819060005260206000200160009055905550505050565b60006120d083610fe6565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60606115ea848460008585843b6121625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106d6565b600080866001600160a01b0316858760405161217e9190612678565b60006040518083038185875af1925050503d80600081146121bb576040519150601f19603f3d011682016040523d82523d6000602084013e6121c0565b606091505b50915091506121d08282866121db565b979650505050505050565b606083156121ea575081611460565b8251156121fa5782518084602001fd5b8160405162461bcd60e51b81526004016106d69190612778565b828054612220906128f1565b90600052602060002090601f0160209004810192826122425760008555612288565b82601f1061225b57805160ff1916838001178555612288565b82800160010185558215612288579182015b8281111561228857825182559160200191906001019061226d565b50612294929150612298565b5090565b5b808211156122945760008155600101612299565b600067ffffffffffffffff808411156122c8576122c86129b3565b604051601f8501601f19908116603f011681019082821181831017156122f0576122f06129b3565b8160405280935085815286868601111561230957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461233a57600080fd5b919050565b60008083601f84011261235157600080fd5b50813567ffffffffffffffff81111561236957600080fd5b6020830191508360208260051b850101111561238457600080fd5b9250929050565b60006020828403121561239d57600080fd5b61146082612323565b600080604083850312156123b957600080fd5b6123c283612323565b91506123d060208401612323565b90509250929050565b6000806000606084860312156123ee57600080fd5b6123f784612323565b925061240560208501612323565b9150604084013590509250925092565b6000806000806080858703121561242b57600080fd5b61243485612323565b935061244260208601612323565b925060408501359150606085013567ffffffffffffffff81111561246557600080fd5b8501601f8101871361247657600080fd5b612485878235602084016122ad565b91505092959194509250565b600080604083850312156124a457600080fd5b6124ad83612323565b915060208301356124bd816129c9565b809150509250929050565b600080604083850312156124db57600080fd5b6124e483612323565b946020939093013593505050565b6000806000806040858703121561250857600080fd5b843567ffffffffffffffff8082111561252057600080fd5b61252c8883890161233f565b9096509450602087013591508082111561254557600080fd5b506125528782880161233f565b95989497509550505050565b60006020828403121561257057600080fd5b8151611460816129c9565b60006020828403121561258d57600080fd5b8135611460816129d7565b6000602082840312156125aa57600080fd5b8151611460816129d7565b6000602082840312156125c757600080fd5b813567ffffffffffffffff8111156125de57600080fd5b8201601f810184136125ef57600080fd5b6115ea848235602084016122ad565b60006020828403121561261057600080fd5b5035919050565b60006020828403121561262957600080fd5b5051919050565b600081518084526126488160208601602086016128c5565b601f01601f19169290920160200192915050565b6000815161266e8185602086016128c5565b9290920192915050565b6000825161268a8184602087016128c5565b9190910192915050565b600080845481600182811c9150808316806126b057607f831692505b60208084108214156126d057634e487b7160e01b86526022600452602486fd5b8180156126e457600181146126f557612722565b60ff19861689528489019650612722565b60008b81526020902060005b8681101561271a5781548b820152908501908301612701565b505084890196505b505050505050612732818561265c565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276e90830184612630565b9695505050505050565b6020815260006114606020830184612630565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128765761287661295b565b500190565b60008261288a5761288a612971565b500490565b60008160001904831182151516156128a9576128a961295b565b500290565b6000828210156128c0576128c061295b565b500390565b60005b838110156128e05781810151838201526020016128c8565b838111156110ef5750506000910152565b600181811c9082168061290557607f821691505b6020821081141561292657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129405761294061295b565b5060010190565b60008261295657612956612971565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610b6857600080fd5b6001600160e01b031981168114610b6857600080fdfea26469706673582212205247a1e675dfab8706d0f106071446f81710d63f46a460ff4d2ae149571f701364736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a67584b694e4665436258557433577541364e37717633314d5257313346444e43797032324443726e6461722f000000000000000000000000aa2f4b87c774d5e47c55d0be5533c63dd56ffff50000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a25307fd11610095578063d1d80fdf11610064578063d1d80fdf1461051a578063e985e9c51461053a578063f2fde38b14610583578063f3ffffee146105a357600080fd5b8063a25307fd146104a5578063b88d4fde146104bb578063c87b56dd146104db578063d1239730146104fb57600080fd5b806395d89b41116100d157806395d89b41146104445780639ef2d87a14610459578063a035b1fe1461046f578063a22cb4651461048557600080fd5b80636352211e146103d157806370a08231146103f1578063715018a6146104115780638da5cb5b1461042657600080fd5b80632ed6d5e81161017a57806342842e0e1161014957806342842e0e146103515780634f6ccce71461037157806351524e5b1461039157806355f804b3146103b157600080fd5b80632ed6d5e81461030c5780632f745c59146103145780633ccfd60b146103345780634047638d1461033c57600080fd5b8063095ea7b3116101b6578063095ea7b31461028c57806318160ddd146102ac57806323b872dd146102cb57806326092b83146102eb57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063078837031461023f578063081812fc14610254575b600080fd5b3480156101f457600080fd5b5061020861020336600461257b565b6105b6565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105e1565b6040516102149190612778565b61025261024d3660046125fe565b610673565b005b34801561026057600080fd5b5061027461026f3660046125fe565b610812565b6040516001600160a01b039091168152602001610214565b34801561029857600080fd5b506102526102a73660046124c8565b6108a7565b3480156102b857600080fd5b506009545b604051908152602001610214565b3480156102d757600080fd5b506102526102e63660046123d9565b6109b8565b3480156102f757600080fd5b50600f5461020890600160a01b900460ff1681565b6102526109e9565b34801561032057600080fd5b506102bd61032f3660046124c8565b610b6b565b610252610c01565b34801561034857600080fd5b50610252610c8b565b34801561035d57600080fd5b5061025261036c3660046123d9565b610cd6565b34801561037d57600080fd5b506102bd61038c3660046125fe565b610cf1565b34801561039d57600080fd5b506102526103ac3660046124f2565b610d84565b3480156103bd57600080fd5b506102526103cc3660046125b5565b610f2e565b3480156103dd57600080fd5b506102746103ec3660046125fe565b610f6f565b3480156103fd57600080fd5b506102bd61040c36600461238b565b610fe6565b34801561041d57600080fd5b5061025261106d565b34801561043257600080fd5b506000546001600160a01b0316610274565b34801561045057600080fd5b506102326110a3565b34801561046557600080fd5b506102bd600e5481565b34801561047b57600080fd5b506102bd600c5481565b34801561049157600080fd5b506102526104a0366004612491565b6110b2565b3480156104b157600080fd5b506102bd600d5481565b3480156104c757600080fd5b506102526104d6366004612415565b6110bd565b3480156104e757600080fd5b506102326104f63660046125fe565b6110f5565b34801561050757600080fd5b50600f54600160a01b900460ff16610208565b34801561052657600080fd5b5061025261053536600461238b565b6111af565b34801561054657600080fd5b506102086105553660046123a6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058f57600080fd5b5061025261059e36600461238b565b6111fb565b6102526105b13660046125fe565b611293565b60006001600160e01b0319821663780e9d6360e01b14806105db57506105db82611404565b92915050565b6060600180546105f0906128f1565b80601f016020809104026020016040519081016040528092919081815260200182805461061c906128f1565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b600061067e60095490565b600f54909150600160a01b900460ff166106df5760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206d7573742062652061637469766500000000000060448201526064015b60405180910390fd5b60148211156107305760405162461bcd60e51b815260206004820152601c60248201527f4d6178203230206d696e747320706572207472616e73616374696f6e0000000060448201526064016106d6565b600e5461073d8284611454565b11156107825760405162461bcd60e51b81526020600482015260146024820152732737903a37b5b2b739903932b6b0b4b734b7339760611b60448201526064016106d6565b600c5434906107919084611467565b146107de5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106d6565b60015b82811161080d576107fb336107f68484611454565b611473565b806108058161292c565b9150506107e1565b505050565b6000818152600360205260408120546001600160a01b031661088b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d6565b506000908152600560205260409020546001600160a01b031690565b60006108b282610f6f565b9050806001600160a01b0316836001600160a01b031614156109205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d6565b336001600160a01b038216148061093c575061093c8133610555565b6109ae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d6565b61080d838361148d565b6109c233826114fb565b6109de5760405162461bcd60e51b81526004016106d690612812565b61080d8383836115f2565b6000546001600160a01b03163314610a135760405162461bcd60e51b81526004016106d6906127dd565b600f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610a5757600080fd5b505afa158015610a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8f9190612617565b905060008111610add5760405162461bcd60e51b8152602060048201526019602482015278436f6e74726163742062616c616e636520697320656d70747960381b60448201526064016106d6565b600f546010546040516370a0823160e01b8152306004820152610b68926001600160a01b0390811692169082906370a082319060240160206040518083038186803b158015610b2b57600080fd5b505afa158015610b3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b639190612617565b61179d565b50565b6000610b7683610fe6565b8210610bd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d6565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610c2b5760405162461bcd60e51b81526004016106d6906127dd565b4780610c755760405162461bcd60e51b8152602060048201526019602482015278436f6e74726163742062616c616e636520697320656d70747960381b60448201526064016106d6565b601054610b68906001600160a01b031647611800565b6000546001600160a01b03163314610cb55760405162461bcd60e51b81526004016106d6906127dd565b600f805460ff60a01b198116600160a01b9182900460ff1615909102179055565b61080d838383604051806020016040528060008152506110bd565b6000610cfc60095490565b8210610d5f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d6565b60098281548110610d7257610d7261299d565b90600052602060002001549050919050565b6000546001600160a01b03163314610dae5760405162461bcd60e51b81526004016106d6906127dd565b6000805b82811015610df857610de5848483818110610dcf57610dcf61299d565b905060200201358361145490919063ffffffff16565b9150610df2816001611454565b50610db2565b50600f54600160a01b900460ff16610e525760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e67206d757374206265206163746976652e00000000000000000060448201526064016106d6565b610e67610e5e60095490565b600e5490611896565b811115604051602001610e9490732737903a37b5b2b739903932b6b0b4b734b7339760611b815260140190565b60405160208183030381529060405290610ec15760405162461bcd60e51b81526004016106d69190612778565b5060005b84811015610f2657610f15868683818110610ee257610ee261299d565b9050602002016020810190610ef7919061238b565b858584818110610f0957610f0961299d565b905060200201356118a2565b610f20816001611454565b50610ec5565b505050505050565b6000546001600160a01b03163314610f585760405162461bcd60e51b81526004016106d6906127dd565b8051610f6b90600b906020840190612214565b5050565b6000818152600360205260408120546001600160a01b0316806105db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d6565b60006001600160a01b0382166110515760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d6565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110975760405162461bcd60e51b81526004016106d6906127dd565b6110a160006118d9565b565b6060600280546105f0906128f1565b610f6b338383611929565b6110c733836114fb565b6110e35760405162461bcd60e51b81526004016106d690612812565b6110ef848484846119f8565b50505050565b6000818152600360205260409020546060906001600160a01b03166111535760405162461bcd60e51b81526020600482015260146024820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016106d6565b6000600b8054611162906128f1565b90501161117e57604051806020016040528060008152506105db565b600b61118983611a2b565b60405160200161119a929190612694565b60405160208183030381529060405292915050565b6000546001600160a01b031633146111d95760405162461bcd60e51b81526004016106d6906127dd565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112255760405162461bcd60e51b81526004016106d6906127dd565b6001600160a01b03811661128a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d6565b610b68816118d9565b600061129e60095490565b600f54909150600160a01b900460ff166112f35760405162461bcd60e51b81526020600482015260166024820152756d696e74696e67206d7573742062652061637469766560501b60448201526064016106d6565b60148211156113445760405162461bcd60e51b815260206004820152601c60248201527f4d6178203230206d696e747320706572207472616e73616374696f6e0000000060448201526064016106d6565b600e546113518284611454565b11156113965760405162461bcd60e51b81526020600482015260146024820152732737903a37b5b2b739903932b6b0b4b734b7339760611b60448201526064016106d6565b60006113bf670de0b6b3a76400006113b9600d548661146790919063ffffffff16565b90611467565b600f549091506113da906001600160a01b0316333084611b29565b60015b8381116110ef576113f2336107f68584611454565b806113fc8161292c565b9150506113dd565b60006001600160e01b031982166380ac58cd60e01b148061143557506001600160e01b03198216635b5e139f60e01b145b806105db57506301ffc9a760e01b6001600160e01b03198316146105db565b60006114608284612863565b9392505050565b6000611460828461288f565b610f6b828260405180602001604052806000815250611b61565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c282610f6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d6565b600061157f83610f6f565b9050806001600160a01b0316846001600160a01b031614806115ba5750836001600160a01b03166115af84610812565b6001600160a01b0316145b806115ea57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661160582610f6f565b6001600160a01b03161461166d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d6565b6001600160a01b0382166116cf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d6565b6116da838383611b94565b6116e560008261148d565b6001600160a01b038316600090815260046020526040812080546001929061170e9084906128ae565b90915550506001600160a01b038216600090815260046020526040812080546001929061173c908490612863565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6040516001600160a01b03831660248201526044810182905261080d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611c4c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461184d576040519150601f19603f3d011682016040523d82523d6000602084013e611852565b606091505b505090508061080d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106d6565b600061146082846128ae565b60006118ad60095490565b905060015b8281116110ef576118c7846107f68484611454565b806118d18161292c565b9150506118b2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316141561198b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d6565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a038484846115f2565b611a0f84848484611d1e565b6110ef5760405162461bcd60e51b81526004016106d69061278b565b606081611a4f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a795780611a638161292c565b9150611a729050600a8361287b565b9150611a53565b60008167ffffffffffffffff811115611a9457611a946129b3565b6040519080825280601f01601f191660200182016040528015611abe576020820181803683370190505b5090505b84156115ea57611ad36001836128ae565b9150611ae0600a86612947565b611aeb906030612863565b60f81b818381518110611b0057611b0061299d565b60200101906001600160f81b031916908160001a905350611b22600a8661287b565b9450611ac2565b6040516001600160a01b03808516602483015283166044820152606481018290526110ef9085906323b872dd60e01b906084016117c9565b611b6b8383611e2b565b611b786000848484611d1e565b61080d5760405162461bcd60e51b81526004016106d69061278b565b6001600160a01b038316611bef57611bea81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c12565b816001600160a01b0316836001600160a01b031614611c1257611c128382611f79565b6001600160a01b038216611c295761080d81612016565b826001600160a01b0316826001600160a01b03161461080d5761080d82826120c5565b6000611ca1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121099092919063ffffffff16565b80519091501561080d5780806020019051810190611cbf919061255e565b61080d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106d6565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6290339089908890889060040161273b565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da991810190612598565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b81526004016106d69061278b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ea565b506001949350505050565b6001600160a01b038216611e815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d6565b6000818152600360205260409020546001600160a01b031615611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d6565b611ef260008383611b94565b6001600160a01b0382166000908152600460205260408120805460019290611f1b908490612863565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f8684610fe6565b611f9091906128ae565b600083815260086020526040902054909150808214611fe3576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612028906001906128ae565b6000838152600a6020526040812054600980549394509092849081106120505761205061299d565b9060005260206000200154905080600983815481106120715761207161299d565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120a9576120a9612987565b6001900381819060005260206000200160009055905550505050565b60006120d083610fe6565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60606115ea848460008585843b6121625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106d6565b600080866001600160a01b0316858760405161217e9190612678565b60006040518083038185875af1925050503d80600081146121bb576040519150601f19603f3d011682016040523d82523d6000602084013e6121c0565b606091505b50915091506121d08282866121db565b979650505050505050565b606083156121ea575081611460565b8251156121fa5782518084602001fd5b8160405162461bcd60e51b81526004016106d69190612778565b828054612220906128f1565b90600052602060002090601f0160209004810192826122425760008555612288565b82601f1061225b57805160ff1916838001178555612288565b82800160010185558215612288579182015b8281111561228857825182559160200191906001019061226d565b50612294929150612298565b5090565b5b808211156122945760008155600101612299565b600067ffffffffffffffff808411156122c8576122c86129b3565b604051601f8501601f19908116603f011681019082821181831017156122f0576122f06129b3565b8160405280935085815286868601111561230957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461233a57600080fd5b919050565b60008083601f84011261235157600080fd5b50813567ffffffffffffffff81111561236957600080fd5b6020830191508360208260051b850101111561238457600080fd5b9250929050565b60006020828403121561239d57600080fd5b61146082612323565b600080604083850312156123b957600080fd5b6123c283612323565b91506123d060208401612323565b90509250929050565b6000806000606084860312156123ee57600080fd5b6123f784612323565b925061240560208501612323565b9150604084013590509250925092565b6000806000806080858703121561242b57600080fd5b61243485612323565b935061244260208601612323565b925060408501359150606085013567ffffffffffffffff81111561246557600080fd5b8501601f8101871361247657600080fd5b612485878235602084016122ad565b91505092959194509250565b600080604083850312156124a457600080fd5b6124ad83612323565b915060208301356124bd816129c9565b809150509250929050565b600080604083850312156124db57600080fd5b6124e483612323565b946020939093013593505050565b6000806000806040858703121561250857600080fd5b843567ffffffffffffffff8082111561252057600080fd5b61252c8883890161233f565b9096509450602087013591508082111561254557600080fd5b506125528782880161233f565b95989497509550505050565b60006020828403121561257057600080fd5b8151611460816129c9565b60006020828403121561258d57600080fd5b8135611460816129d7565b6000602082840312156125aa57600080fd5b8151611460816129d7565b6000602082840312156125c757600080fd5b813567ffffffffffffffff8111156125de57600080fd5b8201601f810184136125ef57600080fd5b6115ea848235602084016122ad565b60006020828403121561261057600080fd5b5035919050565b60006020828403121561262957600080fd5b5051919050565b600081518084526126488160208601602086016128c5565b601f01601f19169290920160200192915050565b6000815161266e8185602086016128c5565b9290920192915050565b6000825161268a8184602087016128c5565b9190910192915050565b600080845481600182811c9150808316806126b057607f831692505b60208084108214156126d057634e487b7160e01b86526022600452602486fd5b8180156126e457600181146126f557612722565b60ff19861689528489019650612722565b60008b81526020902060005b8681101561271a5781548b820152908501908301612701565b505084890196505b505050505050612732818561265c565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276e90830184612630565b9695505050505050565b6020815260006114606020830184612630565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128765761287661295b565b500190565b60008261288a5761288a612971565b500490565b60008160001904831182151516156128a9576128a961295b565b500290565b6000828210156128c0576128c061295b565b500390565b60005b838110156128e05781810151838201526020016128c8565b838111156110ef5750506000910152565b600181811c9082168061290557607f821691505b6020821081141561292657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129405761294061295b565b5060010190565b60008261295657612956612971565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610b6857600080fd5b6001600160e01b031981168114610b6857600080fdfea26469706673582212205247a1e675dfab8706d0f106071446f81710d63f46a460ff4d2ae149571f701364736f6c63430008070033

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

000000000000000000000000aa2f4b87c774d5e47c55d0be5533c63dd56ffff50000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0

-----Decoded View---------------
Arg [0] : _initwithdrawaddr (address): 0xAa2F4B87c774d5e47c55D0bE5533C63dD56fFFF5
Arg [1] : _initERC20TokenAddress (address): 0x3b484b82567a09e2588A13D54D032153f0c0aEe0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000aa2f4b87c774d5e47c55d0be5533c63dd56ffff5
Arg [1] : 0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0


Deployed Bytecode Sourcemap

57273:4110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44115:224;;;;;;;;;;-1:-1:-1;44115:224:0;;;;;:::i;:::-;;:::i;:::-;;;9541:14:1;;9534:22;9516:41;;9504:2;9489:18;44115:224:0;;;;;;;;31699:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59845:545::-;;;;;;:::i;:::-;;:::i;:::-;;33258:221;;;;;;;;;;-1:-1:-1;33258:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8169:32:1;;;8151:51;;8139:2;8124:18;33258:221:0;8005:203:1;32781:411:0;;;;;;;;;;-1:-1:-1;32781:411:0;;;;;:::i;:::-;;:::i;44755:113::-;;;;;;;;;;-1:-1:-1;44843:10:0;:17;44755:113;;;21088:25:1;;;21076:2;21061:18;44755:113:0;20942:177:1;34008:339:0;;;;;;;;;;-1:-1:-1;34008:339:0;;;;;:::i;:::-;;:::i;57715:22::-;;;;;;;;;;-1:-1:-1;57715:22:0;;;;-1:-1:-1;;;57715:22:0;;;;;;61102:278;;;:::i;44423:256::-;;;;;;;;;;-1:-1:-1;44423:256:0;;;;;:::i;:::-;;:::i;60681:224::-;;;:::i;58322:88::-;;;;;;;;;;;;;:::i;34418:185::-;;;;;;;;;;-1:-1:-1;34418:185:0;;;;;:::i;:::-;;:::i;44945:233::-;;;;;;;;;;-1:-1:-1;44945:233:0;;;;;:::i;:::-;;:::i;58416:570::-;;;;;;;;;;-1:-1:-1;58416:570:0;;;;;:::i;:::-;;:::i;58217:99::-;;;;;;;;;;-1:-1:-1;58217:99:0;;;;;:::i;:::-;;:::i;31393:239::-;;;;;;;;;;-1:-1:-1;31393:239:0;;;;;:::i;:::-;;:::i;31123:208::-;;;;;;;;;;-1:-1:-1;31123:208:0;;;;;:::i;:::-;;:::i;26941:103::-;;;;;;;;;;;;;:::i;26290:87::-;;;;;;;;;;-1:-1:-1;26336:7:0;26363:6;-1:-1:-1;;;;;26363:6:0;26290:87;;31868:104;;;;;;;;;;;;;:::i;57645:31::-;;;;;;;;;;;;;;;;57555:40;;;;;;;;;;;;;;;;33551:155;;;;;;;;;;-1:-1:-1;33551:155:0;;;;;:::i;:::-;;:::i;57602:36::-;;;;;;;;;;;;;;;;34674:328;;;;;;;;;;-1:-1:-1;34674:328:0;;;;;:::i;:::-;;:::i;60396:279::-;;;;;;;;;;-1:-1:-1;60396:279:0;;;;;:::i;:::-;;:::i;58021:86::-;;;;;;;;;;-1:-1:-1;58089:10:0;;-1:-1:-1;;;58089:10:0;;;;58021:86;;58113:98;;;;;;;;;;-1:-1:-1;58113:98:0;;;;;:::i;:::-;;:::i;33777:164::-;;;;;;;;;;-1:-1:-1;33777:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33898:25:0;;;33874:4;33898:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33777:164;27199:201;;;;;;;;;;-1:-1:-1;27199:201:0;;;;;:::i;:::-;;:::i;59224:615::-;;;;;;:::i;:::-;;:::i;44115:224::-;44217:4;-1:-1:-1;;;;;;44241:50:0;;-1:-1:-1;;;44241:50:0;;:90;;;44295:36;44319:11;44295:23;:36::i;:::-;44234:97;44115:224;-1:-1:-1;;44115:224:0:o;31699:100::-;31753:13;31786:5;31779:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31699:100;:::o;59845:545::-;59909:20;59932:13;44843:10;:17;;44755:113;59932:13;59964:10;;59909:36;;-1:-1:-1;;;;59964:10:0;;;;59956:49;;;;-1:-1:-1;;;59956:49:0;;14240:2:1;59956:49:0;;;14222:21:1;14279:2;14259:18;;;14252:30;14318:28;14298:18;;;14291:56;14364:18;;59956:49:0;;;;;;;;;60042:2;60024:14;:20;;60016:61;;;;-1:-1:-1;;;60016:61:0;;16202:2:1;60016:61:0;;;16184:21:1;16241:2;16221:18;;;16214:30;16280;16260:18;;;16253:58;16328:18;;60016:61:0;16000:352:1;60016:61:0;60132:8;;60096:32;:12;60113:14;60096:16;:32::i;:::-;:44;;60088:77;;;;-1:-1:-1;;;60088:77:0;;10005:2:1;60088:77:0;;;9987:21:1;10044:2;10024:18;;;10017:30;-1:-1:-1;;;10063:18:1;;;10056:50;10123:18;;60088:77:0;9803:344:1;60088:77:0;60184:5;;60213:9;;60184:25;;60194:14;60184:9;:25::i;:::-;:38;60176:82;;;;-1:-1:-1;;;60176:82:0;;13060:2:1;60176:82:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:33;13118:18;;;13111:61;13189:18;;60176:82:0;12858:355:1;60176:82:0;60285:1;60269:114;60293:14;60288:1;:19;60269:114;;60329:42;60339:10;60351:19;:12;60368:1;60351:16;:19::i;:::-;60329:9;:42::i;:::-;60309:3;;;;:::i;:::-;;;;60269:114;;;;59898:492;59845:545;:::o;33258:221::-;33334:7;36601:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36601:16:0;33354:73;;;;-1:-1:-1;;;33354:73:0;;16913:2:1;33354:73:0;;;16895:21:1;16952:2;16932:18;;;16925:30;16991:34;16971:18;;;16964:62;-1:-1:-1;;;17042:18:1;;;17035:42;17094:19;;33354:73:0;16711:408:1;33354:73:0;-1:-1:-1;33447:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33447:24:0;;33258:221::o;32781:411::-;32862:13;32878:23;32893:7;32878:14;:23::i;:::-;32862:39;;32926:5;-1:-1:-1;;;;;32920:11:0;:2;-1:-1:-1;;;;;32920:11:0;;;32912:57;;;;-1:-1:-1;;;32912:57:0;;18097:2:1;32912:57:0;;;18079:21:1;18136:2;18116:18;;;18109:30;18175:34;18155:18;;;18148:62;-1:-1:-1;;;18226:18:1;;;18219:31;18267:19;;32912:57:0;17895:397:1;32912:57:0;25156:10;-1:-1:-1;;;;;33004:21:0;;;;:62;;-1:-1:-1;33029:37:0;33046:5;25156:10;33777:164;:::i;33029:37::-;32982:168;;;;-1:-1:-1;;;32982:168:0;;14595:2:1;32982:168:0;;;14577:21:1;14634:2;14614:18;;;14607:30;14673:34;14653:18;;;14646:62;14744:26;14724:18;;;14717:54;14788:19;;32982:168:0;14393:420:1;32982:168:0;33163:21;33172:2;33176:7;33163:8;:21::i;34008:339::-;34203:41;25156:10;34236:7;34203:18;:41::i;:::-;34195:103;;;;-1:-1:-1;;;34195:103:0;;;;;;;:::i;:::-;34311:28;34321:4;34327:2;34331:7;34311:9;:28::i;61102:278::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;61181:10:::1;::::0;:35:::1;::::0;-1:-1:-1;;;61181:35:0;;61210:4:::1;61181:35;::::0;::::1;8151:51:1::0;61163:15:0::1;::::0;-1:-1:-1;;;;;61181:10:0::1;::::0;:20:::1;::::0;8124:18:1;;61181:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61163:53;;61245:1;61235:7;:11;61227:49;;;::::0;-1:-1:-1;;;61227:49:0;;16559:2:1;61227:49:0::1;::::0;::::1;16541:21:1::0;16598:2;16578:18;;;16571:30;-1:-1:-1;;;16617:18:1;;;16610:55;16682:18;;61227:49:0::1;16357:349:1::0;61227:49:0::1;61310:10;::::0;61322:12:::1;::::0;61336:35:::1;::::0;-1:-1:-1;;;61336:35:0;;61365:4:::1;61336:35;::::0;::::1;8151:51:1::0;61287:85:0::1;::::0;-1:-1:-1;;;;;61310:10:0;;::::1;::::0;61322:12:::1;::::0;61310:10;;61336:20:::1;::::0;8124:18:1;;61336:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61287:22;:85::i;:::-;61152:228;61102:278::o:0;44423:256::-;44520:7;44556:23;44573:5;44556:16;:23::i;:::-;44548:5;:31;44540:87;;;;-1:-1:-1;;;44540:87:0;;10354:2:1;44540:87:0;;;10336:21:1;10393:2;10373:18;;;10366:30;10432:34;10412:18;;;10405:62;-1:-1:-1;;;10483:18:1;;;10476:41;10534:19;;44540:87:0;10152:407:1;44540:87:0;-1:-1:-1;;;;;;44645:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44423:256::o;60681:224::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;60755:21:::1;60795:11:::0;60787:49:::1;;;::::0;-1:-1:-1;;;60787:49:0;;16559:2:1;60787:49:0::1;::::0;::::1;16541:21:1::0;16598:2;16578:18;;;16571:30;-1:-1:-1;;;16617:18:1;;;16610:55;16682:18;;60787:49:0::1;16357:349:1::0;60787:49:0::1;60861:12;::::0;60847:50:::1;::::0;-1:-1:-1;;;;;60861:12:0::1;60875:21;60847:13;:50::i;58322:88::-:0;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;58392:10:::1;::::0;;-1:-1:-1;;;;58378:24:0;::::1;-1:-1:-1::0;;;58392:10:0;;;::::1;;;58391:11;58378:24:::0;;::::1;;::::0;;58322:88::o;34418:185::-;34556:39;34573:4;34579:2;34583:7;34556:39;;;;;;;;;;;;:16;:39::i;44945:233::-;45020:7;45056:30;44843:10;:17;;44755:113;45056:30;45048:5;:38;45040:95;;;;-1:-1:-1;;;45040:95:0;;19620:2:1;45040:95:0;;;19602:21:1;19659:2;19639:18;;;19632:30;19698:34;19678:18;;;19671:62;-1:-1:-1;;;19749:18:1;;;19742:42;19801:19;;45040:95:0;19418:408:1;45040:95:0;45153:10;45164:5;45153:17;;;;;;;;:::i;:::-;;;;;;;;;45146:24;;44945:233;;;:::o;58416:570::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;58524:22:::1;58565:9:::0;58561:120:::1;58576:20:::0;;::::1;58561:120;;;58638:31;58656:9;;58666:1;58656:12;;;;;;;:::i;:::-;;;;;;;58638:13;:17;;:31;;;;:::i;:::-;58622:47:::0;-1:-1:-1;58598:8:0::1;:1:::0;58604::::1;58598:5;:8::i;:::-;;58561:120;;;-1:-1:-1::0;58699:10:0::1;::::0;-1:-1:-1;;;58699:10:0;::::1;;;58691:46;;;::::0;-1:-1:-1;;;58691:46:0;;11949:2:1;58691:46:0::1;::::0;::::1;11931:21:1::0;11988:2;11968:18;;;11961:30;12027:25;12007:18;;;12000:53;12070:18;;58691:46:0::1;11747:347:1::0;58691:46:0::1;58773:27;58786:13;44843:10:::0;:17;;44755:113;58786:13:::1;58773:8;::::0;;:12:::1;:27::i;:::-;58756:13;:44;;58809:40;;;;;;-1:-1:-1::0;;;7721:35:1;;7781:2;7772:12;;7519:271;58809:40:0::1;;;;;;;;;;;;;58748:103;;;;;-1:-1:-1::0;;;58748:103:0::1;;;;;;;;:::i;:::-;;58866:9;58862:117;58877:22:::0;;::::1;58862:117;;;58925:42;58938:11;;58950:1;58938:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;58954:9;;58964:1;58954:12;;;;;;;:::i;:::-;;;;;;;58925;:42::i;:::-;58901:8;:1:::0;58907::::1;58901:5;:8::i;:::-;;58862:117;;;;58513:473;58416:570:::0;;;;:::o;58217:99::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;58287:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58217:99:::0;:::o;31393:239::-;31465:7;31501:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31501:16:0;31536:19;31528:73;;;;-1:-1:-1;;;31528:73:0;;15431:2:1;31528:73:0;;;15413:21:1;15470:2;15450:18;;;15443:30;15509:34;15489:18;;;15482:62;-1:-1:-1;;;15560:18:1;;;15553:39;15609:19;;31528:73:0;15229:405:1;31123:208:0;31195:7;-1:-1:-1;;;;;31223:19:0;;31215:74;;;;-1:-1:-1;;;31215:74:0;;15020:2:1;31215:74:0;;;15002:21:1;15059:2;15039:18;;;15032:30;15098:34;15078:18;;;15071:62;-1:-1:-1;;;15149:18:1;;;15142:40;15199:19;;31215:74:0;14818:406:1;31215:74:0;-1:-1:-1;;;;;;31307:16:0;;;;;:9;:16;;;;;;;31123:208::o;26941:103::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;27006:30:::1;27033:1;27006:18;:30::i;:::-;26941:103::o:0;31868:104::-;31924:13;31957:7;31950:14;;;;;:::i;33551:155::-;33646:52;25156:10;33679:8;33689;33646:18;:52::i;34674:328::-;34849:41;25156:10;34882:7;34849:18;:41::i;:::-;34841:103;;;;-1:-1:-1;;;34841:103:0;;;;;;;:::i;:::-;34955:39;34969:4;34975:2;34979:7;34988:5;34955:13;:39::i;:::-;34674:328;;;;:::o;60396:279::-;36577:4;36601:16;;;:7;:16;;;;;;60470:13;;-1:-1:-1;;;;;36601:16:0;60496:50;;;;-1:-1:-1;;;60496:50:0;;20444:2:1;60496:50:0;;;20426:21:1;20483:2;20463:18;;;20456:30;-1:-1:-1;;;20502:18:1;;;20495:50;20562:18;;60496:50:0;20242:344:1;60496:50:0;60593:1;60570:12;60564:26;;;;;:::i;:::-;;;:30;:103;;;;;;;;;;;;;;;;;60621:12;60635:26;60652:8;60635:16;:26::i;:::-;60604:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60557:110;60396:279;-1:-1:-1;;60396:279:0:o;58113:98::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;58178:12:::1;:25:::0;;-1:-1:-1;;;;;;58178:25:0::1;-1:-1:-1::0;;;;;58178:25:0;;;::::1;::::0;;;::::1;::::0;;58113:98::o;27199:201::-;26336:7;26363:6;-1:-1:-1;;;;;26363:6:0;25156:10;26510:23;26502:68;;;;-1:-1:-1;;;26502:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27288:22:0;::::1;27280:73;;;::::0;-1:-1:-1;;;27280:73:0;;11185:2:1;27280:73:0::1;::::0;::::1;11167:21:1::0;11224:2;11204:18;;;11197:30;11263:34;11243:18;;;11236:62;-1:-1:-1;;;11314:18:1;;;11307:36;11360:19;;27280:73:0::1;10983:402:1::0;27280:73:0::1;27364:28;27383:8;27364:18;:28::i;59224:615::-:0;59293:20;59316:13;44843:10;:17;;44755:113;59316:13;59348:10;;59293:36;;-1:-1:-1;;;;59348:10:0;;;;59340:45;;;;-1:-1:-1;;;59340:45:0;;20793:2:1;59340:45:0;;;20775:21:1;20832:2;20812:18;;;20805:30;-1:-1:-1;;;20851:18:1;;;20844:52;20913:18;;59340:45:0;20591:346:1;59340:45:0;59422:2;59404:14;:20;;59396:61;;;;-1:-1:-1;;;59396:61:0;;16202:2:1;59396:61:0;;;16184:21:1;16241:2;16221:18;;;16214:30;16280;16260:18;;;16253:58;16328:18;;59396:61:0;16000:352:1;59396:61:0;59512:8;;59476:32;:12;59493:14;59476:16;:32::i;:::-;:44;;59468:77;;;;-1:-1:-1;;;59468:77:0;;10005:2:1;59468:77:0;;;9987:21:1;10044:2;10024:18;;;10017:30;-1:-1:-1;;;10063:18:1;;;10056:50;10123:18;;59468:77:0;9803:344:1;59468:77:0;59558:12;59573:42;59610:4;59574:30;59593:10;;59574:14;:18;;:30;;;;:::i;:::-;59573:36;;:42::i;:::-;59653:10;;59558:57;;-1:-1:-1;59626:71:0;;-1:-1:-1;;;;;59653:10:0;59665;59685:4;59558:57;59626:26;:71::i;:::-;59734:1;59718:114;59742:14;59737:1;:19;59718:114;;59778:42;59788:10;59800:19;:12;59817:1;59800:16;:19::i;59778:42::-;59758:3;;;;:::i;:::-;;;;59718:114;;30754:305;30856:4;-1:-1:-1;;;;;;30893:40:0;;-1:-1:-1;;;30893:40:0;;:105;;-1:-1:-1;;;;;;;30950:48:0;;-1:-1:-1;;;30950:48:0;30893:105;:158;;;-1:-1:-1;;;;;;;;;;11936:40:0;;;31015:36;11827:157;53060:98;53118:7;53145:5;53149:1;53145;:5;:::i;:::-;53138:12;53060:98;-1:-1:-1;;;53060:98:0:o;53798:::-;53856:7;53883:5;53887:1;53883;:5;:::i;37496:110::-;37572:26;37582:2;37586:7;37572:26;;;;;;;;;;;;:9;:26::i;40494:174::-;40569:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40569:29:0;-1:-1:-1;;;;;40569:29:0;;;;;;;;:24;;40623:23;40569:24;40623:14;:23::i;:::-;-1:-1:-1;;;;;40614:46:0;;;;;;;;;;;40494:174;;:::o;36806:348::-;36899:4;36601:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36601:16:0;36916:73;;;;-1:-1:-1;;;36916:73:0;;13827:2:1;36916:73:0;;;13809:21:1;13866:2;13846:18;;;13839:30;13905:34;13885:18;;;13878:62;-1:-1:-1;;;13956:18:1;;;13949:42;14008:19;;36916:73:0;13625:408:1;36916:73:0;37000:13;37016:23;37031:7;37016:14;:23::i;:::-;37000:39;;37069:5;-1:-1:-1;;;;;37058:16:0;:7;-1:-1:-1;;;;;37058:16:0;;:51;;;;37102:7;-1:-1:-1;;;;;37078:31:0;:20;37090:7;37078:11;:20::i;:::-;-1:-1:-1;;;;;37078:31:0;;37058:51;:87;;;-1:-1:-1;;;;;;33898:25:0;;;33874:4;33898:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37113:32;37050:96;36806:348;-1:-1:-1;;;;36806:348:0:o;39798:578::-;39957:4;-1:-1:-1;;;;;39930:31:0;:23;39945:7;39930:14;:23::i;:::-;-1:-1:-1;;;;;39930:31:0;;39922:85;;;;-1:-1:-1;;;39922:85:0;;17687:2:1;39922:85:0;;;17669:21:1;17726:2;17706:18;;;17699:30;17765:34;17745:18;;;17738:62;-1:-1:-1;;;17816:18:1;;;17809:39;17865:19;;39922:85:0;17485:405:1;39922:85:0;-1:-1:-1;;;;;40026:16:0;;40018:65;;;;-1:-1:-1;;;40018:65:0;;12301:2:1;40018:65:0;;;12283:21:1;12340:2;12320:18;;;12313:30;12379:34;12359:18;;;12352:62;-1:-1:-1;;;12430:18:1;;;12423:34;12474:19;;40018:65:0;12099:400:1;40018:65:0;40096:39;40117:4;40123:2;40127:7;40096:20;:39::i;:::-;40200:29;40217:1;40221:7;40200:8;:29::i;:::-;-1:-1:-1;;;;;40242:15:0;;;;;;:9;:15;;;;;:20;;40261:1;;40242:15;:20;;40261:1;;40242:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40273:13:0;;;;;;:9;:13;;;;;:18;;40290:1;;40273:13;:18;;40290:1;;40273:18;:::i;:::-;;;;-1:-1:-1;;40302:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40302:21:0;-1:-1:-1;;;;;40302:21:0;;;;;;;;;40341:27;;40302:16;;40341:27;;;;;;;39798:578;;;:::o;15382:211::-;15526:58;;-1:-1:-1;;;;;9289:32:1;;15526:58:0;;;9271:51:1;9338:18;;;9331:34;;;15499:86:0;;15519:5;;-1:-1:-1;;;15549:23:0;9244:18:1;;15526:58:0;;;;-1:-1:-1;;15526:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;15526:58:0;-1:-1:-1;;;;;;15526:58:0;;;;;;;;;;15499:19;:86::i;60912:184::-;60990:12;61007:8;-1:-1:-1;;;;;61007:13:0;61029:7;61007:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60989:52;;;61060:7;61052:36;;;;-1:-1:-1;;;61052:36:0;;18499:2:1;61052:36:0;;;18481:21:1;18538:2;18518:18;;;18511:30;-1:-1:-1;;;18557:18:1;;;18550:46;18613:18;;61052:36:0;18297:340:1;53441:98:0;53499:7;53526:5;53530:1;53526;:5;:::i;58992:226::-;59064:20;59087:13;44843:10;:17;;44755:113;59087:13;59064:36;-1:-1:-1;59127:1:0;59111:100;59135:7;59130:1;:12;59111:100;;59164:35;59174:3;59179:19;:12;59196:1;59179:16;:19::i;59164:35::-;59144:3;;;;:::i;:::-;;;;59111:100;;27560:191;27634:16;27653:6;;-1:-1:-1;;;;;27670:17:0;;;-1:-1:-1;;;;;;27670:17:0;;;;;;27703:40;;27653:6;;;;;;;27703:40;;27634:16;27703:40;27623:128;27560:191;:::o;40810:315::-;40965:8;-1:-1:-1;;;;;40956:17:0;:5;-1:-1:-1;;;;;40956:17:0;;;40948:55;;;;-1:-1:-1;;;40948:55:0;;12706:2:1;40948:55:0;;;12688:21:1;12745:2;12725:18;;;12718:30;12784:27;12764:18;;;12757:55;12829:18;;40948:55:0;12504:349:1;40948:55:0;-1:-1:-1;;;;;41014:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41014:46:0;;;;;;;;;;41076:41;;9516::1;;;41076::0;;9489:18:1;41076:41:0;;;;;;;40810:315;;;:::o;35884:::-;36041:28;36051:4;36057:2;36061:7;36041:9;:28::i;:::-;36088:48;36111:4;36117:2;36121:7;36130:5;36088:22;:48::i;:::-;36080:111;;;;-1:-1:-1;;;36080:111:0;;;;;;;:::i;341:723::-;397:13;618:10;614:53;;-1:-1:-1;;645:10:0;;;;;;;;;;;;-1:-1:-1;;;645:10:0;;;;;341:723::o;614:53::-;692:5;677:12;733:78;740:9;;733:78;;766:8;;;;:::i;:::-;;-1:-1:-1;789:10:0;;-1:-1:-1;797:2:0;789:10;;:::i;:::-;;;733:78;;;821:19;853:6;843:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;843:17:0;;821:39;;871:154;878:10;;871:154;;905:11;915:1;905:11;;:::i;:::-;;-1:-1:-1;974:10:0;982:2;974:5;:10;:::i;:::-;961:24;;:2;:24;:::i;:::-;948:39;;931:6;938;931:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;931:56:0;;;;;;;;-1:-1:-1;1002:11:0;1011:2;1002:11;;:::i;:::-;;;871:154;;15601:248;15772:68;;-1:-1:-1;;;;;8471:15:1;;;15772:68:0;;;8453:34:1;8523:15;;8503:18;;;8496:43;8555:18;;;8548:34;;;15745:96:0;;15765:5;;-1:-1:-1;;;15795:27:0;8388:18:1;;15772:68:0;8213:375:1;37833:321:0;37963:18;37969:2;37973:7;37963:5;:18::i;:::-;38014:54;38045:1;38049:2;38053:7;38062:5;38014:22;:54::i;:::-;37992:154;;;;-1:-1:-1;;;37992:154:0;;;;;;;:::i;45791:589::-;-1:-1:-1;;;;;45997:18:0;;45993:187;;46032:40;46064:7;47207:10;:17;;47180:24;;;;:15;:24;;;;;:44;;;47235:24;;;;;;;;;;;;47103:164;46032:40;45993:187;;;46102:2;-1:-1:-1;;;;;46094:10:0;:4;-1:-1:-1;;;;;46094:10:0;;46090:90;;46121:47;46154:4;46160:7;46121:32;:47::i;:::-;-1:-1:-1;;;;;46194:16:0;;46190:183;;46227:45;46264:7;46227:36;:45::i;46190:183::-;46300:4;-1:-1:-1;;;;;46294:10:0;:2;-1:-1:-1;;;;;46294:10:0;;46290:83;;46321:40;46349:2;46353:7;46321:27;:40::i;17955:716::-;18379:23;18405:69;18433:4;18405:69;;;;;;;;;;;;;;;;;18413:5;-1:-1:-1;;;;;18405:27:0;;;:69;;;;;:::i;:::-;18489:17;;18379:95;;-1:-1:-1;18489:21:0;18485:179;;18586:10;18575:30;;;;;;;;;;;;:::i;:::-;18567:85;;;;-1:-1:-1;;;18567:85:0;;20033:2:1;18567:85:0;;;20015:21:1;20072:2;20052:18;;;20045:30;20111:34;20091:18;;;20084:62;-1:-1:-1;;;20162:18:1;;;20155:40;20212:19;;18567:85:0;19831:406:1;41690:799:0;41845:4;-1:-1:-1;;;;;41866:13:0;;3184:20;3232:8;41862:620;;41902:72;;-1:-1:-1;;;41902:72:0;;-1:-1:-1;;;;;41902:36:0;;;;;:72;;25156:10;;41953:4;;41959:7;;41968:5;;41902:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41902:72:0;;;;;;;;-1:-1:-1;;41902:72:0;;;;;;;;;;;;:::i;:::-;;;41898:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42144:13:0;;42140:272;;42187:60;;-1:-1:-1;;;42187:60:0;;;;;;;:::i;42140:272::-;42362:6;42356:13;42347:6;42343:2;42339:15;42332:38;41898:529;-1:-1:-1;;;;;;42025:51:0;-1:-1:-1;;;42025:51:0;;-1:-1:-1;42018:58:0;;41862:620;-1:-1:-1;42466:4:0;41690:799;;;;;;:::o;38490:382::-;-1:-1:-1;;;;;38570:16:0;;38562:61;;;;-1:-1:-1;;;38562:61:0;;15841:2:1;38562:61:0;;;15823:21:1;;;15860:18;;;15853:30;15919:34;15899:18;;;15892:62;15971:18;;38562:61:0;15639:356:1;38562:61:0;36577:4;36601:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36601:16:0;:30;38634:58;;;;-1:-1:-1;;;38634:58:0;;11592:2:1;38634:58:0;;;11574:21:1;11631:2;11611:18;;;11604:30;11670;11650:18;;;11643:58;11718:18;;38634:58:0;11390:352:1;38634:58:0;38705:45;38734:1;38738:2;38742:7;38705:20;:45::i;:::-;-1:-1:-1;;;;;38763:13:0;;;;;;:9;:13;;;;;:18;;38780:1;;38763:13;:18;;38780:1;;38763:18;:::i;:::-;;;;-1:-1:-1;;38792:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38792:21:0;-1:-1:-1;;;;;38792:21:0;;;;;;;;38831:33;;38792:16;;;38831:33;;38792:16;;38831:33;38490:382;;:::o;47894:988::-;48160:22;48210:1;48185:22;48202:4;48185:16;:22::i;:::-;:26;;;;:::i;:::-;48222:18;48243:26;;;:17;:26;;;;;;48160:51;;-1:-1:-1;48376:28:0;;;48372:328;;-1:-1:-1;;;;;48443:18:0;;48421:19;48443:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48494:30;;;;;;:44;;;48611:30;;:17;:30;;;;;:43;;;48372:328;-1:-1:-1;48796:26:0;;;;:17;:26;;;;;;;;48789:33;;;-1:-1:-1;;;;;48840:18:0;;;;;:12;:18;;;;;:34;;;;;;;48833:41;47894:988::o;49177:1079::-;49455:10;:17;49430:22;;49455:21;;49475:1;;49455:21;:::i;:::-;49487:18;49508:24;;;:15;:24;;;;;;49881:10;:26;;49430:46;;-1:-1:-1;49508:24:0;;49430:46;;49881:26;;;;;;:::i;:::-;;;;;;;;;49859:48;;49945:11;49920:10;49931;49920:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50025:28;;;:15;:28;;;;;;;:41;;;50197:24;;;;;50190:31;50232:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49248:1008;;;49177:1079;:::o;46681:221::-;46766:14;46783:20;46800:2;46783:16;:20::i;:::-;-1:-1:-1;;;;;46814:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46859:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46681:221:0:o;5667:229::-;5804:12;5836:52;5858:6;5866:4;5872:1;5875:12;5804;3184:20;;7074:60;;;;-1:-1:-1;;;7074:60:0;;19262:2:1;7074:60:0;;;19244:21:1;19301:2;19281:18;;;19274:30;19340:31;19320:18;;;19313:59;19389:18;;7074:60:0;19060:353:1;7074:60:0;7148:12;7162:23;7189:6;-1:-1:-1;;;;;7189:11:0;7208:5;7215:4;7189:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147:73;;;;7238:51;7255:7;7264:10;7276:12;7238:16;:51::i;:::-;7231:58;6787:510;-1:-1:-1;;;;;;;6787:510:0:o;9473:712::-;9623:12;9652:7;9648:530;;;-1:-1:-1;9683:10:0;9676:17;;9648:530;9797:17;;:21;9793:374;;9995:10;9989:17;10056:15;10043:10;10039:2;10035:19;10028:44;9793:374;10138:12;10131:20;;-1:-1:-1;;;10131:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:315::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2917:28;2939:5;2917:28;:::i;:::-;2964:5;2954:15;;;2660:315;;;;;:::o;2980:254::-;3048:6;3056;3109:2;3097:9;3088:7;3084:23;3080:32;3077:52;;;3125:1;3122;3115:12;3077:52;3148:29;3167:9;3148:29;:::i;:::-;3138:39;3224:2;3209:18;;;;3196:32;;-1:-1:-1;;;2980:254:1:o;3239:773::-;3361:6;3369;3377;3385;3438:2;3426:9;3417:7;3413:23;3409:32;3406:52;;;3454:1;3451;3444:12;3406:52;3494:9;3481:23;3523:18;3564:2;3556:6;3553:14;3550:34;;;3580:1;3577;3570:12;3550:34;3619:70;3681:7;3672:6;3661:9;3657:22;3619:70;:::i;:::-;3708:8;;-1:-1:-1;3593:96:1;-1:-1:-1;3796:2:1;3781:18;;3768:32;;-1:-1:-1;3812:16:1;;;3809:36;;;3841:1;3838;3831:12;3809:36;;3880:72;3944:7;3933:8;3922:9;3918:24;3880:72;:::i;:::-;3239:773;;;;-1:-1:-1;3971:8:1;-1:-1:-1;;;;3239:773:1:o;4017:245::-;4084:6;4137:2;4125:9;4116:7;4112:23;4108:32;4105:52;;;4153:1;4150;4143:12;4105:52;4185:9;4179:16;4204:28;4226:5;4204:28;:::i;4267:245::-;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4433:9;4420:23;4452:30;4476:5;4452:30;:::i;4517:249::-;4586:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4687:9;4681:16;4706:30;4730:5;4706:30;:::i;4771:450::-;4840:6;4893:2;4881:9;4872:7;4868:23;4864:32;4861:52;;;4909:1;4906;4899:12;4861:52;4949:9;4936:23;4982:18;4974:6;4971:30;4968:50;;;5014:1;5011;5004:12;4968:50;5037:22;;5090:4;5082:13;;5078:27;-1:-1:-1;5068:55:1;;5119:1;5116;5109:12;5068:55;5142:73;5207:7;5202:2;5189:16;5184:2;5180;5176:11;5142:73;:::i;5226:180::-;5285:6;5338:2;5326:9;5317:7;5313:23;5309:32;5306:52;;;5354:1;5351;5344:12;5306:52;-1:-1:-1;5377:23:1;;5226:180;-1:-1:-1;5226:180:1:o;5411:184::-;5481:6;5534:2;5522:9;5513:7;5509:23;5505:32;5502:52;;;5550:1;5547;5540:12;5502:52;-1:-1:-1;5573:16:1;;5411:184;-1:-1:-1;5411:184:1:o;5600:268::-;5652:3;5690:5;5684:12;5717:6;5712:3;5705:19;5733:63;5789:6;5782:4;5777:3;5773:14;5766:4;5759:5;5755:16;5733:63;:::i;:::-;5850:2;5829:15;-1:-1:-1;;5825:29:1;5816:39;;;;5857:4;5812:50;;5600:268;-1:-1:-1;;5600:268:1:o;5873:184::-;5914:3;5952:5;5946:12;5967:52;6012:6;6007:3;6000:4;5993:5;5989:16;5967:52;:::i;:::-;6035:16;;;;;5873:184;-1:-1:-1;;5873:184:1:o;6062:274::-;6191:3;6229:6;6223:13;6245:53;6291:6;6286:3;6279:4;6271:6;6267:17;6245:53;:::i;:::-;6314:16;;;;;6062:274;-1:-1:-1;;6062:274:1:o;6341:1173::-;6517:3;6546:1;6579:6;6573:13;6609:3;6631:1;6659:9;6655:2;6651:18;6641:28;;6719:2;6708:9;6704:18;6741;6731:61;;6785:4;6777:6;6773:17;6763:27;;6731:61;6811:2;6859;6851:6;6848:14;6828:18;6825:38;6822:165;;;-1:-1:-1;;;6886:33:1;;6942:4;6939:1;6932:15;6972:4;6893:3;6960:17;6822:165;7003:18;7030:104;;;;7148:1;7143:320;;;;6996:467;;7030:104;-1:-1:-1;;7063:24:1;;7051:37;;7108:16;;;;-1:-1:-1;7030:104:1;;7143:320;21197:1;21190:14;;;21234:4;21221:18;;7238:1;7252:165;7266:6;7263:1;7260:13;7252:165;;;7344:14;;7331:11;;;7324:35;7387:16;;;;7281:10;;7252:165;;;7256:3;;7446:6;7441:3;7437:16;7430:23;;6996:467;;;;;;;7479:29;7504:3;7496:6;7479:29;:::i;:::-;7472:36;6341:1173;-1:-1:-1;;;;;6341:1173:1:o;8593:499::-;-1:-1:-1;;;;;8862:15:1;;;8844:34;;8914:15;;8909:2;8894:18;;8887:43;8961:2;8946:18;;8939:34;;;9009:3;9004:2;8989:18;;8982:31;;;8787:4;;9030:56;;9066:19;;9058:6;9030:56;:::i;:::-;9022:64;8593:499;-1:-1:-1;;;;;;8593:499:1:o;9568:230::-;9717:2;9706:9;9699:21;9680:4;9737:55;9788:2;9777:9;9773:18;9765:6;9737:55;:::i;10564:414::-;10766:2;10748:21;;;10805:2;10785:18;;;10778:30;10844:34;10839:2;10824:18;;10817:62;-1:-1:-1;;;10910:2:1;10895:18;;10888:48;10968:3;10953:19;;10564:414::o;17124:356::-;17326:2;17308:21;;;17345:18;;;17338:30;17404:34;17399:2;17384:18;;17377:62;17471:2;17456:18;;17124:356::o;18642:413::-;18844:2;18826:21;;;18883:2;18863:18;;;18856:30;18922:34;18917:2;18902:18;;18895:62;-1:-1:-1;;;18988:2:1;18973:18;;18966:47;19045:3;19030:19;;18642:413::o;21250:128::-;21290:3;21321:1;21317:6;21314:1;21311:13;21308:39;;;21327:18;;:::i;:::-;-1:-1:-1;21363:9:1;;21250:128::o;21383:120::-;21423:1;21449;21439:35;;21454:18;;:::i;:::-;-1:-1:-1;21488:9:1;;21383:120::o;21508:168::-;21548:7;21614:1;21610;21606:6;21602:14;21599:1;21596:21;21591:1;21584:9;21577:17;21573:45;21570:71;;;21621:18;;:::i;:::-;-1:-1:-1;21661:9:1;;21508:168::o;21681:125::-;21721:4;21749:1;21746;21743:8;21740:34;;;21754:18;;:::i;:::-;-1:-1:-1;21791:9:1;;21681:125::o;21811:258::-;21883:1;21893:113;21907:6;21904:1;21901:13;21893:113;;;21983:11;;;21977:18;21964:11;;;21957:39;21929:2;21922:10;21893:113;;;22024:6;22021:1;22018:13;22015:48;;;-1:-1:-1;;22059:1:1;22041:16;;22034:27;21811:258::o;22074:380::-;22153:1;22149:12;;;;22196;;;22217:61;;22271:4;22263:6;22259:17;22249:27;;22217:61;22324:2;22316:6;22313:14;22293:18;22290:38;22287:161;;;22370:10;22365:3;22361:20;22358:1;22351:31;22405:4;22402:1;22395:15;22433:4;22430:1;22423:15;22287:161;;22074:380;;;:::o;22459:135::-;22498:3;-1:-1:-1;;22519:17:1;;22516:43;;;22539:18;;:::i;:::-;-1:-1:-1;22586:1:1;22575:13;;22459:135::o;22599:112::-;22631:1;22657;22647:35;;22662:18;;:::i;:::-;-1:-1:-1;22696:9:1;;22599:112::o;22716:127::-;22777:10;22772:3;22768:20;22765:1;22758:31;22808:4;22805:1;22798:15;22832:4;22829:1;22822:15;22848:127;22909:10;22904:3;22900:20;22897:1;22890:31;22940:4;22937:1;22930:15;22964:4;22961:1;22954:15;22980:127;23041:10;23036:3;23032:20;23029:1;23022:31;23072:4;23069:1;23062:15;23096:4;23093:1;23086:15;23112:127;23173:10;23168:3;23164:20;23161:1;23154:31;23204:4;23201:1;23194:15;23228:4;23225:1;23218:15;23244:127;23305:10;23300:3;23296:20;23293:1;23286:31;23336:4;23333:1;23326:15;23360:4;23357:1;23350:15;23376:118;23462:5;23455:13;23448:21;23441:5;23438:32;23428:60;;23484:1;23481;23474:12;23499:131;-1:-1:-1;;;;;;23573:32:1;;23563:43;;23553:71;;23620:1;23617;23610:12

Swarm Source

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