ETH Price: $2,521.50 (-0.12%)

Token

HODLēR XRP (HODLēR XRP)
 

Overview

Max Total Supply

74 HODLēR XRP

Holders

16

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HODLēR XRP
0x7d85932e436a75b1d2870572b5dc3edfc92aee2d
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:
HODLeR_XRP

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-01
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-31
*/

// 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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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.7.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 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/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.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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/ERC721Burnable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

// File: contracts/Main.sol



pragma solidity >=0.8.9 <0.9.0;







contract HODLeR_XRP is ERC721, Ownable, ReentrancyGuard, ERC721Burnable {

  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  address public BurnContract;
  
  uint256 public PUBLIC_SALE_PRICE = .05 ether;
  uint256 public WHITELIST_SALE_PRICE = .05 ether;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;
  uint256 public maxWLMintAmountPerTx;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;
  bool public teamMinted;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    uint256 _maxWLMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721(_tokenName, _tokenSymbol) {
    maxSupply = _maxSupply;
    maxMintAmountPerTx = _maxMintAmountPerTx; 
    maxWLMintAmountPerTx = _maxWLMintAmountPerTx;
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

    modifier mintWLCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxWLMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= PUBLIC_SALE_PRICE * _mintAmount, "Insufficient funds!");
    _;
  }

    modifier mintWLPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= WHITELIST_SALE_PRICE * _mintAmount, "Insufficient funds!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintWLCompliance(_mintAmount) mintWLPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, "The whitelist sale is not enabled!");
    require(!whitelistClaimed[msg.sender], "Address already claimed!");
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof!");

    whitelistClaimed[msg.sender] = true;
    
    _mintLoop(msg.sender, _mintAmount);
  }

  function publicMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(!whitelistMintEnabled, "The Whitelist is enabled!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function AirDrop(address[] memory _addresses, uint _count) public onlyOwner{
        
        require(totalSupply() + _addresses.length <= maxSupply, "not enough tokens left");

        for (uint i = 0; i < _addresses.length; i++)
        {
            _mintLoop(_addresses[i], _count);
        }
    }

   function teamMint() public onlyOwner{
        require(!teamMinted, "HODLeR Shoes :: Team already minted");
        teamMinted = true;
        _mintLoop(msg.sender, 20);
    }


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function burnMainNFT(uint256 _tokenId) public {
        _burn(_tokenId);
    }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function update_public_price(uint price) public onlyOwner {
        PUBLIC_SALE_PRICE = price;
    }

  function update_preSale_price(uint price) public onlyOwner {
        WHITELIST_SALE_PRICE = price;
    }
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    
    setApprovalForAll(BurnContract, true);
    
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxWLMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","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":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"AirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BurnContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMainNFT","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","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":"maxWLMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","type":"uint256"}],"name":"update_preSale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_public_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001eb565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600c91620001eb565b5066b1a2bc2ec50000600f8190556010556014805462ffffff191660011790553480156200007757600080fd5b5060405162002eb238038062002eb28339810160408190526200009a916200035e565b855186908690620000b3906000906020850190620001eb565b508051620000c9906001906020840190620001eb565b505050620000e6620000e06200011160201b60201c565b62000115565b6001600755601184905560128390556013829055620001058162000167565b50505050505062000448565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001716200018a565b80516200018690600d906020840190620001eb565b5050565b6006546001600160a01b03163314620001e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001f9906200040b565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002b957600080fd5b81516001600160401b0380821115620002d657620002d662000291565b604051601f8301601f19908116603f0116810190828211818310171562000301576200030162000291565b816040528381526020925086838588010111156200031e57600080fd5b600091505b8382101562000342578582018301518183018401529082019062000323565b83821115620003545760008385830101525b9695505050505050565b60008060008060008060c087890312156200037857600080fd5b86516001600160401b03808211156200039057600080fd5b6200039e8a838b01620002a7565b97506020890151915080821115620003b557600080fd5b620003c38a838b01620002a7565b965060408901519550606089015194506080890151935060a0890151915080821115620003ef57600080fd5b50620003fe89828a01620002a7565b9150509295509295509295565b600181811c908216806200042057607f821691505b602082108114156200044257634e487b7160e01b600052602260045260246000fd5b50919050565b612a5a80620004586000396000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063c396ce89116100dc578063e0a8085311610095578063e985e9c51161006f578063e985e9c51461086f578063eeb9052f146108b8578063efbd73f4146108d8578063f2fde38b146108f857600080fd5b8063e0a808531461080e578063e2a70eaf1461082e578063e8b5498d1461084e57600080fd5b8063c396ce891461075f578063c87b56dd1461077f578063d1f0e8051461079f578063d2cab056146107b5578063d5abeb01146107c8578063db4bec44146107de57600080fd5b8063a22cb46511610149578063b767a09811610123578063b767a098146106f4578063b88d4fde14610714578063ba7a86b814610734578063bc912e1a1461074957600080fd5b8063a22cb4651461069f578063a45ba8e7146106bf578063b071401b146106d457600080fd5b8063715018a6146106015780637cb64759146106165780637ec4a659146106365780638da5cb5b1461065657806394354fd01461067457806395d89b411461068a57600080fd5b806342842e0e1161024f5780635b3b3df4116102085780636352211e116101e25780636352211e1461058257806363adc5a5146105a25780636caede3d146105c257806370a08231146105e157600080fd5b80635b3b3df4146105335780635c975abb1461055357806362b99ad41461056d57600080fd5b806342842e0e1461047157806342966c6814610491578063438b6300146104b15780634fdd43cb146104de57806351830227146104fe5780635503a0e81461051e57600080fd5b806316c38b3c116102a157806316c38b3c146103de57806318160ddd146103fe57806323b872dd146104135780632db11544146104335780632eb4a7ab146104465780633ccfd60b1461045c57600080fd5b806301ffc9a7146102e957806306fdde031461031e57806307e89ec014610340578063081812fc14610364578063095ea7b31461039c57806316ba10e0146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612239565b610918565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361096a565b60405161031591906122ae565b34801561034c57600080fd5b50610356600f5481565b604051908152602001610315565b34801561037057600080fd5b5061038461037f3660046122c1565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b73660046122f6565b610a23565b005b3480156103ca57600080fd5b506103bc6103d93660046123bf565b610b3e565b3480156103ea57600080fd5b506103bc6103f9366004612418565b610b5d565b34801561040a57600080fd5b50610356610b78565b34801561041f57600080fd5b506103bc61042e366004612433565b610b88565b6103bc6104413660046122c1565b610bba565b34801561045257600080fd5b5061035660095481565b34801561046857600080fd5b506103bc610d27565b34801561047d57600080fd5b506103bc61048c366004612433565b610e00565b34801561049d57600080fd5b506103bc6104ac3660046122c1565b610e1b565b3480156104bd57600080fd5b506104d16104cc36600461246f565b610e4c565b604051610315919061248a565b3480156104ea57600080fd5b506103bc6104f93660046123bf565b610f2d565b34801561050a57600080fd5b506014546103099062010000900460ff1681565b34801561052a57600080fd5b50610333610f48565b34801561053f57600080fd5b50600e54610384906001600160a01b031681565b34801561055f57600080fd5b506014546103099060ff1681565b34801561057957600080fd5b50610333610fd6565b34801561058e57600080fd5b5061038461059d3660046122c1565b610fe3565b3480156105ae57600080fd5b506103bc6105bd3660046122c1565b611043565b3480156105ce57600080fd5b5060145461030990610100900460ff1681565b3480156105ed57600080fd5b506103566105fc36600461246f565b611050565b34801561060d57600080fd5b506103bc6110d6565b34801561062257600080fd5b506103bc6106313660046122c1565b6110ea565b34801561064257600080fd5b506103bc6106513660046123bf565b6110f7565b34801561066257600080fd5b506006546001600160a01b0316610384565b34801561068057600080fd5b5061035660125481565b34801561069657600080fd5b50610333611112565b3480156106ab57600080fd5b506103bc6106ba3660046124ce565b611121565b3480156106cb57600080fd5b5061033361112c565b3480156106e057600080fd5b506103bc6106ef3660046122c1565b611139565b34801561070057600080fd5b506103bc61070f366004612418565b611146565b34801561072057600080fd5b506103bc61072f366004612501565b611168565b34801561074057600080fd5b506103bc6111a0565b34801561075557600080fd5b5061035660105481565b34801561076b57600080fd5b506103bc61077a3660046122c1565b610e40565b34801561078b57600080fd5b5061033361079a3660046122c1565b61122c565b3480156107ab57600080fd5b5061035660135481565b6103bc6107c336600461257d565b6113ac565b3480156107d457600080fd5b5061035660115481565b3480156107ea57600080fd5b506103096107f936600461246f565b600a6020526000908152604090205460ff1681565b34801561081a57600080fd5b506103bc610829366004612418565b611609565b34801561083a57600080fd5b506103bc6108493660046122c1565b61162d565b34801561085a57600080fd5b50601454610309906301000000900460ff1681565b34801561087b57600080fd5b5061030961088a3660046125fc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108c457600080fd5b506103bc6108d3366004612626565b61163a565b3480156108e457600080fd5b506103bc6108f33660046126d9565b6116e1565b34801561090457600080fd5b506103bc61091336600461246f565b611757565b60006001600160e01b031982166380ac58cd60e01b148061094957506001600160e01b03198216635b5e139f60e01b145b8061096457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610979906126fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109a5906126fc565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a07826117cd565b506000908152600460205260409020546001600160a01b031690565b6000610a2e82610fe3565b9050806001600160a01b0316836001600160a01b03161415610aa15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610abd5750610abd813361088a565b610b2f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a98565b610b39838361182c565b505050565b610b4661189a565b8051610b5990600c90602084019061218a565b5050565b610b6561189a565b6014805460ff1916911515919091179055565b6000610b8360085490565b905090565b610b93335b826118f4565b610baf5760405162461bcd60e51b8152600401610a9890612737565b610b39838383611973565b80600081118015610bcd57506012548111155b610be95760405162461bcd60e51b8152600401610a9890612785565b60115481610bf660085490565b610c0091906127c9565b1115610c1e5760405162461bcd60e51b8152600401610a98906127e1565b8180600f54610c2d919061280f565b341015610c725760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a98565b60145460ff1615610cc55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a98565b601454610100900460ff1615610d1d5760405162461bcd60e51b815260206004820152601960248201527f5468652057686974656c69737420697320656e61626c656421000000000000006044820152606401610a98565b610b393384611b0f565b610d2f61189a565b60026007541415610d825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a98565b60026007556000610d9b6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610df857600080fd5b506001600755565b610b3983838360405180602001604052806000815250611168565b610e2433610b8d565b610e405760405162461bcd60e51b8152600401610a9890612737565b610e4981611b63565b50565b60606000610e5983611050565b905060008167ffffffffffffffff811115610e7657610e76612320565b604051908082528060200260200182016040528015610e9f578160200160208202803683370190505b509050600160005b8381108015610eb857506011548211155b15610f23576000610ec883610fe3565b9050866001600160a01b0316816001600160a01b03161415610f105782848381518110610ef757610ef761282e565b602090810291909101015281610f0c81612844565b9250505b82610f1a81612844565b93505050610ea7565b5090949350505050565b610f3561189a565b8051610b5990600d90602084019061218a565b600c8054610f55906126fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f81906126fc565b8015610fce5780601f10610fa357610100808354040283529160200191610fce565b820191906000526020600020905b815481529060010190602001808311610fb157829003601f168201915b505050505081565b600b8054610f55906126fc565b6000818152600260205260408120546001600160a01b0316806109645760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a98565b61104b61189a565b601055565b60006001600160a01b0382166110ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a98565b506001600160a01b031660009081526003602052604090205490565b6110de61189a565b6110e86000611bfe565b565b6110f261189a565b600955565b6110ff61189a565b8051610b5990600b90602084019061218a565b606060018054610979906126fc565b610b59338383611c50565b600d8054610f55906126fc565b61114161189a565b601255565b61114e61189a565b601480549115156101000261ff0019909216919091179055565b61117233836118f4565b61118e5760405162461bcd60e51b8152600401610a9890612737565b61119a84848484611d1f565b50505050565b6111a861189a565b6014546301000000900460ff161561120e5760405162461bcd60e51b815260206004820152602360248201527f484f444c65522053686f6573203a3a205465616d20616c7265616479206d696e6044820152621d195960ea1b6064820152608401610a98565b6014805463ff000000191663010000001781556110e8903390611b0f565b6000818152600260205260409020546060906001600160a01b03166112ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a98565b60145462010000900460ff1661134d57600d80546112c8906126fc565b80601f01602080910402602001604051908101604052809291908181526020018280546112f4906126fc565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b50505050509050919050565b6000611357611d52565b9050600081511161137757604051806020016040528060008152506113a5565b8061138184611d61565b600c6040516020016113959392919061285f565b6040516020818303038152906040525b9392505050565b826000811180156113bf57506013548111155b6113db5760405162461bcd60e51b8152600401610a9890612785565b601154816113e860085490565b6113f291906127c9565b11156114105760405162461bcd60e51b8152600401610a98906127e1565b838060105461141f919061280f565b3410156114645760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a98565b601454610100900460ff166114c65760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610a98565b336000908152600a602052604090205460ff16156115265760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610a98565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506115a0858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611e5f565b6115dd5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a98565b336000818152600a60205260409020805460ff191660011790556116019087611b0f565b505050505050565b61161161189a565b60148054911515620100000262ff000019909216919091179055565b61163561189a565b600f55565b61164261189a565b601154825161164f610b78565b61165991906127c9565b11156116a05760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610a98565b60005b8251811015610b39576116cf8382815181106116c1576116c161282e565b602002602001015183611b0f565b806116d981612844565b9150506116a3565b816000811180156116f457506012548111155b6117105760405162461bcd60e51b8152600401610a9890612785565b6011548161171d60085490565b61172791906127c9565b11156117455760405162461bcd60e51b8152600401610a98906127e1565b61174d61189a565b610b398284611b0f565b61175f61189a565b6001600160a01b0381166117c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a98565b610e4981611bfe565b6000818152600260205260409020546001600160a01b0316610e495760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a98565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186182610fe3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146110e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a98565b60008061190083610fe3565b9050806001600160a01b0316846001600160a01b0316148061194757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061196b5750836001600160a01b0316611960846109fc565b6001600160a01b0316145b949350505050565b826001600160a01b031661198682610fe3565b6001600160a01b0316146119ea5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a98565b6001600160a01b038216611a4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a98565b611a5760008261182c565b6001600160a01b0383166000908152600360205260408120805460019290611a80908490612923565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aae9084906127c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e54611b26906001600160a01b03166001611121565b60005b81811015610b3957611b3f600880546001019055565b611b5183611b4c60085490565b611e75565b80611b5b81612844565b915050611b29565b6000611b6e82610fe3565b9050611b7b60008361182c565b6001600160a01b0381166000908152600360205260408120805460019290611ba4908490612923565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a98565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d2a848484611973565b611d3684848484611e8f565b61119a5760405162461bcd60e51b8152600401610a989061293a565b6060600b8054610979906126fc565b606081611d855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611daf5780611d9981612844565b9150611da89050600a836129a2565b9150611d89565b60008167ffffffffffffffff811115611dca57611dca612320565b6040519080825280601f01601f191660200182016040528015611df4576020820181803683370190505b5090505b841561196b57611e09600183612923565b9150611e16600a866129b6565b611e219060306127c9565b60f81b818381518110611e3657611e3661282e565b60200101906001600160f81b031916908160001a905350611e58600a866129a2565b9450611df8565b600082611e6c8584611f9c565b14949350505050565b610b59828260405180602001604052806000815250611fe9565b60006001600160a01b0384163b15611f9157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed39033908990889088906004016129ca565b602060405180830381600087803b158015611eed57600080fd5b505af1925050508015611f1d575060408051601f3d908101601f19168201909252611f1a91810190612a07565b60015b611f77573d808015611f4b576040519150601f19603f3d011682016040523d82523d6000602084013e611f50565b606091505b508051611f6f5760405162461bcd60e51b8152600401610a989061293a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061196b565b506001949350505050565b600081815b8451811015611fe157611fcd82868381518110611fc057611fc061282e565b602002602001015161201c565b915080611fd981612844565b915050611fa1565b509392505050565b611ff38383612048565b6120006000848484611e8f565b610b395760405162461bcd60e51b8152600401610a989061293a565b60008183106120385760008281526020849052604090206113a5565b5060009182526020526040902090565b6001600160a01b03821661209e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a98565b6000818152600260205260409020546001600160a01b0316156121035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a98565b6001600160a01b038216600090815260036020526040812080546001929061212c9084906127c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612196906126fc565b90600052602060002090601f0160209004810192826121b857600085556121fe565b82601f106121d157805160ff19168380011785556121fe565b828001600101855582156121fe579182015b828111156121fe5782518255916020019190600101906121e3565b5061220a92915061220e565b5090565b5b8082111561220a576000815560010161220f565b6001600160e01b031981168114610e4957600080fd5b60006020828403121561224b57600080fd5b81356113a581612223565b60005b83811015612271578181015183820152602001612259565b8381111561119a5750506000910152565b6000815180845261229a816020860160208601612256565b601f01601f19169290920160200192915050565b6020815260006113a56020830184612282565b6000602082840312156122d357600080fd5b5035919050565b80356001600160a01b03811681146122f157600080fd5b919050565b6000806040838503121561230957600080fd5b612312836122da565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561235f5761235f612320565b604052919050565b600067ffffffffffffffff83111561238157612381612320565b612394601f8401601f1916602001612336565b90508281528383830111156123a857600080fd5b828260208301376000602084830101529392505050565b6000602082840312156123d157600080fd5b813567ffffffffffffffff8111156123e857600080fd5b8201601f810184136123f957600080fd5b61196b84823560208401612367565b803580151581146122f157600080fd5b60006020828403121561242a57600080fd5b6113a582612408565b60008060006060848603121561244857600080fd5b612451846122da565b925061245f602085016122da565b9150604084013590509250925092565b60006020828403121561248157600080fd5b6113a5826122da565b6020808252825182820181905260009190848201906040850190845b818110156124c2578351835292840192918401916001016124a6565b50909695505050505050565b600080604083850312156124e157600080fd5b6124ea836122da565b91506124f860208401612408565b90509250929050565b6000806000806080858703121561251757600080fd5b612520856122da565b935061252e602086016122da565b925060408501359150606085013567ffffffffffffffff81111561255157600080fd5b8501601f8101871361256257600080fd5b61257187823560208401612367565b91505092959194509250565b60008060006040848603121561259257600080fd5b83359250602084013567ffffffffffffffff808211156125b157600080fd5b818601915086601f8301126125c557600080fd5b8135818111156125d457600080fd5b8760208260051b85010111156125e957600080fd5b6020830194508093505050509250925092565b6000806040838503121561260f57600080fd5b612618836122da565b91506124f8602084016122da565b6000806040838503121561263957600080fd5b823567ffffffffffffffff8082111561265157600080fd5b818501915085601f83011261266557600080fd5b813560208282111561267957612679612320565b8160051b925061268a818401612336565b82815292840181019281810190898511156126a457600080fd5b948201945b848610156126c9576126ba866122da565b825294820194908201906126a9565b9997909101359750505050505050565b600080604083850312156126ec57600080fd5b823591506124f8602084016122da565b600181811c9082168061271057607f821691505b6020821081141561273157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156127dc576127dc6127b3565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615612829576128296127b3565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612858576128586127b3565b5060010190565b6000845160206128728285838a01612256565b8551918401916128858184848a01612256565b8554920191600090600181811c90808316806128a257607f831692505b8583108114156128c057634e487b7160e01b85526022600452602485fd5b8080156128d457600181146128e557612912565b60ff19851688528388019550612912565b60008b81526020902060005b8581101561290a5781548a8201529084019088016128f1565b505083880195505b50939b9a5050505050505050505050565b600082821015612935576129356127b3565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129b1576129b161298c565b500490565b6000826129c5576129c561298c565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129fd90830184612282565b9695505050505050565b600060208284031215612a1957600080fd5b81516113a58161222356fea2646970667358221220ae4c2ea3dff2b76562307bbbf5761602fa274d1cc561e3d4a391a25fb095bc7064736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b484f444cc4935220585250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b484f444cc49352205852500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d61417a64426453525542464e5375567a57765258445a6355315456734566786b754353327876434a356667680000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063c396ce89116100dc578063e0a8085311610095578063e985e9c51161006f578063e985e9c51461086f578063eeb9052f146108b8578063efbd73f4146108d8578063f2fde38b146108f857600080fd5b8063e0a808531461080e578063e2a70eaf1461082e578063e8b5498d1461084e57600080fd5b8063c396ce891461075f578063c87b56dd1461077f578063d1f0e8051461079f578063d2cab056146107b5578063d5abeb01146107c8578063db4bec44146107de57600080fd5b8063a22cb46511610149578063b767a09811610123578063b767a098146106f4578063b88d4fde14610714578063ba7a86b814610734578063bc912e1a1461074957600080fd5b8063a22cb4651461069f578063a45ba8e7146106bf578063b071401b146106d457600080fd5b8063715018a6146106015780637cb64759146106165780637ec4a659146106365780638da5cb5b1461065657806394354fd01461067457806395d89b411461068a57600080fd5b806342842e0e1161024f5780635b3b3df4116102085780636352211e116101e25780636352211e1461058257806363adc5a5146105a25780636caede3d146105c257806370a08231146105e157600080fd5b80635b3b3df4146105335780635c975abb1461055357806362b99ad41461056d57600080fd5b806342842e0e1461047157806342966c6814610491578063438b6300146104b15780634fdd43cb146104de57806351830227146104fe5780635503a0e81461051e57600080fd5b806316c38b3c116102a157806316c38b3c146103de57806318160ddd146103fe57806323b872dd146104135780632db11544146104335780632eb4a7ab146104465780633ccfd60b1461045c57600080fd5b806301ffc9a7146102e957806306fdde031461031e57806307e89ec014610340578063081812fc14610364578063095ea7b31461039c57806316ba10e0146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612239565b610918565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361096a565b60405161031591906122ae565b34801561034c57600080fd5b50610356600f5481565b604051908152602001610315565b34801561037057600080fd5b5061038461037f3660046122c1565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b73660046122f6565b610a23565b005b3480156103ca57600080fd5b506103bc6103d93660046123bf565b610b3e565b3480156103ea57600080fd5b506103bc6103f9366004612418565b610b5d565b34801561040a57600080fd5b50610356610b78565b34801561041f57600080fd5b506103bc61042e366004612433565b610b88565b6103bc6104413660046122c1565b610bba565b34801561045257600080fd5b5061035660095481565b34801561046857600080fd5b506103bc610d27565b34801561047d57600080fd5b506103bc61048c366004612433565b610e00565b34801561049d57600080fd5b506103bc6104ac3660046122c1565b610e1b565b3480156104bd57600080fd5b506104d16104cc36600461246f565b610e4c565b604051610315919061248a565b3480156104ea57600080fd5b506103bc6104f93660046123bf565b610f2d565b34801561050a57600080fd5b506014546103099062010000900460ff1681565b34801561052a57600080fd5b50610333610f48565b34801561053f57600080fd5b50600e54610384906001600160a01b031681565b34801561055f57600080fd5b506014546103099060ff1681565b34801561057957600080fd5b50610333610fd6565b34801561058e57600080fd5b5061038461059d3660046122c1565b610fe3565b3480156105ae57600080fd5b506103bc6105bd3660046122c1565b611043565b3480156105ce57600080fd5b5060145461030990610100900460ff1681565b3480156105ed57600080fd5b506103566105fc36600461246f565b611050565b34801561060d57600080fd5b506103bc6110d6565b34801561062257600080fd5b506103bc6106313660046122c1565b6110ea565b34801561064257600080fd5b506103bc6106513660046123bf565b6110f7565b34801561066257600080fd5b506006546001600160a01b0316610384565b34801561068057600080fd5b5061035660125481565b34801561069657600080fd5b50610333611112565b3480156106ab57600080fd5b506103bc6106ba3660046124ce565b611121565b3480156106cb57600080fd5b5061033361112c565b3480156106e057600080fd5b506103bc6106ef3660046122c1565b611139565b34801561070057600080fd5b506103bc61070f366004612418565b611146565b34801561072057600080fd5b506103bc61072f366004612501565b611168565b34801561074057600080fd5b506103bc6111a0565b34801561075557600080fd5b5061035660105481565b34801561076b57600080fd5b506103bc61077a3660046122c1565b610e40565b34801561078b57600080fd5b5061033361079a3660046122c1565b61122c565b3480156107ab57600080fd5b5061035660135481565b6103bc6107c336600461257d565b6113ac565b3480156107d457600080fd5b5061035660115481565b3480156107ea57600080fd5b506103096107f936600461246f565b600a6020526000908152604090205460ff1681565b34801561081a57600080fd5b506103bc610829366004612418565b611609565b34801561083a57600080fd5b506103bc6108493660046122c1565b61162d565b34801561085a57600080fd5b50601454610309906301000000900460ff1681565b34801561087b57600080fd5b5061030961088a3660046125fc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108c457600080fd5b506103bc6108d3366004612626565b61163a565b3480156108e457600080fd5b506103bc6108f33660046126d9565b6116e1565b34801561090457600080fd5b506103bc61091336600461246f565b611757565b60006001600160e01b031982166380ac58cd60e01b148061094957506001600160e01b03198216635b5e139f60e01b145b8061096457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610979906126fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109a5906126fc565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a07826117cd565b506000908152600460205260409020546001600160a01b031690565b6000610a2e82610fe3565b9050806001600160a01b0316836001600160a01b03161415610aa15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610abd5750610abd813361088a565b610b2f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a98565b610b39838361182c565b505050565b610b4661189a565b8051610b5990600c90602084019061218a565b5050565b610b6561189a565b6014805460ff1916911515919091179055565b6000610b8360085490565b905090565b610b93335b826118f4565b610baf5760405162461bcd60e51b8152600401610a9890612737565b610b39838383611973565b80600081118015610bcd57506012548111155b610be95760405162461bcd60e51b8152600401610a9890612785565b60115481610bf660085490565b610c0091906127c9565b1115610c1e5760405162461bcd60e51b8152600401610a98906127e1565b8180600f54610c2d919061280f565b341015610c725760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a98565b60145460ff1615610cc55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a98565b601454610100900460ff1615610d1d5760405162461bcd60e51b815260206004820152601960248201527f5468652057686974656c69737420697320656e61626c656421000000000000006044820152606401610a98565b610b393384611b0f565b610d2f61189a565b60026007541415610d825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a98565b60026007556000610d9b6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610de5576040519150601f19603f3d011682016040523d82523d6000602084013e610dea565b606091505b5050905080610df857600080fd5b506001600755565b610b3983838360405180602001604052806000815250611168565b610e2433610b8d565b610e405760405162461bcd60e51b8152600401610a9890612737565b610e4981611b63565b50565b60606000610e5983611050565b905060008167ffffffffffffffff811115610e7657610e76612320565b604051908082528060200260200182016040528015610e9f578160200160208202803683370190505b509050600160005b8381108015610eb857506011548211155b15610f23576000610ec883610fe3565b9050866001600160a01b0316816001600160a01b03161415610f105782848381518110610ef757610ef761282e565b602090810291909101015281610f0c81612844565b9250505b82610f1a81612844565b93505050610ea7565b5090949350505050565b610f3561189a565b8051610b5990600d90602084019061218a565b600c8054610f55906126fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f81906126fc565b8015610fce5780601f10610fa357610100808354040283529160200191610fce565b820191906000526020600020905b815481529060010190602001808311610fb157829003601f168201915b505050505081565b600b8054610f55906126fc565b6000818152600260205260408120546001600160a01b0316806109645760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a98565b61104b61189a565b601055565b60006001600160a01b0382166110ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a98565b506001600160a01b031660009081526003602052604090205490565b6110de61189a565b6110e86000611bfe565b565b6110f261189a565b600955565b6110ff61189a565b8051610b5990600b90602084019061218a565b606060018054610979906126fc565b610b59338383611c50565b600d8054610f55906126fc565b61114161189a565b601255565b61114e61189a565b601480549115156101000261ff0019909216919091179055565b61117233836118f4565b61118e5760405162461bcd60e51b8152600401610a9890612737565b61119a84848484611d1f565b50505050565b6111a861189a565b6014546301000000900460ff161561120e5760405162461bcd60e51b815260206004820152602360248201527f484f444c65522053686f6573203a3a205465616d20616c7265616479206d696e6044820152621d195960ea1b6064820152608401610a98565b6014805463ff000000191663010000001781556110e8903390611b0f565b6000818152600260205260409020546060906001600160a01b03166112ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a98565b60145462010000900460ff1661134d57600d80546112c8906126fc565b80601f01602080910402602001604051908101604052809291908181526020018280546112f4906126fc565b80156113415780601f1061131657610100808354040283529160200191611341565b820191906000526020600020905b81548152906001019060200180831161132457829003601f168201915b50505050509050919050565b6000611357611d52565b9050600081511161137757604051806020016040528060008152506113a5565b8061138184611d61565b600c6040516020016113959392919061285f565b6040516020818303038152906040525b9392505050565b826000811180156113bf57506013548111155b6113db5760405162461bcd60e51b8152600401610a9890612785565b601154816113e860085490565b6113f291906127c9565b11156114105760405162461bcd60e51b8152600401610a98906127e1565b838060105461141f919061280f565b3410156114645760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a98565b601454610100900460ff166114c65760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610a98565b336000908152600a602052604090205460ff16156115265760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610a98565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506115a0858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050611e5f565b6115dd5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610a98565b336000818152600a60205260409020805460ff191660011790556116019087611b0f565b505050505050565b61161161189a565b60148054911515620100000262ff000019909216919091179055565b61163561189a565b600f55565b61164261189a565b601154825161164f610b78565b61165991906127c9565b11156116a05760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610a98565b60005b8251811015610b39576116cf8382815181106116c1576116c161282e565b602002602001015183611b0f565b806116d981612844565b9150506116a3565b816000811180156116f457506012548111155b6117105760405162461bcd60e51b8152600401610a9890612785565b6011548161171d60085490565b61172791906127c9565b11156117455760405162461bcd60e51b8152600401610a98906127e1565b61174d61189a565b610b398284611b0f565b61175f61189a565b6001600160a01b0381166117c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a98565b610e4981611bfe565b6000818152600260205260409020546001600160a01b0316610e495760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a98565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186182610fe3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146110e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a98565b60008061190083610fe3565b9050806001600160a01b0316846001600160a01b0316148061194757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061196b5750836001600160a01b0316611960846109fc565b6001600160a01b0316145b949350505050565b826001600160a01b031661198682610fe3565b6001600160a01b0316146119ea5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a98565b6001600160a01b038216611a4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a98565b611a5760008261182c565b6001600160a01b0383166000908152600360205260408120805460019290611a80908490612923565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aae9084906127c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e54611b26906001600160a01b03166001611121565b60005b81811015610b3957611b3f600880546001019055565b611b5183611b4c60085490565b611e75565b80611b5b81612844565b915050611b29565b6000611b6e82610fe3565b9050611b7b60008361182c565b6001600160a01b0381166000908152600360205260408120805460019290611ba4908490612923565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a98565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d2a848484611973565b611d3684848484611e8f565b61119a5760405162461bcd60e51b8152600401610a989061293a565b6060600b8054610979906126fc565b606081611d855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611daf5780611d9981612844565b9150611da89050600a836129a2565b9150611d89565b60008167ffffffffffffffff811115611dca57611dca612320565b6040519080825280601f01601f191660200182016040528015611df4576020820181803683370190505b5090505b841561196b57611e09600183612923565b9150611e16600a866129b6565b611e219060306127c9565b60f81b818381518110611e3657611e3661282e565b60200101906001600160f81b031916908160001a905350611e58600a866129a2565b9450611df8565b600082611e6c8584611f9c565b14949350505050565b610b59828260405180602001604052806000815250611fe9565b60006001600160a01b0384163b15611f9157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed39033908990889088906004016129ca565b602060405180830381600087803b158015611eed57600080fd5b505af1925050508015611f1d575060408051601f3d908101601f19168201909252611f1a91810190612a07565b60015b611f77573d808015611f4b576040519150601f19603f3d011682016040523d82523d6000602084013e611f50565b606091505b508051611f6f5760405162461bcd60e51b8152600401610a989061293a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061196b565b506001949350505050565b600081815b8451811015611fe157611fcd82868381518110611fc057611fc061282e565b602002602001015161201c565b915080611fd981612844565b915050611fa1565b509392505050565b611ff38383612048565b6120006000848484611e8f565b610b395760405162461bcd60e51b8152600401610a989061293a565b60008183106120385760008281526020849052604090206113a5565b5060009182526020526040902090565b6001600160a01b03821661209e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a98565b6000818152600260205260409020546001600160a01b0316156121035760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a98565b6001600160a01b038216600090815260036020526040812080546001929061212c9084906127c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612196906126fc565b90600052602060002090601f0160209004810192826121b857600085556121fe565b82601f106121d157805160ff19168380011785556121fe565b828001600101855582156121fe579182015b828111156121fe5782518255916020019190600101906121e3565b5061220a92915061220e565b5090565b5b8082111561220a576000815560010161220f565b6001600160e01b031981168114610e4957600080fd5b60006020828403121561224b57600080fd5b81356113a581612223565b60005b83811015612271578181015183820152602001612259565b8381111561119a5750506000910152565b6000815180845261229a816020860160208601612256565b601f01601f19169290920160200192915050565b6020815260006113a56020830184612282565b6000602082840312156122d357600080fd5b5035919050565b80356001600160a01b03811681146122f157600080fd5b919050565b6000806040838503121561230957600080fd5b612312836122da565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561235f5761235f612320565b604052919050565b600067ffffffffffffffff83111561238157612381612320565b612394601f8401601f1916602001612336565b90508281528383830111156123a857600080fd5b828260208301376000602084830101529392505050565b6000602082840312156123d157600080fd5b813567ffffffffffffffff8111156123e857600080fd5b8201601f810184136123f957600080fd5b61196b84823560208401612367565b803580151581146122f157600080fd5b60006020828403121561242a57600080fd5b6113a582612408565b60008060006060848603121561244857600080fd5b612451846122da565b925061245f602085016122da565b9150604084013590509250925092565b60006020828403121561248157600080fd5b6113a5826122da565b6020808252825182820181905260009190848201906040850190845b818110156124c2578351835292840192918401916001016124a6565b50909695505050505050565b600080604083850312156124e157600080fd5b6124ea836122da565b91506124f860208401612408565b90509250929050565b6000806000806080858703121561251757600080fd5b612520856122da565b935061252e602086016122da565b925060408501359150606085013567ffffffffffffffff81111561255157600080fd5b8501601f8101871361256257600080fd5b61257187823560208401612367565b91505092959194509250565b60008060006040848603121561259257600080fd5b83359250602084013567ffffffffffffffff808211156125b157600080fd5b818601915086601f8301126125c557600080fd5b8135818111156125d457600080fd5b8760208260051b85010111156125e957600080fd5b6020830194508093505050509250925092565b6000806040838503121561260f57600080fd5b612618836122da565b91506124f8602084016122da565b6000806040838503121561263957600080fd5b823567ffffffffffffffff8082111561265157600080fd5b818501915085601f83011261266557600080fd5b813560208282111561267957612679612320565b8160051b925061268a818401612336565b82815292840181019281810190898511156126a457600080fd5b948201945b848610156126c9576126ba866122da565b825294820194908201906126a9565b9997909101359750505050505050565b600080604083850312156126ec57600080fd5b823591506124f8602084016122da565b600181811c9082168061271057607f821691505b6020821081141561273157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156127dc576127dc6127b3565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615612829576128296127b3565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612858576128586127b3565b5060010190565b6000845160206128728285838a01612256565b8551918401916128858184848a01612256565b8554920191600090600181811c90808316806128a257607f831692505b8583108114156128c057634e487b7160e01b85526022600452602485fd5b8080156128d457600181146128e557612912565b60ff19851688528388019550612912565b60008b81526020902060005b8581101561290a5781548a8201529084019088016128f1565b505083880195505b50939b9a5050505050505050505050565b600082821015612935576129356127b3565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129b1576129b161298c565b500490565b6000826129c5576129c561298c565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129fd90830184612282565b9695505050505050565b600060208284031215612a1957600080fd5b81516113a58161222356fea2646970667358221220ae4c2ea3dff2b76562307bbbf5761602fa274d1cc561e3d4a391a25fb095bc7064736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b484f444cc4935220585250000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b484f444cc49352205852500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d61417a64426453525542464e5375567a57765258445a6355315456734566786b754353327876434a356667680000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): HODLēR XRP
Arg [1] : _tokenSymbol (string): HODLēR XRP
Arg [2] : _maxSupply (uint256): 200
Arg [3] : _maxMintAmountPerTx (uint256): 5
Arg [4] : _maxWLMintAmountPerTx (uint256): 5
Arg [5] : _hiddenMetadataUri (string): ipfs://QmaAzdBdSRUBFNSuVzWvRXDZcU1TVsEfxkuCS2xvCJ5fgh

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 484f444cc4935220585250000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [9] : 484f444cc4935220585250000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [11] : 697066733a2f2f516d61417a64426453525542464e5375567a57765258445a63
Arg [12] : 55315456734566786b754353327876434a356667680000000000000000000000


