ETH Price: $3,724.47 (+4.56%)

Token

ERC-20: Dobe Poo (DDM)
 

Overview

Max Total Supply

18 DDM

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
4five6.eth
Balance
1 DDM
0x1fefd2d64af4d97e5f2de6f96237e6afe29e25f4
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:
DobeStaker

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 2022-08-13
*/

// SPDX-License-Identifier: MIT
//                                       %@@,                                 .@@
//                                       (@ /@(                             *@,*@
//                                        @@  ,@&                         %@   @@
//                                         @@    @&                     &@  *@@@ 
//                                         @@(    @@                   @% %@@@@@ 
//                                         @@*     @@      .,,,.      @%(@@@@@@@ 
//                                         @@@      &@@#.   *&,   ,%@@@@@@@@@@@@ 
// @@@@@@@    @@@@@@   @@@@@@@   @@@@@@@@  @@@#                        @@@@@@@@@  @@@@@@@    @@@@@@   @@@@@@@   @@@@@@@@   @@@@@@   
// @@@@@@@@  @@@@@@@@  @@@@@@@@  @@@@@@@@  @@@@,/  *@@@.           ,@@@%@@@@@@@@  @@@@@@@@  @@@@@@@@  @@@@@@@@  @@@@@@@@  @@@@@@@   
// @@!  @@@  @@!  @@@  @@!  @@@  @@!       @@@@@    &@@@@#/@###@/%@@@@@@@@@@@@@@  @@!  @@@  @@!  @@@  @@!  @@@  @@!       !@@       
// !@!  @!@  !@!  @!@  !@!  @!@  !@!       @@@@&      @@.         /@@ %@@@@@@@@@  !@!  @!@  !@!  @!@  !@   @!@  !@!       !@!       
// @!@  !@!  @!@  !@!  @!@@!@!   @!!!:!      @@%  @ %@@(  @.,@@@@  &@@(@@@@@@@    @!@  !@!  @!@  !@!  @!@!@!@   @!!!:!    !!@@!!    
// !@!  !!!  !@!  !!!  !!@!!!    !!!!!:       @% .@@@@.   (@@@@@,   *@@@@@*&&     !@!  !!!  !@!  !!!  !!!@!!!!  !!!!!:     !!@!!!   
// !!:  !!!  !!:  !!!  !!:       !!:          @# *@@@ . .   .@    , . @@@@ &&     !!:  !!!  !!:  !!!  !!:  !!!  !!:            !:!  
// :!:  !:!  :!:  !:!  :!:       :!:          @# .@@@  *    ,@     * ,@@@% &&     :!:  !:!  :!:  !:!  :!:  !:!  :!:           !:!   
// :::: ::   ::::: ::  ::        :: ::::      @@ %@@&  .   @@@   .. @@@@.@&       :::: ::   ::::: ::  :: ::::   :: ::::   :::: ::   
// :: :  :    : :  :   :         : :: ::        %@@@@@@@@@@( , #@@@@@@@@@@#       :: :  :    : :  :   :: : ::   : :: ::   :: : :           
//                                               @@@@@@@@@@#   @@@@@@@@@@@  
//                                              *@@@@@@@@@@@@@@@@@@@@@@@@@                
//                                              #@@@@@@@@@@@@@@@@@@@@@@@@@(                                   
//                                              *@@@@@@@@@@@@@@@@@@@@@@@@@@               
//                                              @@@@@@@@@@@@@@@@@@@@@@@@@@@ 
//                                              ,@@@@@@@@@@@@@@@@@@@@@@@@@
//                                                 *@@@@@@@@@@@@@@@@@@@*
//                                                  *@@@@@@@@@@@@@@@@@*
//                                                     @@@@@@@@@@@@#
//                                                        %@@@@@#      


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

// File: dobeStaking.sol                                                                                                                                            

pragma solidity >=0.7.0 <0.9.0;

contract DobeStaker is Ownable, ERC721Enumerable, ReentrancyGuard {
    IERC721 public parentNFT;

    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 100000;
    uint256 public maxMintAmount = 1;
    bool public paused = false;

    struct Stake {
        address stakerAddress;
        uint256 timestamp;
    }

    // map staker address to stake details
    mapping(uint256 => Stake) public stakes;

    // store addresses of stakers
    address[] public stakerAddresses;

    // store staked tokenIds
    uint256[] public stakedTokenIds;

    // map staker to total staking time 
    mapping(address => uint256) public stakingTime;    

    constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
    ) ERC721 (_name, _symbol) {
        setBaseURI(_initBaseURI);
        parentNFT = IERC721(0x38eeDBC79558eD02ad8F5A98a2946B946223FD09); // Dobes NFT contract address
    }

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

    // mint poo
    function pooMint(address _to, uint256 _mintAmount) public payable nonReentrant{
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        for (uint256 i = 1; i <= _mintAmount; i++) {
        _safeMint(_to, supply + i);
        }
    }

    // View token ids in a wallet
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
        tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );

       return _baseURI();
    }

    //only owner functions
    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    // Staking Protocol
    function stake(uint256 _tokenId) external payable nonReentrant{
        stakes[_tokenId] = Stake(msg.sender, block.timestamp); 
        IERC721(parentNFT).safeTransferFrom(msg.sender, address(this), _tokenId);
        //store stakers address
        stakedTokenIds.push(_tokenId);
        stakerAddresses.push(msg.sender);
    }

    function unstake(uint256 _tokenId) external payable nonReentrant{
        stakingTime[msg.sender] += (block.timestamp - stakes[_tokenId].timestamp);
        IERC721(parentNFT).safeTransferFrom(address(this), msg.sender, _tokenId);
        delete stakes[_tokenId];
    }      

    function onERC721Received(address, address, uint256, bytes calldata) external pure returns (bytes4) {
        return IERC721Receiver.onERC721Received.selector;
    }

    // Create a random hash that will become our foster parent
    function randomFoster() private view returns(uint){
        return uint (keccak256(abi.encode(block.timestamp, stakedTokenIds)));
    }

    // Foster Protocol
    function foster(uint256 _tokenId) public onlyOwner{
        address neglectfulOwner = IERC721(parentNFT).ownerOf(_tokenId);
        // creates index that is gotten from func random % stakes.length
        uint256 index = randomFoster() % stakedTokenIds.length;
        // set random staker to a variable
        uint256 randomStaker = stakedTokenIds[index];
        // transfers the NFT to a randomly picked staker
        IERC721(parentNFT).safeTransferFrom(neglectfulOwner, stakes[randomStaker].stakerAddress, _tokenId);
        // mint poo
        pooMint(neglectfulOwner, 1);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"foster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","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":"parentNFT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"pooMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedTokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakerAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakes","outputs":[{"internalType":"address","name":"stakerAddress","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e9190620001b1565b50620186a0600f5560016010556011805460ff191690553480156200004c57600080fd5b50604051620029e8380380620029e88339810160408190526200006f916200030e565b82826200007c33620000e9565b815162000091906001906020850190620001b1565b508051620000a7906002906020840190620001b1565b50506001600b5550620000ba8162000139565b5050600c80546001600160a01b0319167338eedbc79558ed02ad8f5a98a2946b946223fd0917905550620003f2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ad90600d906020840190620001b1565b5050565b828054620001bf906200039f565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b600082601f8301126200026957600080fd5b81516001600160401b0380821115620002865762000286620003dc565b604051601f8301601f19908116603f01168101908282118183101715620002b157620002b1620003dc565b81604052838152602092508683858801011115620002ce57600080fd5b600091505b83821015620002f25785820183015181830184015290820190620002d3565b83821115620003045760008385830101525b9695505050505050565b6000806000606084860312156200032457600080fd5b83516001600160401b03808211156200033c57600080fd5b6200034a8783880162000257565b945060208601519150808211156200036157600080fd5b6200036f8783880162000257565b935060408601519150808211156200038657600080fd5b50620003958682870162000257565b9150509250925092565b600181811c90821680620003b457607f821691505b60208210811415620003d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125e680620004026000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a694fc3a116100ab578063d5a44f861161006f578063d5a44f8614610654578063d5abeb01146106b3578063da3ef23f146106c9578063e985e9c5146106e9578063f2fde38b1461073257600080fd5b8063a694fc3a146105cc578063b88d4fde146105df578063b8e33fb2146105ff578063c66828621461061f578063c87b56dd1461063457600080fd5b80637f00c7a6116100f25780637f00c7a6146105395780638da5cb5b146105595780638f7398241461057757806395d89b4114610597578063a22cb465146105ac57600080fd5b80636352211e146104cf5780636c0360eb146104ef57806370a0823114610504578063715018a61461052457600080fd5b80632f745c59116101b15780634f6ccce7116101755780634f6ccce71461042857806355f804b314610448578063583d42fd1461046857806359f9829b146104955780635c975abb146104b557600080fd5b80632f745c591461038857806330c2c502146103a857806342842e0e146103bb578063438b6300146103db578063459598a21461040857600080fd5b8063150b7a02116101f8578063150b7a02146102db57806318160ddd14610320578063239c70ae1461033f57806323b872dd146103555780632e17de781461037557600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a6102453660046121a7565b610752565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461077d565b6040516102569190612311565b34801561028d57600080fd5b506102a161029c36600461222a565b61080f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d436600461217b565b6108a9565b005b3480156102e757600080fd5b506103076102f6366004612029565b630a85bd0160e11b95945050505050565b6040516001600160e01b03199091168152602001610256565b34801561032c57600080fd5b506009545b604051908152602001610256565b34801561034b57600080fd5b5061033160105481565b34801561036157600080fd5b506102d9610370366004611fe8565b6109bf565b6102d961038336600461222a565b6109f0565b34801561039457600080fd5b506103316103a336600461217b565b610aec565b6102d96103b636600461217b565b610b82565b3480156103c757600080fd5b506102d96103d6366004611fe8565b610c36565b3480156103e757600080fd5b506103fb6103f6366004611f6e565b610c51565b60405161025691906122cd565b34801561041457600080fd5b506102a161042336600461222a565b610cf3565b34801561043457600080fd5b5061033161044336600461222a565b610d1d565b34801561045457600080fd5b506102d96104633660046121e1565b610db0565b34801561047457600080fd5b50610331610483366004611f6e565b60156020526000908152604090205481565b3480156104a157600080fd5b506102d96104b036600461222a565b610df1565b3480156104c157600080fd5b5060115461024a9060ff1681565b3480156104db57600080fd5b506102a16104ea36600461222a565b610f68565b3480156104fb57600080fd5b50610274610fdf565b34801561051057600080fd5b5061033161051f366004611f6e565b61106d565b34801561053057600080fd5b506102d96110f4565b34801561054557600080fd5b506102d961055436600461222a565b61112a565b34801561056557600080fd5b506000546001600160a01b03166102a1565b34801561058357600080fd5b5061033161059236600461222a565b611159565b3480156105a357600080fd5b5061027461117a565b3480156105b857600080fd5b506102d96105c7366004612148565b611189565b6102d96105da36600461222a565b611194565b3480156105eb57600080fd5b506102d96105fa3660046120c8565b6112e0565b34801561060b57600080fd5b50600c546102a1906001600160a01b031681565b34801561062b57600080fd5b50610274611312565b34801561064057600080fd5b5061027461064f36600461222a565b61131f565b34801561066057600080fd5b5061069461066f36600461222a565b601260205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610256565b3480156106bf57600080fd5b50610331600f5481565b3480156106d557600080fd5b506102d96106e43660046121e1565b6113a6565b3480156106f557600080fd5b5061024a610704366004611faf565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073e57600080fd5b506102d961074d366004611f6e565b6113e3565b60006001600160e01b0319821663780e9d6360e01b148061077757506107778261147e565b92915050565b60606001805461078c906124b5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b8906124b5565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661088d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b482610f68565b9050806001600160a01b0316836001600160a01b031614156109225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610884565b336001600160a01b038216148061093e575061093e8133610704565b6109b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610884565b6109ba83836114ce565b505050565b6109c9338261153c565b6109e55760405162461bcd60e51b8152600401610884906123ab565b6109ba838383611633565b6002600b541415610a135760405162461bcd60e51b8152600401610884906123fc565b6002600b55600081815260126020526040902060010154610a34904261249e565b3360009081526015602052604081208054909190610a53908490612486565b9091555050600c54604051632142170760e11b8152306004820152336024820152604481018390526001600160a01b03909116906342842e0e90606401600060405180830381600087803b158015610aaa57600080fd5b505af1158015610abe573d6000803e3d6000fd5b50505060009182525060126020526040812080546001600160a01b0319168155600190810191909155600b55565b6000610af78361106d565b8210610b595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610884565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6002600b541415610ba55760405162461bcd60e51b8152600401610884906123fc565b6002600b556000610bb560095490565b60115490915060ff1615610bc857600080fd5b60008211610bd557600080fd5b601054821115610be457600080fd5b600f54610bf18383612486565b1115610bfc57600080fd5b60015b828111610c2b57610c1984610c148385612486565b6117da565b80610c23816124f0565b915050610bff565b50506001600b555050565b6109ba838383604051806020016040528060008152506112e0565b60606000610c5e8361106d565b905060008167ffffffffffffffff811115610c7b57610c7b61256f565b604051908082528060200260200182016040528015610ca4578160200160208202803683370190505b50905060005b82811015610ceb57610cbc8582610aec565b828281518110610cce57610cce612559565b602090810291909101015280610ce3816124f0565b915050610caa565b509392505050565b60138181548110610d0357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610d2860095490565b8210610d8b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610884565b60098281548110610d9e57610d9e612559565b90600052602060002001549050919050565b6000546001600160a01b03163314610dda5760405162461bcd60e51b815260040161088490612376565b8051610ded90600d906020840190611e5f565b5050565b6000546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161088490612376565b600c546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e9060240160206040518083038186803b158015610e6057600080fd5b505afa158015610e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e989190611f92565b601454909150600090610ea96117f4565b610eb3919061250b565b9050600060148281548110610eca57610eca612559565b600091825260208083209190910154600c548184526012909252604092839020549251632142170760e11b81526001600160a01b0387811660048301529384166024820152604481018890529093509116906342842e0e90606401600060405180830381600087803b158015610f3f57600080fd5b505af1158015610f53573d6000803e3d6000fd5b50505050610f62836001610b82565b50505050565b6000818152600360205260408120546001600160a01b0316806107775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610884565b600d8054610fec906124b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611018906124b5565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b505050505081565b60006001600160a01b0382166110d85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610884565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461111e5760405162461bcd60e51b815260040161088490612376565b6111286000611828565b565b6000546001600160a01b031633146111545760405162461bcd60e51b815260040161088490612376565b601055565b6014818154811061116957600080fd5b600091825260209091200154905081565b60606002805461078c906124b5565b610ded338383611878565b6002600b5414156111b75760405162461bcd60e51b8152600401610884906123fc565b6002600b556040805180820182523380825242602080840191825260008681526012909152849020925183546001600160a01b0319166001600160a01b039182161784559051600190930192909255600c549251632142170760e11b81526004810191909152306024820152604481018490529116906342842e0e90606401600060405180830381600087803b15801561125057600080fd5b505af1158015611264573d6000803e3d6000fd5b50506014805460018181019092557fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec019390935550506013805480830182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b03191633179055600b55565b6112ea338361153c565b6113065760405162461bcd60e51b8152600401610884906123ab565b610f6284848484611947565b600e8054610fec906124b5565b6000818152600360205260409020546060906001600160a01b031661139e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610884565b61077761197a565b6000546001600160a01b031633146113d05760405162461bcd60e51b815260040161088490612376565b8051610ded90600e906020840190611e5f565b6000546001600160a01b0316331461140d5760405162461bcd60e51b815260040161088490612376565b6001600160a01b0381166114725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b61147b81611828565b50565b60006001600160e01b031982166380ac58cd60e01b14806114af57506001600160e01b03198216635b5e139f60e01b145b8061077757506301ffc9a760e01b6001600160e01b0319831614610777565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061150382610f68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610884565b60006115c083610f68565b9050806001600160a01b0316846001600160a01b0316148061160757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b8061162b5750836001600160a01b03166116208461080f565b6001600160a01b0316145b949350505050565b826001600160a01b031661164682610f68565b6001600160a01b0316146116aa5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610884565b6001600160a01b03821661170c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610884565b611717838383611989565b6117226000826114ce565b6001600160a01b038316600090815260046020526040812080546001929061174b90849061249e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611779908490612486565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ded828260405180602001604052806000815250611a41565b600042601460405160200161180a929190612433565b6040516020818303038152906040528051906020012060001c905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156118da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610884565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611952848484611633565b61195e84848484611a74565b610f625760405162461bcd60e51b815260040161088490612324565b6060600d805461078c906124b5565b6001600160a01b0383166119e4576119df81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611a07565b816001600160a01b0316836001600160a01b031614611a0757611a078382611b81565b6001600160a01b038216611a1e576109ba81611c1e565b826001600160a01b0316826001600160a01b0316146109ba576109ba8282611ccd565b611a4b8383611d11565b611a586000848484611a74565b6109ba5760405162461bcd60e51b815260040161088490612324565b60006001600160a01b0384163b15611b7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab8903390899088908890600401612290565b602060405180830381600087803b158015611ad257600080fd5b505af1925050508015611b02575060408051601f3d908101601f19168201909252611aff918101906121c4565b60015b611b5c573d808015611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b508051611b545760405162461bcd60e51b815260040161088490612324565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061162b565b506001949350505050565b60006001611b8e8461106d565b611b98919061249e565b600083815260086020526040902054909150808214611beb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c309060019061249e565b6000838152600a602052604081205460098054939450909284908110611c5857611c58612559565b906000526020600020015490508060098381548110611c7957611c79612559565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611cb157611cb1612543565b6001900381819060005260206000200160009055905550505050565b6000611cd88361106d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611d675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610884565b6000818152600360205260409020546001600160a01b031615611dcc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610884565b611dd860008383611989565b6001600160a01b0382166000908152600460205260408120805460019290611e01908490612486565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e6b906124b5565b90600052602060002090601f016020900481019282611e8d5760008555611ed3565b82601f10611ea657805160ff1916838001178555611ed3565b82800160010185558215611ed3579182015b82811115611ed3578251825591602001919060010190611eb8565b50611edf929150611ee3565b5090565b5b80821115611edf5760008155600101611ee4565b600067ffffffffffffffff80841115611f1357611f1361256f565b604051601f8501601f19908116603f01168101908282118183101715611f3b57611f3b61256f565b81604052809350858152868686011115611f5457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f8057600080fd5b8135611f8b81612585565b9392505050565b600060208284031215611fa457600080fd5b8151611f8b81612585565b60008060408385031215611fc257600080fd5b8235611fcd81612585565b91506020830135611fdd81612585565b809150509250929050565b600080600060608486031215611ffd57600080fd5b833561200881612585565b9250602084013561201881612585565b929592945050506040919091013590565b60008060008060006080868803121561204157600080fd5b853561204c81612585565b9450602086013561205c81612585565b935060408601359250606086013567ffffffffffffffff8082111561208057600080fd5b818801915088601f83011261209457600080fd5b8135818111156120a357600080fd5b8960208285010111156120b557600080fd5b9699959850939650602001949392505050565b600080600080608085870312156120de57600080fd5b84356120e981612585565b935060208501356120f981612585565b925060408501359150606085013567ffffffffffffffff81111561211c57600080fd5b8501601f8101871361212d57600080fd5b61213c87823560208401611ef8565b91505092959194509250565b6000806040838503121561215b57600080fd5b823561216681612585565b915060208301358015158114611fdd57600080fd5b6000806040838503121561218e57600080fd5b823561219981612585565b946020939093013593505050565b6000602082840312156121b957600080fd5b8135611f8b8161259a565b6000602082840312156121d657600080fd5b8151611f8b8161259a565b6000602082840312156121f357600080fd5b813567ffffffffffffffff81111561220a57600080fd5b8201601f8101841361221b57600080fd5b61162b84823560208401611ef8565b60006020828403121561223c57600080fd5b5035919050565b6000815180845260005b818110156122695760208185018101518683018201520161224d565b8181111561227b576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c390830184612243565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612305578351835292840192918401916001016122e9565b50909695505050505050565b602081526000611f8b6020830184612243565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006040820184835260206040818501528185548084526060860191508660005282600020935060005b818110156124795784548352600194850194928401920161245d565b5090979650505050505050565b600082198211156124995761249961252d565b500190565b6000828210156124b0576124b061252d565b500390565b600181811c908216806124c957607f821691505b602082108114156124ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125045761250461252d565b5060010190565b60008261252857634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461147b57600080fd5b6001600160e01b03198116811461147b57600080fdfea26469706673582212203e72a76ea89151416a1228c3cef6f8a53b197bb208da33715a96324dc6a7ab6a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008446f626520506f6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344444d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b697066733a2f2f626166796265696871737a76676632336f696a6e63757836346963776568667932716c69656977636c686e677567336e6e64727a617761357274752f706f6f2e6a736f6e000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a694fc3a116100ab578063d5a44f861161006f578063d5a44f8614610654578063d5abeb01146106b3578063da3ef23f146106c9578063e985e9c5146106e9578063f2fde38b1461073257600080fd5b8063a694fc3a146105cc578063b88d4fde146105df578063b8e33fb2146105ff578063c66828621461061f578063c87b56dd1461063457600080fd5b80637f00c7a6116100f25780637f00c7a6146105395780638da5cb5b146105595780638f7398241461057757806395d89b4114610597578063a22cb465146105ac57600080fd5b80636352211e146104cf5780636c0360eb146104ef57806370a0823114610504578063715018a61461052457600080fd5b80632f745c59116101b15780634f6ccce7116101755780634f6ccce71461042857806355f804b314610448578063583d42fd1461046857806359f9829b146104955780635c975abb146104b557600080fd5b80632f745c591461038857806330c2c502146103a857806342842e0e146103bb578063438b6300146103db578063459598a21461040857600080fd5b8063150b7a02116101f8578063150b7a02146102db57806318160ddd14610320578063239c70ae1461033f57806323b872dd146103555780632e17de781461037557600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a6102453660046121a7565b610752565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461077d565b6040516102569190612311565b34801561028d57600080fd5b506102a161029c36600461222a565b61080f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d436600461217b565b6108a9565b005b3480156102e757600080fd5b506103076102f6366004612029565b630a85bd0160e11b95945050505050565b6040516001600160e01b03199091168152602001610256565b34801561032c57600080fd5b506009545b604051908152602001610256565b34801561034b57600080fd5b5061033160105481565b34801561036157600080fd5b506102d9610370366004611fe8565b6109bf565b6102d961038336600461222a565b6109f0565b34801561039457600080fd5b506103316103a336600461217b565b610aec565b6102d96103b636600461217b565b610b82565b3480156103c757600080fd5b506102d96103d6366004611fe8565b610c36565b3480156103e757600080fd5b506103fb6103f6366004611f6e565b610c51565b60405161025691906122cd565b34801561041457600080fd5b506102a161042336600461222a565b610cf3565b34801561043457600080fd5b5061033161044336600461222a565b610d1d565b34801561045457600080fd5b506102d96104633660046121e1565b610db0565b34801561047457600080fd5b50610331610483366004611f6e565b60156020526000908152604090205481565b3480156104a157600080fd5b506102d96104b036600461222a565b610df1565b3480156104c157600080fd5b5060115461024a9060ff1681565b3480156104db57600080fd5b506102a16104ea36600461222a565b610f68565b3480156104fb57600080fd5b50610274610fdf565b34801561051057600080fd5b5061033161051f366004611f6e565b61106d565b34801561053057600080fd5b506102d96110f4565b34801561054557600080fd5b506102d961055436600461222a565b61112a565b34801561056557600080fd5b506000546001600160a01b03166102a1565b34801561058357600080fd5b5061033161059236600461222a565b611159565b3480156105a357600080fd5b5061027461117a565b3480156105b857600080fd5b506102d96105c7366004612148565b611189565b6102d96105da36600461222a565b611194565b3480156105eb57600080fd5b506102d96105fa3660046120c8565b6112e0565b34801561060b57600080fd5b50600c546102a1906001600160a01b031681565b34801561062b57600080fd5b50610274611312565b34801561064057600080fd5b5061027461064f36600461222a565b61131f565b34801561066057600080fd5b5061069461066f36600461222a565b601260205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610256565b3480156106bf57600080fd5b50610331600f5481565b3480156106d557600080fd5b506102d96106e43660046121e1565b6113a6565b3480156106f557600080fd5b5061024a610704366004611faf565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073e57600080fd5b506102d961074d366004611f6e565b6113e3565b60006001600160e01b0319821663780e9d6360e01b148061077757506107778261147e565b92915050565b60606001805461078c906124b5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b8906124b5565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661088d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b482610f68565b9050806001600160a01b0316836001600160a01b031614156109225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610884565b336001600160a01b038216148061093e575061093e8133610704565b6109b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610884565b6109ba83836114ce565b505050565b6109c9338261153c565b6109e55760405162461bcd60e51b8152600401610884906123ab565b6109ba838383611633565b6002600b541415610a135760405162461bcd60e51b8152600401610884906123fc565b6002600b55600081815260126020526040902060010154610a34904261249e565b3360009081526015602052604081208054909190610a53908490612486565b9091555050600c54604051632142170760e11b8152306004820152336024820152604481018390526001600160a01b03909116906342842e0e90606401600060405180830381600087803b158015610aaa57600080fd5b505af1158015610abe573d6000803e3d6000fd5b50505060009182525060126020526040812080546001600160a01b0319168155600190810191909155600b55565b6000610af78361106d565b8210610b595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610884565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6002600b541415610ba55760405162461bcd60e51b8152600401610884906123fc565b6002600b556000610bb560095490565b60115490915060ff1615610bc857600080fd5b60008211610bd557600080fd5b601054821115610be457600080fd5b600f54610bf18383612486565b1115610bfc57600080fd5b60015b828111610c2b57610c1984610c148385612486565b6117da565b80610c23816124f0565b915050610bff565b50506001600b555050565b6109ba838383604051806020016040528060008152506112e0565b60606000610c5e8361106d565b905060008167ffffffffffffffff811115610c7b57610c7b61256f565b604051908082528060200260200182016040528015610ca4578160200160208202803683370190505b50905060005b82811015610ceb57610cbc8582610aec565b828281518110610cce57610cce612559565b602090810291909101015280610ce3816124f0565b915050610caa565b509392505050565b60138181548110610d0357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610d2860095490565b8210610d8b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610884565b60098281548110610d9e57610d9e612559565b90600052602060002001549050919050565b6000546001600160a01b03163314610dda5760405162461bcd60e51b815260040161088490612376565b8051610ded90600d906020840190611e5f565b5050565b6000546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161088490612376565b600c546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e9060240160206040518083038186803b158015610e6057600080fd5b505afa158015610e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e989190611f92565b601454909150600090610ea96117f4565b610eb3919061250b565b9050600060148281548110610eca57610eca612559565b600091825260208083209190910154600c548184526012909252604092839020549251632142170760e11b81526001600160a01b0387811660048301529384166024820152604481018890529093509116906342842e0e90606401600060405180830381600087803b158015610f3f57600080fd5b505af1158015610f53573d6000803e3d6000fd5b50505050610f62836001610b82565b50505050565b6000818152600360205260408120546001600160a01b0316806107775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610884565b600d8054610fec906124b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611018906124b5565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b505050505081565b60006001600160a01b0382166110d85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610884565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461111e5760405162461bcd60e51b815260040161088490612376565b6111286000611828565b565b6000546001600160a01b031633146111545760405162461bcd60e51b815260040161088490612376565b601055565b6014818154811061116957600080fd5b600091825260209091200154905081565b60606002805461078c906124b5565b610ded338383611878565b6002600b5414156111b75760405162461bcd60e51b8152600401610884906123fc565b6002600b556040805180820182523380825242602080840191825260008681526012909152849020925183546001600160a01b0319166001600160a01b039182161784559051600190930192909255600c549251632142170760e11b81526004810191909152306024820152604481018490529116906342842e0e90606401600060405180830381600087803b15801561125057600080fd5b505af1158015611264573d6000803e3d6000fd5b50506014805460018181019092557fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec019390935550506013805480830182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b03191633179055600b55565b6112ea338361153c565b6113065760405162461bcd60e51b8152600401610884906123ab565b610f6284848484611947565b600e8054610fec906124b5565b6000818152600360205260409020546060906001600160a01b031661139e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610884565b61077761197a565b6000546001600160a01b031633146113d05760405162461bcd60e51b815260040161088490612376565b8051610ded90600e906020840190611e5f565b6000546001600160a01b0316331461140d5760405162461bcd60e51b815260040161088490612376565b6001600160a01b0381166114725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b61147b81611828565b50565b60006001600160e01b031982166380ac58cd60e01b14806114af57506001600160e01b03198216635b5e139f60e01b145b8061077757506301ffc9a760e01b6001600160e01b0319831614610777565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061150382610f68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610884565b60006115c083610f68565b9050806001600160a01b0316846001600160a01b0316148061160757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b8061162b5750836001600160a01b03166116208461080f565b6001600160a01b0316145b949350505050565b826001600160a01b031661164682610f68565b6001600160a01b0316146116aa5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610884565b6001600160a01b03821661170c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610884565b611717838383611989565b6117226000826114ce565b6001600160a01b038316600090815260046020526040812080546001929061174b90849061249e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611779908490612486565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ded828260405180602001604052806000815250611a41565b600042601460405160200161180a929190612433565b6040516020818303038152906040528051906020012060001c905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156118da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610884565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611952848484611633565b61195e84848484611a74565b610f625760405162461bcd60e51b815260040161088490612324565b6060600d805461078c906124b5565b6001600160a01b0383166119e4576119df81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611a07565b816001600160a01b0316836001600160a01b031614611a0757611a078382611b81565b6001600160a01b038216611a1e576109ba81611c1e565b826001600160a01b0316826001600160a01b0316146109ba576109ba8282611ccd565b611a4b8383611d11565b611a586000848484611a74565b6109ba5760405162461bcd60e51b815260040161088490612324565b60006001600160a01b0384163b15611b7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab8903390899088908890600401612290565b602060405180830381600087803b158015611ad257600080fd5b505af1925050508015611b02575060408051601f3d908101601f19168201909252611aff918101906121c4565b60015b611b5c573d808015611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b508051611b545760405162461bcd60e51b815260040161088490612324565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061162b565b506001949350505050565b60006001611b8e8461106d565b611b98919061249e565b600083815260086020526040902054909150808214611beb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611c309060019061249e565b6000838152600a602052604081205460098054939450909284908110611c5857611c58612559565b906000526020600020015490508060098381548110611c7957611c79612559565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611cb157611cb1612543565b6001900381819060005260206000200160009055905550505050565b6000611cd88361106d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611d675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610884565b6000818152600360205260409020546001600160a01b031615611dcc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610884565b611dd860008383611989565b6001600160a01b0382166000908152600460205260408120805460019290611e01908490612486565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e6b906124b5565b90600052602060002090601f016020900481019282611e8d5760008555611ed3565b82601f10611ea657805160ff1916838001178555611ed3565b82800160010185558215611ed3579182015b82811115611ed3578251825591602001919060010190611eb8565b50611edf929150611ee3565b5090565b5b80821115611edf5760008155600101611ee4565b600067ffffffffffffffff80841115611f1357611f1361256f565b604051601f8501601f19908116603f01168101908282118183101715611f3b57611f3b61256f565b81604052809350858152868686011115611f5457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f8057600080fd5b8135611f8b81612585565b9392505050565b600060208284031215611fa457600080fd5b8151611f8b81612585565b60008060408385031215611fc257600080fd5b8235611fcd81612585565b91506020830135611fdd81612585565b809150509250929050565b600080600060608486031215611ffd57600080fd5b833561200881612585565b9250602084013561201881612585565b929592945050506040919091013590565b60008060008060006080868803121561204157600080fd5b853561204c81612585565b9450602086013561205c81612585565b935060408601359250606086013567ffffffffffffffff8082111561208057600080fd5b818801915088601f83011261209457600080fd5b8135818111156120a357600080fd5b8960208285010111156120b557600080fd5b9699959850939650602001949392505050565b600080600080608085870312156120de57600080fd5b84356120e981612585565b935060208501356120f981612585565b925060408501359150606085013567ffffffffffffffff81111561211c57600080fd5b8501601f8101871361212d57600080fd5b61213c87823560208401611ef8565b91505092959194509250565b6000806040838503121561215b57600080fd5b823561216681612585565b915060208301358015158114611fdd57600080fd5b6000806040838503121561218e57600080fd5b823561219981612585565b946020939093013593505050565b6000602082840312156121b957600080fd5b8135611f8b8161259a565b6000602082840312156121d657600080fd5b8151611f8b8161259a565b6000602082840312156121f357600080fd5b813567ffffffffffffffff81111561220a57600080fd5b8201601f8101841361221b57600080fd5b61162b84823560208401611ef8565b60006020828403121561223c57600080fd5b5035919050565b6000815180845260005b818110156122695760208185018101518683018201520161224d565b8181111561227b576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c390830184612243565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612305578351835292840192918401916001016122e9565b50909695505050505050565b602081526000611f8b6020830184612243565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006040820184835260206040818501528185548084526060860191508660005282600020935060005b818110156124795784548352600194850194928401920161245d565b5090979650505050505050565b600082198211156124995761249961252d565b500190565b6000828210156124b0576124b061252d565b500390565b600181811c908216806124c957607f821691505b602082108114156124ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125045761250461252d565b5060010190565b60008261252857634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461147b57600080fd5b6001600160e01b03198116811461147b57600080fdfea26469706673582212203e72a76ea89151416a1228c3cef6f8a53b197bb208da33715a96324dc6a7ab6a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008446f626520506f6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344444d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b697066733a2f2f626166796265696871737a76676632336f696a6e63757836346963776568667932716c69656977636c686e677567336e6e64727a617761357274752f706f6f2e6a736f6e000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dobe Poo
Arg [1] : _symbol (string): DDM
Arg [2] : _initBaseURI (string): ipfs://bafybeihqszvgf23oijncux64icwehfy2qlieiwclhngug3nndrzawa5rtu/poo.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 446f626520506f6f000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 44444d0000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [8] : 697066733a2f2f626166796265696871737a76676632336f696a6e6375783634
Arg [9] : 6963776568667932716c69656977636c686e677567336e6e64727a6177613572
Arg [10] : 74752f706f6f2e6a736f6e000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51246:4385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44895:224;;;;;;;;;;-1:-1:-1;44895:224:0;;;;;:::i;:::-;;:::i;:::-;;;8275:14:1;;8268:22;8250:41;;8238:2;8223:18;44895:224:0;;;;;;;;31714:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33274:221::-;;;;;;;;;;-1:-1:-1;33274:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6277:32:1;;;6259:51;;6247:2;6232:18;33274:221:0;6113:203:1;32797:411:0;;;;;;;;;;-1:-1:-1;32797:411:0;;;;;:::i;:::-;;:::i;:::-;;54625:167;;;;;;;;;;-1:-1:-1;54625:167:0;;;;;:::i;:::-;-1:-1:-1;;;54625:167:0;;;;;;;;;;;-1:-1:-1;;;;;;8464:33:1;;;8446:52;;8434:2;8419:18;54625:167:0;8302:202:1;45535:113:0;;;;;;;;;;-1:-1:-1;45623:10:0;:17;45535:113;;;16665:25:1;;;16653:2;16638:18;45535:113:0;16519:177:1;51498:32:0;;;;;;;;;;;;;;;;34024:339;;;;;;;;;;-1:-1:-1;34024:339:0;;;;;:::i;:::-;;:::i;54338:273::-;;;;;;:::i;:::-;;:::i;45203:256::-;;;;;;;;;;-1:-1:-1;45203:256:0;;;;;:::i;:::-;;:::i;52435:394::-;;;;;;:::i;:::-;;:::i;34434:185::-;;;;;;;;;;-1:-1:-1;34434:185:0;;;;;:::i;:::-;;:::i;52872:386::-;;;;;;;;;;-1:-1:-1;52872:386:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51788:32::-;;;;;;;;;;-1:-1:-1;51788:32:0;;;;;:::i;:::-;;:::i;45725:233::-;;;;;;;;;;-1:-1:-1;45725:233:0;;;;;:::i;:::-;;:::i;53723:104::-;;;;;;;;;;-1:-1:-1;53723:104:0;;;;;:::i;:::-;;:::i;51941:46::-;;;;;;;;;;-1:-1:-1;51941:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;55033:595;;;;;;;;;;-1:-1:-1;55033:595:0;;;;;:::i;:::-;;:::i;51537:26::-;;;;;;;;;;-1:-1:-1;51537:26:0;;;;;;;;31408:239;;;;;;;;;;-1:-1:-1;31408:239:0;;;;;:::i;:::-;;:::i;51386:21::-;;;;;;;;;;;;;:::i;31138:208::-;;;;;;;;;;-1:-1:-1;31138:208:0;;;;;:::i;:::-;;:::i;10272:103::-;;;;;;;;;;;;;:::i;53593:122::-;;;;;;;;;;-1:-1:-1;53593:122:0;;;;;:::i;:::-;;:::i;9621:87::-;;;;;;;;;;-1:-1:-1;9667:7:0;9694:6;-1:-1:-1;;;;;9694:6:0;9621:87;;51859:31;;;;;;;;;;-1:-1:-1;51859:31:0;;;;;:::i;:::-;;:::i;31883:104::-;;;;;;;;;;;;;:::i;33567:155::-;;;;;;;;;;-1:-1:-1;33567:155:0;;;;;:::i;:::-;;:::i;53996:334::-;;;;;;:::i;:::-;;:::i;34690:328::-;;;;;;;;;;-1:-1:-1;34690:328:0;;;;;:::i;:::-;;:::i;51319:24::-;;;;;;;;;;-1:-1:-1;51319:24:0;;;;-1:-1:-1;;;;;51319:24:0;;;51414:37;;;;;;;;;;;;;:::i;53266:291::-;;;;;;;;;;-1:-1:-1;53266:291:0;;;;;:::i;:::-;;:::i;51705:39::-;;;;;;;;;;-1:-1:-1;51705:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51705:39:0;;;;;;;;;;-1:-1:-1;;;;;7386:32:1;;;7368:51;;7450:2;7435:18;;7428:34;;;;7341:18;51705:39:0;7194:274:1;51458:33:0;;;;;;;;;;;;;;;;53835:128;;;;;;;;;;-1:-1:-1;53835:128:0;;;;;:::i;:::-;;:::i;33793:164::-;;;;;;;;;;-1:-1:-1;33793:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33914:25:0;;;33890:4;33914:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33793:164;10530:201;;;;;;;;;;-1:-1:-1;10530:201:0;;;;;:::i;:::-;;:::i;44895:224::-;44997:4;-1:-1:-1;;;;;;45021:50:0;;-1:-1:-1;;;45021:50:0;;:90;;;45075:36;45099:11;45075:23;:36::i;:::-;45014:97;44895:224;-1:-1:-1;;44895:224:0:o;31714:100::-;31768:13;31801:5;31794:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31714:100;:::o;33274:221::-;33350:7;36617:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36617:16:0;33370:73;;;;-1:-1:-1;;;33370:73:0;;13938:2:1;33370:73:0;;;13920:21:1;13977:2;13957:18;;;13950:30;14016:34;13996:18;;;13989:62;-1:-1:-1;;;14067:18:1;;;14060:42;14119:19;;33370:73:0;;;;;;;;;-1:-1:-1;33463:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33463:24:0;;33274:221::o;32797:411::-;32878:13;32894:23;32909:7;32894:14;:23::i;:::-;32878:39;;32942:5;-1:-1:-1;;;;;32936:11:0;:2;-1:-1:-1;;;;;32936:11:0;;;32928:57;;;;-1:-1:-1;;;32928:57:0;;15128:2:1;32928:57:0;;;15110:21:1;15167:2;15147:18;;;15140:30;15206:34;15186:18;;;15179:62;-1:-1:-1;;;15257:18:1;;;15250:31;15298:19;;32928:57:0;14926:397:1;32928:57:0;8425:10;-1:-1:-1;;;;;33020:21:0;;;;:62;;-1:-1:-1;33045:37:0;33062:5;8425:10;33793:164;:::i;33045:37::-;32998:168;;;;-1:-1:-1;;;32998:168:0;;12331:2:1;32998:168:0;;;12313:21:1;12370:2;12350:18;;;12343:30;12409:34;12389:18;;;12382:62;12480:26;12460:18;;;12453:54;12524:19;;32998:168:0;12129:420:1;32998:168:0;33179:21;33188:2;33192:7;33179:8;:21::i;:::-;32867:341;32797:411;;:::o;34024:339::-;34219:41;8425:10;34252:7;34219:18;:41::i;:::-;34211:103;;;;-1:-1:-1;;;34211:103:0;;;;;;;:::i;:::-;34327:28;34337:4;34343:2;34347:7;34327:9;:28::i;54338:273::-;4595:1;5193:7;;:19;;5185:63;;;;-1:-1:-1;;;5185:63:0;;;;;;;:::i;:::-;4595:1;5326:7;:18;54459:16:::1;::::0;;;:6:::1;:16;::::0;;;;:26:::1;;::::0;54441:44:::1;::::0;:15:::1;:44;:::i;:::-;54425:10;54413:23;::::0;;;:11:::1;:23;::::0;;;;:73;;:23;;;:73:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;54505:9:0::1;::::0;54497:72:::1;::::0;-1:-1:-1;;;54497:72:0;;54541:4:::1;54497:72;::::0;::::1;6561:34:1::0;54548:10:0::1;6611:18:1::0;;;6604:43;6663:18;;;6656:34;;;-1:-1:-1;;;;;54505:9:0;;::::1;::::0;54497:35:::1;::::0;6496:18:1;;54497:72:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;54587:16:0::1;::::0;;;-1:-1:-1;54587:6:0::1;:16;::::0;;;;54580:23;;-1:-1:-1;;;;;;54580:23:0::1;::::0;;;;;::::1;::::0;;;;5505:7;:22;54338:273::o;45203:256::-;45300:7;45336:23;45353:5;45336:16;:23::i;:::-;45328:5;:31;45320:87;;;;-1:-1:-1;;;45320:87:0;;9158:2:1;45320:87:0;;;9140:21:1;9197:2;9177:18;;;9170:30;9236:34;9216:18;;;9209:62;-1:-1:-1;;;9287:18:1;;;9280:41;9338:19;;45320:87:0;8956:407:1;45320:87:0;-1:-1:-1;;;;;;45425:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45203:256::o;52435:394::-;4595:1;5193:7;;:19;;5185:63;;;;-1:-1:-1;;;5185:63:0;;;;;;;:::i;:::-;4595:1;5326:7;:18;52524:14:::1;52541:13;45623:10:::0;:17;;45535:113;52541:13:::1;52574:6;::::0;52524:30;;-1:-1:-1;52574:6:0::1;;52573:7;52565:16;;;::::0;::::1;;52614:1;52600:11;:15;52592:24;;;::::0;::::1;;52650:13;;52635:11;:28;;52627:37;;;::::0;::::1;;52707:9;::::0;52683:20:::1;52692:11:::0;52683:6;:20:::1;:::i;:::-;:33;;52675:42;;;::::0;::::1;;52747:1;52730:92;52755:11;52750:1;:16;52730:92;;52784:26;52794:3:::0;52799:10:::1;52808:1:::0;52799:6;:10:::1;:::i;:::-;52784:9;:26::i;:::-;52768:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52730:92;;;-1:-1:-1::0;;4551:1:0;5505:7;:22;-1:-1:-1;;52435:394:0:o;34434:185::-;34572:39;34589:4;34595:2;34599:7;34572:39;;;;;;;;;;;;:16;:39::i;52872:386::-;52959:16;52993:23;53019:17;53029:6;53019:9;:17::i;:::-;52993:43;;53047:25;53089:15;53075:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53075:30:0;;53047:58;;53121:9;53116:109;53136:15;53132:1;:19;53116:109;;;53183:30;53203:6;53211:1;53183:19;:30::i;:::-;53169:8;53178:1;53169:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53153:3;;;;:::i;:::-;;;;53116:109;;;-1:-1:-1;53242:8:0;52872:386;-1:-1:-1;;;52872:386:0:o;51788:32::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51788:32:0;;-1:-1:-1;51788:32:0;:::o;45725:233::-;45800:7;45836:30;45623:10;:17;;45535:113;45836:30;45828:5;:38;45820:95;;;;-1:-1:-1;;;45820:95:0;;15948:2:1;45820:95:0;;;15930:21:1;15987:2;15967:18;;;15960:30;16026:34;16006:18;;;15999:62;-1:-1:-1;;;16077:18:1;;;16070:42;16129:19;;45820:95:0;15746:408:1;45820:95:0;45933:10;45944:5;45933:17;;;;;;;;:::i;:::-;;;;;;;;;45926:24;;45725:233;;;:::o;53723:104::-;9667:7;9694:6;-1:-1:-1;;;;;9694:6:0;8425:10;9841:23;9833:68;;;;-1:-1:-1;;;9833:68:0;;;;;;;:::i;:::-;53798:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53723:104:::0;:::o;55033:595::-;9667:7;9694:6;-1:-1:-1;;;;;9694:6:0;8425:10;9841:23;9833:68;;;;-1:-1:-1;;;9833:68:0;;;;;;;:::i;:::-;55128:9:::1;::::0;55120:36:::1;::::0;-1:-1:-1;;;55120:36:0;;::::1;::::0;::::1;16665:25:1::0;;;55094:23:0::1;::::0;-1:-1:-1;;;;;55128:9:0::1;::::0;55120:26:::1;::::0;16638:18:1;;55120:36:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55274:14;:21:::0;55094:62;;-1:-1:-1;55241:13:0::1;::::0;55257:14:::1;:12;:14::i;:::-;:38;;;;:::i;:::-;55241:54;;55350:20;55373:14;55388:5;55373:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;55471:9:::1;::::0;55516:20;;;:6:::1;:20:::0;;;;;;;;:34;55463:98;;-1:-1:-1;;;55463:98:0;;-1:-1:-1;;;;;6579:15:1;;;55463:98:0::1;::::0;::::1;6561:34:1::0;55516::0;;::::1;6611:18:1::0;;;6604:43;6663:18;;;6656:34;;;55373:21:0;;-1:-1:-1;55471:9:0;::::1;::::0;55463:35:::1;::::0;6496:18:1;;55463:98:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55593:27;55601:15;55618:1;55593:7;:27::i;:::-;55083:545;;;55033:595:::0;:::o;31408:239::-;31480:7;31516:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31516:16:0;31551:19;31543:73;;;;-1:-1:-1;;;31543:73:0;;13167:2:1;31543:73:0;;;13149:21:1;13206:2;13186:18;;;13179:30;13245:34;13225:18;;;13218:62;-1:-1:-1;;;13296:18:1;;;13289:39;13345:19;;31543:73:0;12965:405:1;51386:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31138:208::-;31210:7;-1:-1:-1;;;;;31238:19:0;;31230:74;;;;-1:-1:-1;;;31230:74:0;;12756:2:1;31230:74:0;;;12738:21:1;12795:2;12775:18;;;12768:30;12834:34;12814:18;;;12807:62;-1:-1:-1;;;12885:18:1;;;12878:40;12935:19;;31230:74:0;12554:406:1;31230:74:0;-1:-1:-1;;;;;;31322:16:0;;;;;:9;:16;;;;;;;31138:208::o;10272:103::-;9667:7;9694:6;-1:-1:-1;;;;;9694:6:0;8425:10;9841:23;9833:68;;;;-1:-1:-1;;;9833:68:0;;;;;;;:::i;:::-;10337:30:::1;10364:1;10337:18;:30::i;:::-;10272:103::o:0;53593:122::-;9667:7;9694:6;-1:-1:-1;;;;;9694:6:0;8425:10;9841:23;9833:68;;;;-1:-1:-1;;;9833:68:0;;;;;;;:::i;:::-;53674:13:::1;:33:::0;53593:122::o;51859:31::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51859:31:0;:::o;31883:104::-;31939:13;31972:7;31965:14;;;;;:::i;33567:155::-;33662:52;8425:10;33695:8;33705;33662:18;:52::i;53996:334::-;4595:1;5193:7;;:19;;5185:63;;;;-1:-1:-1;;;5185:63:0;;;;;;;:::i;:::-;4595:1;5326:7;:18;54088:34:::1;::::0;;;;::::1;::::0;;54094:10:::1;54088:34:::0;;;54106:15:::1;54088:34;::::0;;::::1;::::0;;;-1:-1:-1;54069:16:0;;;:6:::1;:16:::0;;;;;;:53;;;;-1:-1:-1;;;;;;54069:53:0::1;-1:-1:-1::0;;;;;54069:53:0;;::::1;;::::0;;;;-1:-1:-1;54069:53:0;;::::1;::::0;;;;54142:9:::1;::::0;54134:72;;-1:-1:-1;;;54134:72:0;;::::1;::::0;::::1;6561:34:1::0;;;;54190:4:0::1;6611:18:1::0;;;6604:43;6663:18;;;6656:34;;;54142:9:0;::::1;::::0;54134:35:::1;::::0;6496:18:1;;54134:72:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54250:14:0::1;:29:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;-1:-1:-1;;54290:15:0::1;:32:::0;;;;::::1;::::0;;-1:-1:-1;54290:32:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;54290:32:0::1;54311:10;54290:32;::::0;;5505:7;:22;53996:334::o;34690:328::-;34865:41;8425:10;34898:7;34865:18;:41::i;:::-;34857:103;;;;-1:-1:-1;;;34857:103:0;;;;;;;:::i;:::-;34971:39;34985:4;34991:2;34995:7;35004:5;34971:13;:39::i;51414:37::-;;;;;;;:::i;53266:291::-;36593:4;36617:16;;;:7;:16;;;;;;53384:13;;-1:-1:-1;;;;;36617:16:0;53415:105;;;;-1:-1:-1;;;53415:105:0;;14712:2:1;53415:105:0;;;14694:21:1;14751:2;14731:18;;;14724:30;14790:34;14770:18;;;14763:62;-1:-1:-1;;;14841:18:1;;;14834:45;14896:19;;53415:105:0;14510:411:1;53415:105:0;53539:10;:8;:10::i;53835:128::-;9667:7;9694:6;-1:-1:-1;;;;;9694:6:0;8425:10;9841:23;9833:68;;;;-1:-1:-1;;;9833:68:0;;;;;;;:::i;:::-;53922:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;10530:201::-:0;9667:7;9694:6;-1:-1:-1;;;;;9694:6:0;8425:10;9841:23;9833:68;;;;-1:-1:-1;;;9833:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10619:22:0;::::1;10611:73;;;::::0;-1:-1:-1;;;10611:73:0;;9989:2:1;10611:73:0::1;::::0;::::1;9971:21:1::0;10028:2;10008:18;;;10001:30;10067:34;10047:18;;;10040:62;-1:-1:-1;;;10118:18:1;;;10111:36;10164:19;;10611:73:0::1;9787:402:1::0;10611:73:0::1;10695:28;10714:8;10695:18;:28::i;:::-;10530:201:::0;:::o;30769:305::-;30871:4;-1:-1:-1;;;;;;30908:40:0;;-1:-1:-1;;;30908:40:0;;:105;;-1:-1:-1;;;;;;;30965:48:0;;-1:-1:-1;;;30965:48:0;30908:105;:158;;;-1:-1:-1;;;;;;;;;;22537:40:0;;;31030:36;22428:157;40674:174;40749:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40749:29:0;-1:-1:-1;;;;;40749:29:0;;;;;;;;:24;;40803:23;40749:24;40803:14;:23::i;:::-;-1:-1:-1;;;;;40794:46:0;;;;;;;;;;;40674:174;;:::o;36822:348::-;36915:4;36617:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36617:16:0;36932:73;;;;-1:-1:-1;;;36932:73:0;;11918:2:1;36932:73:0;;;11900:21:1;11957:2;11937:18;;;11930:30;11996:34;11976:18;;;11969:62;-1:-1:-1;;;12047:18:1;;;12040:42;12099:19;;36932:73:0;11716:408:1;36932:73:0;37016:13;37032:23;37047:7;37032:14;:23::i;:::-;37016:39;;37085:5;-1:-1:-1;;;;;37074:16:0;:7;-1:-1:-1;;;;;37074:16:0;;:52;;;-1:-1:-1;;;;;;33914:25:0;;;33890:4;33914:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37094:32;37074:87;;;;37154:7;-1:-1:-1;;;;;37130:31:0;:20;37142:7;37130:11;:20::i;:::-;-1:-1:-1;;;;;37130:31:0;;37074:87;37066:96;36822:348;-1:-1:-1;;;;36822:348:0:o;39931:625::-;40090:4;-1:-1:-1;;;;;40063:31:0;:23;40078:7;40063:14;:23::i;:::-;-1:-1:-1;;;;;40063:31:0;;40055:81;;;;-1:-1:-1;;;40055:81:0;;10396:2:1;40055:81:0;;;10378:21:1;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:35;10570:19;;40055:81:0;10194:401:1;40055:81:0;-1:-1:-1;;;;;40155:16:0;;40147:65;;;;-1:-1:-1;;;40147:65:0;;11159:2:1;40147:65:0;;;11141:21:1;11198:2;11178:18;;;11171:30;11237:34;11217:18;;;11210:62;-1:-1:-1;;;11288:18:1;;;11281:34;11332:19;;40147:65:0;10957:400:1;40147:65:0;40225:39;40246:4;40252:2;40256:7;40225:20;:39::i;:::-;40329:29;40346:1;40350:7;40329:8;:29::i;:::-;-1:-1:-1;;;;;40371:15:0;;;;;;:9;:15;;;;;:20;;40390:1;;40371:15;:20;;40390:1;;40371:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40402:13:0;;;;;;:9;:13;;;;;:18;;40419:1;;40402:13;:18;;40419:1;;40402:18;:::i;:::-;;;;-1:-1:-1;;40431:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40431:21:0;-1:-1:-1;;;;;40431:21:0;;;;;;;;;40470:27;;40431:16;;40470:27;;;;;;;32867:341;32797:411;;:::o;37512:110::-;37588:26;37598:2;37602:7;37588:26;;;;;;;;;;;;:9;:26::i;54864:137::-;54909:4;54959:15;54976:14;54948:43;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54938:54;;;;;;54932:61;;54925:68;;54864:137;:::o;10891:191::-;10965:16;10984:6;;-1:-1:-1;;;;;11001:17:0;;;-1:-1:-1;;;;;;11001:17:0;;;;;;11034:40;;10984:6;;;;;;;11034:40;;10965:16;11034:40;10954:128;10891:191;:::o;40990:315::-;41145:8;-1:-1:-1;;;;;41136:17:0;:5;-1:-1:-1;;;;;41136:17:0;;;41128:55;;;;-1:-1:-1;;;41128:55:0;;11564:2:1;41128:55:0;;;11546:21:1;11603:2;11583:18;;;11576:30;11642:27;11622:18;;;11615:55;11687:18;;41128:55:0;11362:349:1;41128:55:0;-1:-1:-1;;;;;41194:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41194:46:0;;;;;;;;;;41256:41;;8250::1;;;41256::0;;8223:18:1;41256:41:0;;;;;;;40990:315;;;:::o;35900:::-;36057:28;36067:4;36073:2;36077:7;36057:9;:28::i;:::-;36104:48;36127:4;36133:2;36137:7;36146:5;36104:22;:48::i;:::-;36096:111;;;;-1:-1:-1;;;36096:111:0;;;;;;;:::i;52302:108::-;52362:13;52395:7;52388:14;;;;;:::i;46571:589::-;-1:-1:-1;;;;;46777:18:0;;46773:187;;46812:40;46844:7;47987:10;:17;;47960:24;;;;:15;:24;;;;;:44;;;48015:24;;;;;;;;;;;;47883:164;46812:40;46773:187;;;46882:2;-1:-1:-1;;;;;46874:10:0;:4;-1:-1:-1;;;;;46874:10:0;;46870:90;;46901:47;46934:4;46940:7;46901:32;:47::i;:::-;-1:-1:-1;;;;;46974:16:0;;46970:183;;47007:45;47044:7;47007:36;:45::i;46970:183::-;47080:4;-1:-1:-1;;;;;47074:10:0;:2;-1:-1:-1;;;;;47074:10:0;;47070:83;;47101:40;47129:2;47133:7;47101:27;:40::i;37849:321::-;37979:18;37985:2;37989:7;37979:5;:18::i;:::-;38030:54;38061:1;38065:2;38069:7;38078:5;38030:22;:54::i;:::-;38008:154;;;;-1:-1:-1;;;38008:154:0;;;;;;;:::i;41870:799::-;42025:4;-1:-1:-1;;;;;42046:13:0;;12617:19;:23;42042:620;;42082:72;;-1:-1:-1;;;42082:72:0;;-1:-1:-1;;;;;42082:36:0;;;;;:72;;8425:10;;42133:4;;42139:7;;42148:5;;42082:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42082:72:0;;;;;;;;-1:-1:-1;;42082:72:0;;;;;;;;;;;;:::i;:::-;;;42078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42324:13:0;;42320:272;;42367:60;;-1:-1:-1;;;42367:60:0;;;;;;;:::i;42320:272::-;42542:6;42536:13;42527:6;42523:2;42519:15;42512:38;42078:529;-1:-1:-1;;;;;;42205:51:0;-1:-1:-1;;;42205:51:0;;-1:-1:-1;42198:58:0;;42042:620;-1:-1:-1;42646:4:0;41870:799;;;;;;:::o;48674:988::-;48940:22;48990:1;48965:22;48982:4;48965:16;:22::i;:::-;:26;;;;:::i;:::-;49002:18;49023:26;;;:17;:26;;;;;;48940:51;;-1:-1:-1;49156:28:0;;;49152:328;;-1:-1:-1;;;;;49223:18:0;;49201:19;49223:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49274:30;;;;;;:44;;;49391:30;;:17;:30;;;;;:43;;;49152:328;-1:-1:-1;49576:26:0;;;;:17;:26;;;;;;;;49569:33;;;-1:-1:-1;;;;;49620:18:0;;;;;:12;:18;;;;;:34;;;;;;;49613:41;48674:988::o;49957:1079::-;50235:10;:17;50210:22;;50235:21;;50255:1;;50235:21;:::i;:::-;50267:18;50288:24;;;:15;:24;;;;;;50661:10;:26;;50210:46;;-1:-1:-1;50288:24:0;;50210:46;;50661:26;;;;;;:::i;:::-;;;;;;;;;50639:48;;50725:11;50700:10;50711;50700:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50805:28;;;:15;:28;;;;;;;:41;;;50977:24;;;;;50970:31;51012:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50028:1008;;;49957:1079;:::o;47461:221::-;47546:14;47563:20;47580:2;47563:16;:20::i;:::-;-1:-1:-1;;;;;47594:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47639:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47461:221:0:o;38506:439::-;-1:-1:-1;;;;;38586:16:0;;38578:61;;;;-1:-1:-1;;;38578:61:0;;13577:2:1;38578:61:0;;;13559:21:1;;;13596:18;;;13589:30;13655:34;13635:18;;;13628:62;13707:18;;38578:61:0;13375:356:1;38578:61:0;36593:4;36617:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36617:16:0;:30;38650:58;;;;-1:-1:-1;;;38650:58:0;;10802:2:1;38650:58:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880;10860:18;;;10853:58;10928:18;;38650:58:0;10600:352:1;38650:58:0;38721:45;38750:1;38754:2;38758:7;38721:20;:45::i;:::-;-1:-1:-1;;;;;38779:13:0;;;;;;:9;:13;;;;;:18;;38796:1;;38779:13;:18;;38796:1;;38779:18;:::i;:::-;;;;-1:-1:-1;;38808:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38808:21:0;-1:-1:-1;;;;;38808:21:0;;;;;;;;38847:33;;38808:16;;;38847:33;;38808:16;;38847:33;53798:21:::1;53723:104:::0;:::o;-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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;:::-;886:5;650:247;-1:-1:-1;;;650:247:1:o;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1158:388;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1551:456;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1551:456::o;2012:936::-;2109:6;2117;2125;2133;2141;2194:3;2182:9;2173:7;2169:23;2165:33;2162:53;;;2211:1;2208;2201:12;2162:53;2250:9;2237:23;2269:31;2294:5;2269:31;:::i;:::-;2319:5;-1:-1:-1;2376:2:1;2361:18;;2348:32;2389:33;2348:32;2389:33;:::i;:::-;2441:7;-1:-1:-1;2495:2:1;2480:18;;2467:32;;-1:-1:-1;2550:2:1;2535:18;;2522:32;2573:18;2603:14;;;2600:34;;;2630:1;2627;2620:12;2600:34;2668:6;2657:9;2653:22;2643:32;;2713:7;2706:4;2702:2;2698:13;2694:27;2684:55;;2735:1;2732;2725:12;2684:55;2775:2;2762:16;2801:2;2793:6;2790:14;2787:34;;;2817:1;2814;2807:12;2787:34;2862:7;2857:2;2848:6;2844:2;2840:15;2836:24;2833:37;2830:57;;;2883:1;2880;2873:12;2830:57;2012:936;;;;-1:-1:-1;2012:936:1;;-1:-1:-1;2914:2:1;2906:11;;2936:6;2012:936;-1:-1:-1;;;2012:936:1:o;2953:794::-;3048:6;3056;3064;3072;3125:3;3113:9;3104:7;3100:23;3096:33;3093:53;;;3142:1;3139;3132:12;3093:53;3181:9;3168:23;3200:31;3225:5;3200:31;:::i;:::-;3250:5;-1:-1:-1;3307:2:1;3292:18;;3279:32;3320:33;3279:32;3320:33;:::i;:::-;3372:7;-1:-1:-1;3426:2:1;3411:18;;3398:32;;-1:-1:-1;3481:2:1;3466:18;;3453:32;3508:18;3497:30;;3494:50;;;3540:1;3537;3530:12;3494:50;3563:22;;3616:4;3608:13;;3604:27;-1:-1:-1;3594:55:1;;3645:1;3642;3635:12;3594:55;3668:73;3733:7;3728:2;3715:16;3710:2;3706;3702:11;3668:73;:::i;:::-;3658:83;;;2953:794;;;;;;;:::o;3752:416::-;3817:6;3825;3878:2;3866:9;3857:7;3853:23;3849:32;3846:52;;;3894:1;3891;3884:12;3846:52;3933:9;3920:23;3952:31;3977:5;3952:31;:::i;:::-;4002:5;-1:-1:-1;4059:2:1;4044:18;;4031:32;4101:15;;4094:23;4082:36;;4072:64;;4132:1;4129;4122:12;4173:315;4241:6;4249;4302:2;4290:9;4281:7;4277:23;4273:32;4270:52;;;4318:1;4315;4308:12;4270:52;4357:9;4344:23;4376:31;4401:5;4376:31;:::i;:::-;4426:5;4478:2;4463:18;;;;4450:32;;-1:-1:-1;;;4173:315:1:o;4493:245::-;4551:6;4604:2;4592:9;4583:7;4579:23;4575:32;4572:52;;;4620:1;4617;4610:12;4572:52;4659:9;4646:23;4678:30;4702:5;4678:30;:::i;4743:249::-;4812:6;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4913:9;4907:16;4932:30;4956:5;4932:30;:::i;4997:450::-;5066:6;5119:2;5107:9;5098:7;5094:23;5090:32;5087:52;;;5135:1;5132;5125:12;5087:52;5175:9;5162:23;5208:18;5200:6;5197:30;5194:50;;;5240:1;5237;5230:12;5194:50;5263:22;;5316:4;5308:13;;5304:27;-1:-1:-1;5294:55:1;;5345:1;5342;5335:12;5294:55;5368:73;5433:7;5428:2;5415:16;5410:2;5406;5402:11;5368:73;:::i;5452:180::-;5511:6;5564:2;5552:9;5543:7;5539:23;5535:32;5532:52;;;5580:1;5577;5570:12;5532:52;-1:-1:-1;5603:23:1;;5452:180;-1:-1:-1;5452:180:1:o;5637:471::-;5678:3;5716:5;5710:12;5743:6;5738:3;5731:19;5768:1;5778:162;5792:6;5789:1;5786:13;5778:162;;;5854:4;5910:13;;;5906:22;;5900:29;5882:11;;;5878:20;;5871:59;5807:12;5778:162;;;5958:6;5955:1;5952:13;5949:87;;;6024:1;6017:4;6008:6;6003:3;5999:16;5995:27;5988:38;5949:87;-1:-1:-1;6090:2:1;6069:15;-1:-1:-1;;6065:29:1;6056:39;;;;6097:4;6052:50;;5637:471;-1:-1:-1;;5637:471:1:o;6701:488::-;-1:-1:-1;;;;;6970:15:1;;;6952:34;;7022:15;;7017:2;7002:18;;6995:43;7069:2;7054:18;;7047:34;;;7117:3;7112:2;7097:18;;7090:31;;;6895:4;;7138:45;;7163:19;;7155:6;7138:45;:::i;:::-;7130:53;6701:488;-1:-1:-1;;;;;;6701:488:1:o;7473:632::-;7644:2;7696:21;;;7766:13;;7669:18;;;7788:22;;;7615:4;;7644:2;7867:15;;;;7841:2;7826:18;;;7615:4;7910:169;7924:6;7921:1;7918:13;7910:169;;;7985:13;;7973:26;;8054:15;;;;8019:12;;;;7946:1;7939:9;7910:169;;;-1:-1:-1;8096:3:1;;7473:632;-1:-1:-1;;;;;;7473:632:1:o;8732:219::-;8881:2;8870:9;8863:21;8844:4;8901:44;8941:2;8930:9;8926:18;8918:6;8901:44;:::i;9368:414::-;9570:2;9552:21;;;9609:2;9589:18;;;9582:30;9648:34;9643:2;9628:18;;9621:62;-1:-1:-1;;;9714:2:1;9699:18;;9692:48;9772:3;9757:19;;9368:414::o;14149:356::-;14351:2;14333:21;;;14370:18;;;14363:30;14429:34;14424:2;14409:18;;14402:62;14496:2;14481:18;;14149:356::o;15328:413::-;15530:2;15512:21;;;15569:2;15549:18;;;15542:30;15608:34;15603:2;15588:18;;15581:62;-1:-1:-1;;;15674:2:1;15659:18;;15652:47;15731:3;15716:19;;15328:413::o;16159:355::-;16361:2;16343:21;;;16400:2;16380:18;;;16373:30;16439:33;16434:2;16419:18;;16412:61;16505:2;16490:18;;16159:355::o;16701:726::-;16868:4;16916:2;16905:9;16901:18;16946:6;16935:9;16928:25;16972:2;17010;17005;16994:9;16990:18;16983:30;17033:6;17068;17062:13;17099:6;17091;17084:22;17137:2;17126:9;17122:18;17115:25;;17159:6;17156:1;17149:17;17202:2;17199:1;17189:16;17175:30;;17223:1;17233:168;17247:6;17244:1;17241:13;17233:168;;;17308:13;;17296:26;;17389:1;17377:14;;;;17342:12;;;;17262:9;17233:168;;;-1:-1:-1;17418:3:1;;16701:726;-1:-1:-1;;;;;;;16701:726:1:o;17432:128::-;17472:3;17503:1;17499:6;17496:1;17493:13;17490:39;;;17509:18;;:::i;:::-;-1:-1:-1;17545:9:1;;17432:128::o;17565:125::-;17605:4;17633:1;17630;17627:8;17624:34;;;17638:18;;:::i;:::-;-1:-1:-1;17675:9:1;;17565:125::o;17695:380::-;17774:1;17770:12;;;;17817;;;17838:61;;17892:4;17884:6;17880:17;17870:27;;17838:61;17945:2;17937:6;17934:14;17914:18;17911:38;17908:161;;;17991:10;17986:3;17982:20;17979:1;17972:31;18026:4;18023:1;18016:15;18054:4;18051:1;18044:15;17908:161;;17695:380;;;:::o;18080:135::-;18119:3;-1:-1:-1;;18140:17:1;;18137:43;;;18160:18;;:::i;:::-;-1:-1:-1;18207:1:1;18196:13;;18080:135::o;18220:209::-;18252:1;18278;18268:132;;18322:10;18317:3;18313:20;18310:1;18303:31;18357:4;18354:1;18347:15;18385:4;18382:1;18375:15;18268:132;-1:-1:-1;18414:9:1;;18220:209::o;18434:127::-;18495:10;18490:3;18486:20;18483:1;18476:31;18526:4;18523:1;18516:15;18550:4;18547:1;18540:15;18566:127;18627:10;18622:3;18618:20;18615:1;18608:31;18658:4;18655:1;18648:15;18682:4;18679:1;18672:15;18698:127;18759:10;18754:3;18750:20;18747:1;18740:31;18790:4;18787:1;18780:15;18814:4;18811:1;18804:15;18830:127;18891:10;18886:3;18882:20;18879:1;18872:31;18922:4;18919:1;18912:15;18946:4;18943:1;18936:15;18962:131;-1:-1:-1;;;;;19037:31:1;;19027:42;;19017:70;;19083:1;19080;19073:12;19098:131;-1:-1:-1;;;;;;19172:32:1;;19162:43;;19152:71;;19219:1;19216;19209:12

Swarm Source

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