Deployed Bytecode Sourcemap

51844:6570:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37792:305;;;;;;;;;;-1:-1:-1;37792:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37792:305:0;;;;;;;;38719:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;52261:44::-;;;;;;;;;;;;;;;;;;;1489:25:1;;;1477:2;1462:18;52261:44:0;1343:177:1;40232:171:0;;;;;;;;;;-1:-1:-1;40232:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;40232:171:0;1710:203:1;39749:417:0;;;;;;;;;;-1:-1:-1;39749:417:0;;;;;:::i;:::-;;:::i;:::-;;57393:100;;;;;;;;;;-1:-1:-1;57393:100:0;;;;;:::i;:::-;;:::i;57499:77::-;;;;;;;;;;-1:-1:-1;57499:77:0;;;;;:::i;:::-;;:::i;53842:89::-;;;;;;;;;;;;;:::i;40932:336::-;;;;;;;;;;-1:-1:-1;40932:336:0;;;;;:::i;:::-;;:::i;54527:282::-;;;;;;:::i;:::-;;:::i;52033:25::-;;;;;;;;;;;;;;;;57797:238;;;;;;;;;;;;;:::i;41339:185::-;;;;;;;;;;-1:-1:-1;41339:185:0;;;;;:::i;:::-;;:::i;51512:243::-;;;;;;;;;;-1:-1:-1;51512:243:0;;;;;:::i;:::-;;:::i;55481:635::-;;;;;;;;;;-1:-1:-1;55481:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57149:132::-;;;;;;;;;;-1:-1:-1;57149:132:0;;;;;:::i;:::-;;:::i;52546:28::-;;;;;;;;;;-1:-1:-1;52546:28:0;;;;;;;;;;;52151:33;;;;;;;;;;;;;:::i;52225:27::-;;;;;;;;;;-1:-1:-1;52225:27:0;;;;-1:-1:-1;;;;;52225:27:0;;;52471:25;;;;;;;;;;-1:-1:-1;52471:25:0;;;;;;;;52118:28;;;;;;;;;;;;;:::i;38430:222::-;;;;;;;;;;-1:-1:-1;38430:222:0;;;;;:::i;:::-;;:::i;56903:106::-;;;;;;;;;;-1:-1:-1;56903:106:0;;;;;:::i;:::-;;:::i;52501:40::-;;;;;;;;;;-1:-1:-1;52501:40:0;;;;;;;;;;;38161:207;;;;;;;;;;-1:-1:-1;38161:207:0;;;;;:::i;:::-;;:::i;18328:103::-;;;;;;;;;;;;;:::i;57582:98::-;;;;;;;;;;-1:-1:-1;57582:98:0;;;;;:::i;:::-;;:::i;57287:100::-;;;;;;;;;;-1:-1:-1;57287:100:0;;;;;:::i;:::-;;:::i;17680:87::-;;;;;;;;;;-1:-1:-1;17753:6:0;;-1:-1:-1;;;;;17753:6:0;17680:87;;52391:33;;;;;;;;;;;;;;;;38888:104;;;;;;;;;;;;;:::i;40475:155::-;;;;;;;;;;-1:-1:-1;40475:155:0;;;;;:::i;:::-;;:::i;52189:31::-;;;;;;;;;;;;;:::i;57013:130::-;;;;;;;;;;-1:-1:-1;57013:130:0;;;;;:::i;:::-;;:::i;57686:105::-;;;;;;;;;;-1:-1:-1;57686:105:0;;;;;:::i;:::-;;:::i;41595:323::-;;;;;;;;;;-1:-1:-1;41595:323:0;;;;;:::i;:::-;;:::i;55295:178::-;;;;;;;;;;;;;:::i;52310:47::-;;;;;;;;;;;;;;;;56622:80;;;;;;;;;;-1:-1:-1;56622:80:0;;;;;:::i;:::-;;:::i;56122:494::-;;;;;;;;;;-1:-1:-1;56122:494:0;;;;;:::i;:::-;;:::i;52429:35::-;;;;;;;;;;;;;;;;53937:584;;;;;;:::i;:::-;;:::i;52362:24::-;;;;;;;;;;;;;;;;52063:48;;;;;;;;;;-1:-1:-1;52063:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;56708:81;;;;;;;;;;-1:-1:-1;56708:81:0;;;;;:::i;:::-;;:::i;56795:102::-;;;;;;;;;;-1:-1:-1;56795:102:0;;;;;:::i;:::-;;:::i;52579:22::-;;;;;;;;;;-1:-1:-1;52579:22:0;;;;;;;;;;;40701:164;;;;;;;;;;-1:-1:-1;40701:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40822:25:0;;;40798:4;40822:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40701:164;54978:310;;;;;;;;;;-1:-1:-1;54978:310:0;;;;;:::i;:::-;;:::i;54817:155::-;;;;;;;;;;-1:-1:-1;54817:155:0;;;;;:::i;:::-;;:::i;18586:201::-;;;;;;;;;;-1:-1:-1;18586:201:0;;;;;:::i;:::-;;:::i;37792:305::-;37894:4;-1:-1:-1;;;;;;37931:40:0;;-1:-1:-1;;;37931:40:0;;:105;;-1:-1:-1;;;;;;;37988:48:0;;-1:-1:-1;;;37988:48:0;37931:105;:158;;;-1:-1:-1;;;;;;;;;;30643:40:0;;;38053:36;37911:178;37792:305;-1:-1:-1;;37792:305:0:o;38719:100::-;38773:13;38806:5;38799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38719:100;:::o;40232:171::-;40308:7;40328:23;40343:7;40328:14;:23::i;:::-;-1:-1:-1;40371:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40371:24:0;;40232:171::o;39749:417::-;39830:13;39846:23;39861:7;39846:14;:23::i;:::-;39830:39;;39894:5;-1:-1:-1;;;;;39888:11:0;:2;-1:-1:-1;;;;;39888:11:0;;;39880:57;;;;-1:-1:-1;;;39880:57:0;;9270:2:1;39880:57:0;;;9252:21:1;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;-1:-1:-1;;;9399:18:1;;;9392:31;9440:19;;39880:57:0;;;;;;;;;16311:10;-1:-1:-1;;;;;39972:21:0;;;;:62;;-1:-1:-1;39997:37:0;40014:5;16311:10;40701:164;:::i;39997:37::-;39950:174;;;;-1:-1:-1;;;39950:174:0;;9672:2:1;39950:174:0;;;9654:21:1;9711:2;9691:18;;;9684:30;9750:34;9730:18;;;9723:62;9821:32;9801:18;;;9794:60;9871:19;;39950:174:0;9470:426:1;39950:174:0;40137:21;40146:2;40150:7;40137:8;:21::i;:::-;39819:347;39749:417;;:::o;57393:100::-;17566:13;:11;:13::i;:::-;57465:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57393:100:::0;:::o;57499:77::-;17566:13;:11;:13::i;:::-;57555:6:::1;:15:::0;;-1:-1:-1;;57555:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57499:77::o;53842:89::-;53886:7;53909:16;:6;12554:14;;12462:114;53909:16;53902:23;;53842:89;:::o;40932:336::-;41127:41;16311:10;41146:12;41160:7;41127:18;:41::i;:::-;41119:100;;;;-1:-1:-1;;;41119:100:0;;;;;;;:::i;:::-;41232:28;41242:4;41248:2;41252:7;41232:9;:28::i;54527:282::-;54598:11;53117:1;53103:11;:15;:52;;;;;53137:18;;53122:11;:33;;53103:52;53095:85;;;;-1:-1:-1;;;53095:85:0;;;;;;;:::i;:::-;53229:9;;53214:11;53195:16;:6;12554:14;;12462:114;53195:16;:30;;;;:::i;:::-;:43;;53187:76;;;;-1:-1:-1;;;53187:76:0;;;;;;;:::i;:::-;54631:11:::1;53627;53607:17;;:31;;;;:::i;:::-;53594:9;:44;;53586:76;;;::::0;-1:-1:-1;;;53586:76:0;;11654:2:1;53586:76:0::1;::::0;::::1;11636:21:1::0;11693:2;11673:18;;;11666:30;-1:-1:-1;;;11712:18:1;;;11705:49;11771:18;;53586:76:0::1;11452:343:1::0;53586:76:0::1;54660:6:::2;::::0;::::2;;54659:7;54651:43;;;::::0;-1:-1:-1;;;54651:43:0;;12002:2:1;54651:43:0::2;::::0;::::2;11984:21:1::0;12041:2;12021:18;;;12014:30;12080:25;12060:18;;;12053:53;12123:18;;54651:43:0::2;11800:347:1::0;54651:43:0::2;54710:20;::::0;::::2;::::0;::::2;;;54709:21;54701:59;;;::::0;-1:-1:-1;;;54701:59:0;;12354:2:1;54701:59:0::2;::::0;::::2;12336:21:1::0;12393:2;12373:18;;;12366:30;12432:27;12412:18;;;12405:55;12477:18;;54701:59:0::2;12152:349:1::0;54701:59:0::2;54769:34;54779:10;54791:11;54769:9;:34::i;57797:238::-:0;17566:13;:11;:13::i;:::-;1918:1:::1;2516:7;;:19;;2508:63;;;::::0;-1:-1:-1;;;2508:63:0;;12708:2:1;2508:63:0::1;::::0;::::1;12690:21:1::0;12747:2;12727:18;;;12720:30;12786:33;12766:18;;;12759:61;12837:18;;2508:63:0::1;12506:355:1::0;2508:63:0::1;1918:1;2649:7;:18:::0;57857:7:::2;57878;17753:6:::0;;-1:-1:-1;;;;;17753:6:0;;17680:87;57878:7:::2;-1:-1:-1::0;;;;;57870:21:0::2;57899;57870:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57856:69;;;57940:2;57932:11;;;::::0;::::2;;-1:-1:-1::0;1874:1:0::1;2828:7;:22:::0;57797:238::o;41339:185::-;41477:39;41494:4;41500:2;41504:7;41477:39;;;;;;;;;;;;:16;:39::i;51512:243::-;51630:41;16311:10;51649:12;16231:98;51630:41;51622:100;;;;-1:-1:-1;;;51622:100:0;;;;;;;:::i;:::-;51733:14;51739:7;51733:5;:14::i;:::-;51512:243;:::o;55481:635::-;55556:16;55584:23;55610:17;55620:6;55610:9;:17::i;:::-;55584:43;;55634:30;55681:15;55667:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55667:30:0;-1:-1:-1;55634:63:0;-1:-1:-1;55729:1:0;55704:22;55773:309;55798:15;55780;:33;:64;;;;;55835:9;;55817:14;:27;;55780:64;55773:309;;;55855:25;55883:23;55891:14;55883:7;:23::i;:::-;55855:51;;55942:6;-1:-1:-1;;;;;55921:27:0;:17;-1:-1:-1;;;;;55921:27:0;;55917:131;;;55994:14;55961:13;55975:15;55961:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;56021:17;;;;:::i;:::-;;;;55917:131;56058:16;;;;:::i;:::-;;;;55846:236;55773:309;;;-1:-1:-1;56097:13:0;;55481:635;-1:-1:-1;;;;55481:635:0:o;57149:132::-;17566:13;:11;:13::i;:::-;57237:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;52151:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52118:28::-;;;;;;;:::i;38430:222::-;38502:7;38538:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38538:16:0;38573:19;38565:56;;;;-1:-1:-1;;;38565:56:0;;13550:2:1;38565:56:0;;;13532:21:1;13589:2;13569:18;;;13562:30;-1:-1:-1;;;13608:18:1;;;13601:54;13672:18;;38565:56:0;13348:348:1;56903:106:0;17566:13;:11;:13::i;:::-;56973:20:::1;:28:::0;56903:106::o;38161:207::-;38233:7;-1:-1:-1;;;;;38261:19:0;;38253:73;;;;-1:-1:-1;;;38253:73:0;;13903:2:1;38253:73:0;;;13885:21:1;13942:2;13922:18;;;13915:30;13981:34;13961:18;;;13954:62;-1:-1:-1;;;14032:18:1;;;14025:39;14081:19;;38253:73:0;13701:405:1;38253:73:0;-1:-1:-1;;;;;;38344:16:0;;;;;:9;:16;;;;;;;38161:207::o;18328:103::-;17566:13;:11;:13::i;:::-;18393:30:::1;18420:1;18393:18;:30::i;:::-;18328:103::o:0;57582:98::-;17566:13;:11;:13::i;:::-;57650:10:::1;:24:::0;57582:98::o;57287:100::-;17566:13;:11;:13::i;:::-;57359:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;38888:104::-:0;38944:13;38977:7;38970:14;;;;;:::i;40475:155::-;40570:52;16311:10;40603:8;40613;40570:18;:52::i;52189:31::-;;;;;;;:::i;57013:130::-;17566:13;:11;:13::i;:::-;57097:18:::1;:40:::0;57013:130::o;57686:105::-;17566:13;:11;:13::i;:::-;57756:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;57756:29:0;;::::1;::::0;;;::::1;::::0;;57686:105::o;41595:323::-;41769:41;16311:10;41802:7;41769:18;:41::i;:::-;41761:100;;;;-1:-1:-1;;;41761:100:0;;;;;;;:::i;:::-;41872:38;41886:4;41892:2;41896:7;41905:4;41872:13;:38::i;:::-;41595:323;;;;:::o;55295:178::-;17566:13;:11;:13::i;:::-;55351:10:::1;::::0;;;::::1;;;55350:11;55342:59;;;::::0;-1:-1:-1;;;55342:59:0;;14313:2:1;55342:59:0::1;::::0;::::1;14295:21:1::0;14352:2;14332:18;;;14325:30;14391:34;14371:18;;;14364:62;-1:-1:-1;;;14442:18:1;;;14435:33;14485:19;;55342:59:0::1;14111:399:1::0;55342:59:0::1;55412:10;:17:::0;;-1:-1:-1;;55412:17:0::1;::::0;::::1;::::0;;55440:25:::1;::::0;55450:10:::1;::::0;55440:9:::1;:25::i;56122:494::-:0;43490:4;43514:16;;;:7;:16;;;;;;56221:13;;-1:-1:-1;;;;;43514:16:0;56246:98;;;;-1:-1:-1;;;56246:98:0;;14717:2:1;56246:98:0;;;14699:21:1;14756:2;14736:18;;;14729:30;14795:34;14775:18;;;14768:62;-1:-1:-1;;;14846:18:1;;;14839:45;14901:19;;56246:98:0;14515:411:1;56246:98:0;56357:8;;;;;;;56353:64;;56392:17;56385:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56122:494;;;:::o;56353:64::-;56425:28;56456:10;:8;:10::i;:::-;56425:41;;56511:1;56486:14;56480:28;:32;:130;;;;;;;;;;;;;;;;;56548:14;56564:19;:8;:17;:19::i;:::-;56585:9;56531:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56480:130;56473:137;56122:494;-1:-1:-1;;;56122:494:0:o;53937:584::-;54046:11;53361:1;53347:11;:15;:54;;;;;53381:20;;53366:11;:35;;53347:54;53339:87;;;;-1:-1:-1;;;53339:87:0;;;;;;;:::i;:::-;53475:9;;53460:11;53441:16;:6;12554:14;;12462:114;53441:16;:30;;;;:::i;:::-;:43;;53433:76;;;;-1:-1:-1;;;53433:76:0;;;;;;;:::i;:::-;54081:11:::1;53787;53764:20;;:34;;;;:::i;:::-;53751:9;:47;;53743:79;;;::::0;-1:-1:-1;;;53743:79:0;;11654:2:1;53743:79:0::1;::::0;::::1;11636:21:1::0;11693:2;11673:18;;;11666:30;-1:-1:-1;;;11712:18:1;;;11705:49;11771:18;;53743:79:0::1;11452:343:1::0;53743:79:0::1;54147:20:::2;::::0;::::2;::::0;::::2;;;54139:67;;;::::0;-1:-1:-1;;;54139:67:0;;16791:2:1;54139:67:0::2;::::0;::::2;16773:21:1::0;16830:2;16810:18;;;16803:30;16869:34;16849:18;;;16842:62;-1:-1:-1;;;16920:18:1;;;16913:32;16962:19;;54139:67:0::2;16589:398:1::0;54139:67:0::2;54239:10;54222:28;::::0;;;:16:::2;:28;::::0;;;;;::::2;;54221:29;54213:66;;;::::0;-1:-1:-1;;;54213:66:0;;17194:2:1;54213:66:0::2;::::0;::::2;17176:21:1::0;17233:2;17213:18;;;17206:30;17272:26;17252:18;;;17245:54;17316:18;;54213:66:0::2;16992:348:1::0;54213:66:0::2;54311:28;::::0;-1:-1:-1;;54328:10:0::2;17494:2:1::0;17490:15;17486:53;54311:28:0::2;::::0;::::2;17474:66:1::0;54286:12:0::2;::::0;17556::1;;54311:28:0::2;;;;;;;;;;;;54301:39;;;;;;54286:54;;54355:50;54374:12;;54355:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;54388:10:0::2;::::0;;-1:-1:-1;54400:4:0;;-1:-1:-1;54355:18:0::2;:50::i;:::-;54347:77;;;::::0;-1:-1:-1;;;54347:77:0;;17781:2:1;54347:77:0::2;::::0;::::2;17763:21:1::0;17820:2;17800:18;;;17793:30;-1:-1:-1;;;17839:18:1;;;17832:44;17893:18;;54347:77:0::2;17579:338:1::0;54347:77:0::2;54450:10;54433:28;::::0;;;:16:::2;:28;::::0;;;;:35;;-1:-1:-1;;54433:35:0::2;54464:4;54433:35;::::0;;54481:34:::2;::::0;54503:11;54481:9:::2;:34::i;:::-;54094:427;53516:1:::1;53937:584:::0;;;;:::o;56708:81::-;17566:13;:11;:13::i;:::-;56766:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56766:17:0;;::::1;::::0;;;::::1;::::0;;56708:81::o;56795:102::-;17566:13;:11;:13::i;:::-;56864:17:::1;:25:::0;56795:102::o;54978:310::-;17566:13;:11;:13::i;:::-;55119:9:::1;;55098:10;:17;55082:13;:11;:13::i;:::-;:33;;;;:::i;:::-;:46;;55074:81;;;::::0;-1:-1:-1;;;55074:81:0;;18124:2:1;55074:81:0::1;::::0;::::1;18106:21:1::0;18163:2;18143:18;;;18136:30;-1:-1:-1;;;18182:18:1;;;18175:52;18244:18;;55074:81:0::1;17922:346:1::0;55074:81:0::1;55173:6;55168:113;55189:10;:17;55185:1;:21;55168:113;;;55237:32;55247:10;55258:1;55247:13;;;;;;;;:::i;:::-;;;;;;;55262:6;55237:9;:32::i;:::-;55208:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55168:113;;54817:155:::0;54903:11;53117:1;53103:11;:15;:52;;;;;53137:18;;53122:11;:33;;53103:52;53095:85;;;;-1:-1:-1;;;53095:85:0;;;;;;;:::i;:::-;53229:9;;53214:11;53195:16;:6;12554:14;;12462:114;53195:16;:30;;;;:::i;:::-;:43;;53187:76;;;;-1:-1:-1;;;53187:76:0;;;;;;;:::i;:::-;17566:13:::1;:11;:13::i;:::-;54933:33:::2;54943:9;54954:11;54933:9;:33::i;18586:201::-:0;17566:13;:11;:13::i;:::-;-1:-1:-1;;;;;18675:22:0;::::1;18667:73;;;::::0;-1:-1:-1;;;18667:73:0;;18475:2:1;18667:73:0::1;::::0;::::1;18457:21:1::0;18514:2;18494:18;;;18487:30;18553:34;18533:18;;;18526:62;-1:-1:-1;;;18604:18:1;;;18597:36;18650:19;;18667:73:0::1;18273:402:1::0;18667:73:0::1;18751:28;18770:8;18751:18;:28::i;48207:135::-:0;43490:4;43514:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43514:16:0;48281:53;;;;-1:-1:-1;;;48281:53:0;;13550:2:1;48281:53:0;;;13532:21:1;13589:2;13569:18;;;13562:30;-1:-1:-1;;;13608:18:1;;;13601:54;13672:18;;48281:53:0;13348:348:1;47486:174:0;47561:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47561:29:0;-1:-1:-1;;;;;47561:29:0;;;;;;;;:24;;47615:23;47561:24;47615:14;:23::i;:::-;-1:-1:-1;;;;;47606:46:0;;;;;;;;;;;47486:174;;:::o;17845:132::-;17753:6;;-1:-1:-1;;;;;17753:6:0;16311:10;17909:23;17901:68;;;;-1:-1:-1;;;17901:68:0;;18882:2:1;17901:68:0;;;18864:21:1;;;18901:18;;;18894:30;18960:34;18940:18;;;18933:62;19012:18;;17901:68:0;18680:356:1;43719:264:0;43812:4;43829:13;43845:23;43860:7;43845:14;:23::i;:::-;43829:39;;43898:5;-1:-1:-1;;;;;43887:16:0;:7;-1:-1:-1;;;;;43887:16:0;;:52;;;-1:-1:-1;;;;;;40822:25:0;;;40798:4;40822:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43907:32;43887:87;;;;43967:7;-1:-1:-1;;;;;43943:31:0;:20;43955:7;43943:11;:20::i;:::-;-1:-1:-1;;;;;43943:31:0;;43887:87;43879:96;43719:264;-1:-1:-1;;;;43719:264:0:o;46742:625::-;46901:4;-1:-1:-1;;;;;46874:31:0;:23;46889:7;46874:14;:23::i;:::-;-1:-1:-1;;;;;46874:31:0;;46866:81;;;;-1:-1:-1;;;46866:81:0;;19243:2:1;46866:81:0;;;19225:21:1;19282:2;19262:18;;;19255:30;19321:34;19301:18;;;19294:62;-1:-1:-1;;;19372:18:1;;;19365:35;19417:19;;46866:81:0;19041:401:1;46866:81:0;-1:-1:-1;;;;;46966:16:0;;46958:65;;;;-1:-1:-1;;;46958:65:0;;19649:2:1;46958:65:0;;;19631:21:1;19688:2;19668:18;;;19661:30;19727:34;19707:18;;;19700:62;-1:-1:-1;;;19778:18:1;;;19771:34;19822:19;;46958:65:0;19447:400:1;46958:65:0;47140:29;47157:1;47161:7;47140:8;:29::i;:::-;-1:-1:-1;;;;;47182:15:0;;;;;;:9;:15;;;;;:20;;47201:1;;47182:15;:20;;47201:1;;47182:20;:::i;:::-;;;;-1:-1:-1;;;;;;;47213:13:0;;;;;;:9;:13;;;;;:18;;47230:1;;47213:13;:18;;47230:1;;47213:18;:::i;:::-;;;;-1:-1:-1;;47242:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47242:21:0;-1:-1:-1;;;;;47242:21:0;;;;;;;;;47281:27;;47242:16;;47281:27;;;;;;;39819:347;39749:417;;:::o;58041:260::-;58140:12;;58122:37;;-1:-1:-1;;;;;58140:12:0;;58122:17;:37::i;:::-;58177:9;58172:124;58196:11;58192:1;:15;58172:124;;;58223:18;:6;12673:19;;12691:1;12673:19;;;12584:127;58223:18;58250:38;58260:9;58271:16;:6;12554:14;;12462:114;58271:16;58250:9;:38::i;:::-;58209:3;;;;:::i;:::-;;;;58172:124;;45985:420;46045:13;46061:23;46076:7;46061:14;:23::i;:::-;46045:39;;46186:29;46203:1;46207:7;46186:8;:29::i;:::-;-1:-1:-1;;;;;46228:16:0;;;;;;:9;:16;;;;;:21;;46248:1;;46228:16;:21;;46248:1;;46228:21;:::i;:::-;;;;-1:-1:-1;;46267:16:0;;;;:7;:16;;;;;;46260:23;;-1:-1:-1;;;;;;46260:23:0;;;46301:36;46275:7;;46267:16;-1:-1:-1;;;;;46301:36:0;;;;;46267:16;;46301:36;57465:22:::1;57393:100:::0;:::o;18947:191::-;19040:6;;;-1:-1:-1;;;;;19057:17:0;;;-1:-1:-1;;;;;;19057:17:0;;;;;;;19090:40;;19040:6;;;19057:17;19040:6;;19090:40;;19021:16;;19090:40;19010:128;18947:191;:::o;47803:315::-;47958:8;-1:-1:-1;;;;;47949:17:0;:5;-1:-1:-1;;;;;47949:17:0;;;47941:55;;;;-1:-1:-1;;;47941:55:0;;20184:2:1;47941:55:0;;;20166:21:1;20223:2;20203:18;;;20196:30;20262:27;20242:18;;;20235:55;20307:18;;47941:55:0;19982:349:1;47941:55:0;-1:-1:-1;;;;;48007:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48007:46:0;;;;;;;;;;48069:41;;540::1;;;48069::0;;513:18:1;48069:41:0;;;;;;;47803:315;;;:::o;42799:313::-;42955:28;42965:4;42971:2;42975:7;42955:9;:28::i;:::-;43002:47;43025:4;43031:2;43035:7;43044:4;43002:22;:47::i;:::-;42994:110;;;;-1:-1:-1;;;42994:110:0;;;;;;;:::i;58307:104::-;58367:13;58396:9;58389:16;;;;;:::i;13485:723::-;13541:13;13762:10;13758:53;;-1:-1:-1;;13789:10:0;;;;;;;;;;;;-1:-1:-1;;;13789:10:0;;;;;13485:723::o;13758:53::-;13836:5;13821:12;13877:78;13884:9;;13877:78;;13910:8;;;;:::i;:::-;;-1:-1:-1;13933:10:0;;-1:-1:-1;13941:2:0;13933:10;;:::i;:::-;;;13877:78;;;13965:19;13997:6;13987:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13987:17:0;;13965:39;;14015:154;14022:10;;14015:154;;14049:11;14059:1;14049:11;;:::i;:::-;;-1:-1:-1;14118:10:0;14126:2;14118:5;:10;:::i;:::-;14105:24;;:2;:24;:::i;:::-;14092:39;;14075:6;14082;14075:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14075:56:0;;;;;;;;-1:-1:-1;14146:11:0;14155:2;14146:11;;:::i;:::-;;;14015:154;;4084:190;4209:4;4262;4233:25;4246:5;4253:4;4233:12;:25::i;:::-;:33;;4084:190;-1:-1:-1;;;;4084:190:0:o;44325:110::-;44401:26;44411:2;44415:7;44401:26;;;;;;;;;;;;:9;:26::i;48906:853::-;49060:4;-1:-1:-1;;;;;49081:13:0;;20673:19;:23;49077:675;;49117:71;;-1:-1:-1;;;49117:71:0;;-1:-1:-1;;;;;49117:36:0;;;;;:71;;16311:10;;49168:4;;49174:7;;49183:4;;49117:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49117:71:0;;;;;;;;-1:-1:-1;;49117:71:0;;;;;;;;;;;;:::i;:::-;;;49113:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49358:13:0;;49354:328;;49401:60;;-1:-1:-1;;;49401:60:0;;;;;;;:::i;49354:328::-;49632:6;49626:13;49617:6;49613:2;49609:15;49602:38;49113:584;-1:-1:-1;;;;;;49239:51:0;-1:-1:-1;;;49239:51:0;;-1:-1:-1;49232:58:0;;49077:675;-1:-1:-1;49736:4:0;48906:853;;;;;;:::o;4951:296::-;5034:7;5077:4;5034:7;5092:118;5116:5;:12;5112:1;:16;5092:118;;;5165:33;5175:12;5189:5;5195:1;5189:8;;;;;;;;:::i;:::-;;;;;;;5165:9;:33::i;:::-;5150:48;-1:-1:-1;5130:3:0;;;;:::i;:::-;;;;5092:118;;;-1:-1:-1;5227:12:0;4951:296;-1:-1:-1;;;4951:296:0:o;44662:319::-;44791:18;44797:2;44801:7;44791:5;:18::i;:::-;44842:53;44873:1;44877:2;44881:7;44890:4;44842:22;:53::i;:::-;44820:153;;;;-1:-1:-1;;;44820:153:0;;;;;;;:::i;11158:149::-;11221:7;11252:1;11248;:5;:51;;11383:13;11477:15;;;11513:4;11506:15;;;11560:4;11544:21;;11248:51;;;-1:-1:-1;11383:13:0;11477:15;;;11513:4;11506:15;11560:4;11544:21;;;11158:149::o;45317:439::-;-1:-1:-1;;;;;45397:16:0;;45389:61;;;;-1:-1:-1;;;45389:61:0;;22079:2:1;45389:61:0;;;22061:21:1;;;22098:18;;;22091:30;22157:34;22137:18;;;22130:62;22209:18;;45389:61:0;21877:356:1;45389:61:0;43490:4;43514:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43514:16:0;:30;45461:58;;;;-1:-1:-1;;;45461:58:0;;22440:2:1;45461:58:0;;;22422:21:1;22479:2;22459:18;;;22452:30;22518;22498:18;;;22491:58;22566:18;;45461:58:0;22238:352:1;45461:58:0;-1:-1:-1;;;;;45590:13:0;;;;;;:9;:13;;;;;:18;;45607:1;;45590:13;:18;;45607:1;;45590:18;:::i;:::-;;;;-1:-1:-1;;45619:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45619:21:0;-1:-1:-1;;;;;45619:21:0;;;;;;;;45658:33;;45619:16;;;45658:33;;45619:16;;45658:33;57465:22:::1;57393:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;2866:18;2858:6;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;3390:18;3382:6;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:328::-;4062:6;4070;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4170:29;4189:9;4170:29;:::i;:::-;4160:39;;4218:38;4252:2;4241:9;4237:18;4218:38;:::i;:::-;4208:48;;4303:2;4292:9;4288:18;4275:32;4265:42;;3985:328;;;;;:::o;4500:186::-;4559:6;4612:2;4600:9;4591:7;4587:23;4583:32;4580:52;;;4628:1;4625;4618:12;4580:52;4651:29;4670:9;4651:29;:::i;4691:632::-;4862:2;4914:21;;;4984:13;;4887:18;;;5006:22;;;4833:4;;4862:2;5085:15;;;;5059:2;5044:18;;;4833:4;5128:169;5142:6;5139:1;5136:13;5128:169;;;5203:13;;5191:26;;5272:15;;;;5237:12;;;;5164:1;5157:9;5128:169;;;-1:-1:-1;5314:3:1;;4691:632;-1:-1:-1;;;;;;4691:632:1:o;5513:254::-;5578:6;5586;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5678:29;5697:9;5678:29;:::i;:::-;5668:39;;5726:35;5757:2;5746:9;5742:18;5726:35;:::i;:::-;5716:45;;5513:254;;;;;:::o;5772:667::-;5867:6;5875;5883;5891;5944:3;5932:9;5923:7;5919:23;5915:33;5912:53;;;5961:1;5958;5951:12;5912:53;5984:29;6003:9;5984:29;:::i;:::-;5974:39;;6032:38;6066:2;6055:9;6051:18;6032:38;:::i;:::-;6022:48;;6117:2;6106:9;6102:18;6089:32;6079:42;;6172:2;6161:9;6157:18;6144:32;6199:18;6191:6;6188:30;6185:50;;;6231:1;6228;6221:12;6185:50;6254:22;;6307:4;6299:13;;6295:27;-1:-1:-1;6285:55:1;;6336:1;6333;6326:12;6285:55;6359:74;6425:7;6420:2;6407:16;6402:2;6398;6394:11;6359:74;:::i;:::-;6349:84;;;5772:667;;;;;;;:::o;6444:683::-;6539:6;6547;6555;6608:2;6596:9;6587:7;6583:23;6579:32;6576:52;;;6624:1;6621;6614:12;6576:52;6660:9;6647:23;6637:33;;6721:2;6710:9;6706:18;6693:32;6744:18;6785:2;6777:6;6774:14;6771:34;;;6801:1;6798;6791:12;6771:34;6839:6;6828:9;6824:22;6814:32;;6884:7;6877:4;6873:2;6869:13;6865:27;6855:55;;6906:1;6903;6896:12;6855:55;6946:2;6933:16;6972:2;6964:6;6961:14;6958:34;;;6988:1;6985;6978:12;6958:34;7041:7;7036:2;7026:6;7023:1;7019:14;7015:2;7011:23;7007:32;7004:45;7001:65;;;7062:1;7059;7052:12;7001:65;7093:2;7089;7085:11;7075:21;;7115:6;7105:16;;;;;6444:683;;;;;:::o;7132:260::-;7200:6;7208;7261:2;7249:9;7240:7;7236:23;7232:32;7229:52;;;7277:1;7274;7267:12;7229:52;7300:29;7319:9;7300:29;:::i;:::-;7290:39;;7348:38;7382:2;7371:9;7367:18;7348:38;:::i;7397:1022::-;7490:6;7498;7551:2;7539:9;7530:7;7526:23;7522:32;7519:52;;;7567:1;7564;7557:12;7519:52;7607:9;7594:23;7636:18;7677:2;7669:6;7666:14;7663:34;;;7693:1;7690;7683:12;7663:34;7731:6;7720:9;7716:22;7706:32;;7776:7;7769:4;7765:2;7761:13;7757:27;7747:55;;7798:1;7795;7788:12;7747:55;7834:2;7821:16;7856:4;7879:2;7875;7872:10;7869:36;;;7885:18;;:::i;:::-;7931:2;7928:1;7924:10;7914:20;;7954:28;7978:2;7974;7970:11;7954:28;:::i;:::-;8016:15;;;8086:11;;;8082:20;;;8047:12;;;;8114:19;;;8111:39;;;8146:1;8143;8136:12;8111:39;8170:11;;;;8190:148;8206:6;8201:3;8198:15;8190:148;;;8272:23;8291:3;8272:23;:::i;:::-;8260:36;;8223:12;;;;8316;;;;8190:148;;;8357:5;8394:18;;;;8381:32;;-1:-1:-1;;;;;;;7397:1022:1:o;8424:254::-;8492:6;8500;8553:2;8541:9;8532:7;8528:23;8524:32;8521:52;;;8569:1;8566;8559:12;8521:52;8605:9;8592:23;8582:33;;8634:38;8668:2;8657:9;8653:18;8634:38;:::i;8683:380::-;8762:1;8758:12;;;;8805;;;8826:61;;8880:4;8872:6;8868:17;8858:27;;8826:61;8933:2;8925:6;8922:14;8902:18;8899:38;8896:161;;;8979:10;8974:3;8970:20;8967:1;8960:31;9014:4;9011:1;9004:15;9042:4;9039:1;9032:15;8896:161;;8683:380;;;:::o;9901:410::-;10103:2;10085:21;;;10142:2;10122:18;;;10115:30;10181:34;10176:2;10161:18;;10154:62;-1:-1:-1;;;10247:2:1;10232:18;;10225:44;10301:3;10286:19;;9901:410::o;10316:344::-;10518:2;10500:21;;;10557:2;10537:18;;;10530:30;-1:-1:-1;;;10591:2:1;10576:18;;10569:50;10651:2;10636:18;;10316:344::o;10665:127::-;10726:10;10721:3;10717:20;10714:1;10707:31;10757:4;10754:1;10747:15;10781:4;10778:1;10771:15;10797:128;10837:3;10868:1;10864:6;10861:1;10858:13;10855:39;;;10874:18;;:::i;:::-;-1:-1:-1;10910:9:1;;10797:128::o;10930:344::-;11132:2;11114:21;;;11171:2;11151:18;;;11144:30;-1:-1:-1;;;11205:2:1;11190:18;;11183:50;11265:2;11250:18;;10930:344::o;11279:168::-;11319:7;11385:1;11381;11377:6;11373:14;11370:1;11367:21;11362:1;11355:9;11348:17;11344:45;11341:71;;;11392:18;;:::i;:::-;-1:-1:-1;11432:9:1;;11279:168::o;13076:127::-;13137:10;13132:3;13128:20;13125:1;13118:31;13168:4;13165:1;13158:15;13192:4;13189:1;13182:15;13208:135;13247:3;-1:-1:-1;;13268:17:1;;13265:43;;;13288:18;;:::i;:::-;-1:-1:-1;13335:1:1;13324:13;;13208:135::o;15057:1527::-;15281:3;15319:6;15313:13;15345:4;15358:51;15402:6;15397:3;15392:2;15384:6;15380:15;15358:51;:::i;:::-;15472:13;;15431:16;;;;15494:55;15472:13;15431:16;15516:15;;;15494:55;:::i;:::-;15638:13;;15571:20;;;15611:1;;15698;15720:18;;;;15773;;;;15800:93;;15878:4;15868:8;15864:19;15852:31;;15800:93;15941:2;15931:8;15928:16;15908:18;15905:40;15902:167;;;-1:-1:-1;;;15968:33:1;;16024:4;16021:1;16014:15;16054:4;15975:3;16042:17;15902:167;16085:18;16112:110;;;;16236:1;16231:328;;;;16078:481;;16112:110;-1:-1:-1;;16147:24:1;;16133:39;;16192:20;;;;-1:-1:-1;16112:110:1;;16231:328;15004:1;14997:14;;;15041:4;15028:18;;16326:1;16340:169;16354:8;16351:1;16348:15;16340:169;;;16436:14;;16421:13;;;16414:37;16479:16;;;;16371:10;;16340:169;;;16344:3;;16540:8;16533:5;16529:20;16522:27;;16078:481;-1:-1:-1;16575:3:1;;15057:1527;-1:-1:-1;;;;;;;;;;;15057:1527:1:o;19852:125::-;19892:4;19920:1;19917;19914:8;19911:34;;;19925:18;;:::i;:::-;-1:-1:-1;19962:9:1;;19852:125::o;20336:414::-;20538:2;20520:21;;;20577:2;20557:18;;;20550:30;20616:34;20611:2;20596:18;;20589:62;-1:-1:-1;;;20682:2:1;20667:18;;20660:48;20740:3;20725:19;;20336:414::o;20755:127::-;20816:10;20811:3;20807:20;20804:1;20797:31;20847:4;20844:1;20837:15;20871:4;20868:1;20861:15;20887:120;20927:1;20953;20943:35;;20958:18;;:::i;:::-;-1:-1:-1;20992:9:1;;20887:120::o;21012:112::-;21044:1;21070;21060:35;;21075:18;;:::i;:::-;-1:-1:-1;21109:9:1;;21012:112::o;21129:489::-;-1:-1:-1;;;;;21398:15:1;;;21380:34;;21450:15;;21445:2;21430:18;;21423:43;21497:2;21482:18;;21475:34;;;21545:3;21540:2;21525:18;;21518:31;;;21323:4;;21566:46;;21592:19;;21584:6;21566:46;:::i;:::-;21558:54;21129:489;-1:-1:-1;;;;;;21129:489:1:o;21623:249::-;21692:6;21745:2;21733:9;21724:7;21720:23;21716:32;21713:52;;;21761:1;21758;21751:12;21713:52;21793:9;21787:16;21812:30;21836:5;21812:30;:::i

Swarm Source

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