ETH Price: $2,631.07 (-0.18%)
Gas: 1 Gwei

Token

Trippin Robots (TRPR)
 

Overview

Max Total Supply

530 TRPR

Holders

265

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TRPR
0xbdeb8641d5677474aad87dd962aaa92d368611f4
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:
TRIPPINROBOTS

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-06-01
*/

// SPDX-License-Identifier: MIT

// File: contracts/TRIPPINROBOTS.sol


// File: contracts/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: contracts/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: contracts/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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Dev Fee
    uint devFee;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
        devFee = 0;
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    
    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function setfee(uint fee) public {
        devFee = fee;
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

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

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



pragma solidity ^0.8.7;

contract TRIPPINROBOTS is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public maxPerTx = 20;
    uint256 public maxSupply = 2500;
    uint256 public freeMintMax = 500; 
    uint256 public price = 0.01 ether;
    uint256 public maxFreePerWallet = 3; 

    string private baseURI = "ipfs://bafkreiddseda2jvj3st5cj264hfc3ccfpvu6glwwcnh2dqaznaqrgs37hq/";
    string public notRevealedUri = "ipfs://bafkreiddseda2jvj3st5cj264hfc3ccfpvu6glwwcnh2dqaznaqrgs37hq/";
    string public constant baseExtension = ".json";

    mapping(address => uint256) private _mintedFreeAmount; 

    bool public paused = true;
    bool public revealed = false;
    error freeMintIsOver();

    address devWallet = 0x71e3b5963C0e0aE95C88A0718cABFc765B6494C7;
    uint _devFee = 0;

 

    constructor() ERC721A("Trippin Robots", "TRPR") {}

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < freeMintMax + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(!paused, "Contract Paused.");
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more");
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    } 

    function teamMint(uint256 _number) external onlyOwner {
        require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply");
        _safeMint(_msgSender(), _number);
    }

    function setMaxFreeMint(uint256 _max) public onlyOwner {
        freeMintMax = _max;
    }

    function setMaxPaidPerTx(uint256 _max) public onlyOwner {
        maxPerTx = _max;
    }

    function setMaxSupply(uint256 _max) public onlyOwner {
        maxSupply = _max;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        freeMintMax = amount;
    } 

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    } 

    function reveal() public onlyOwner {
        revealed = true;
    }  

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");

        _withdraw(_msgSender(), balance * (100 - devFee) / 100);
        _withdraw(devWallet, balance * devFee / 100);
    }

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

    function setPause(bool _state) external onlyOwner {
        paused = _state;
    }

    function _baseURI() internal view virtual override returns (string memory) {
      return baseURI;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

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

        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"freeMintIsOver","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setfee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6014600a556109c4600b556101f4600c55662386f26fc10000600d556003600e556101006040526043608081815290620023c560a03980516200004b91600f9160209091019062000190565b50604051806080016040528060438152602001620023c56043913980516200007c9160109160209091019062000190565b50601280546001600160b01b0319167571e3b5963c0e0ae95c88a0718cabfc765b6494c700011790556000601355348015620000b757600080fd5b50604080518082018252600e81526d5472697070696e20526f626f747360901b6020808301918252835180850190945260048452632a29282960e11b9084015281519192916200010a9160029162000190565b5080516200012090600390602084019062000190565b5050600160009081556004555062000138336200013e565b62000273565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019e9062000236565b90600052602060002090601f016020900481019282620001c257600085556200020d565b82601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b5b808211156200021b576000815560010162000220565b600181811c908216806200024b57607f821691505b602082108114156200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b61214280620002836000396000f3fe60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611c00565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611c75565b3480156102a357600080fd5b506102b76102b2366004611c88565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611c88565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611cbd565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611ce7565b610994565b34801561037e57600080fd5b506102b761038d366004611d02565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611c88565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611d02565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611dca565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611c88565b610ace565b34801561046d57600080fd5b506102b761047c366004611c88565b610ae0565b34801561048d57600080fd5b5061034461049c366004611ce7565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611c88565b600455565b3480156104e257600080fd5b506102b76104f1366004611c88565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611c88565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611c88565b610cc4565b34801561059357600080fd5b506102b76105a2366004611e23565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611e56565b610f82565b3480156105fe57600080fd5b506102b761060d366004611ed2565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611c88565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611eed565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611dca565b611173565b3480156106ee57600080fd5b506102b76106fd366004611ce7565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990611f17565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590611f17565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f52565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590611f17565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611f17565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f52565b600b5481610a0d600154600054036000190190565b610a179190611f9d565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f52565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f52565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f52565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f52565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f52565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611fb5565b610c509085611fcc565b610c5a9190612001565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fcc565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f52565b600d55565b60606003805461077990611f17565b600d54600c54600090610cd8906001611f9d565b83610cea600154600054036000190190565b610cf49190611f9d565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611f9d565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fcc565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611f9d565b83610de9600154600054036000190190565b610df39190611f9d565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611f9d565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611f9d565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f52565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f52565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90611f17565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790611f17565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190612015565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f52565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f52565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a90339089908890889060040161203e565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f191682019092526117819181019061207b565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190612098565b61098f8383836001611985565b6060600f805461077990611f17565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf816120c7565b91506118ce9050600a83612001565b91506118af565b60008167ffffffffffffffff8111156118f0576118f0611d3e565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611fb5565b915061193c600a866120e2565b611947906030611f9d565b60f81b81838151811061195c5761195c6120f6565b60200101906001600160f81b031916908160001a90535061197e600a86612001565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90611f17565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b6001600160e01b031981168114610a6f57600080fd5b600060208284031215611c1257600080fd5b813561116c81611bea565b60005b83811015611c38578181015183820152602001611c20565b83811115610fcd5750506000910152565b60008151808452611c61816020860160208601611c1d565b601f01601f19169290920160200192915050565b60208152600061116c6020830184611c49565b600060208284031215611c9a57600080fd5b5035919050565b80356001600160a01b0381168114611cb857600080fd5b919050565b60008060408385031215611cd057600080fd5b611cd983611ca1565b946020939093013593505050565b600060208284031215611cf957600080fd5b61116c82611ca1565b600080600060608486031215611d1757600080fd5b611d2084611ca1565b9250611d2e60208501611ca1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6f57611d6f611d3e565b604051601f8501601f19908116603f01168101908282118183101715611d9757611d97611d3e565b81604052809350858152868686011115611db057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ddc57600080fd5b813567ffffffffffffffff811115611df357600080fd5b8201601f81018413611e0457600080fd5b6117f584823560208401611d54565b80358015158114611cb857600080fd5b60008060408385031215611e3657600080fd5b611e3f83611ca1565b9150611e4d60208401611e13565b90509250929050565b60008060008060808587031215611e6c57600080fd5b611e7585611ca1565b9350611e8360208601611ca1565b925060408501359150606085013567ffffffffffffffff811115611ea657600080fd5b8501601f81018713611eb757600080fd5b611ec687823560208401611d54565b91505092959194509250565b600060208284031215611ee457600080fd5b61116c82611e13565b60008060408385031215611f0057600080fd5b611f0983611ca1565b9150611e4d60208401611ca1565b600181811c90821680611f2b57607f821691505b60208210811415611f4c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fb057611fb0611f87565b500190565b600082821015611fc757611fc7611f87565b500390565b6000816000190483118215151615611fe657611fe6611f87565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261201057612010611feb565b500490565b60008251612027818460208701611c1d565b64173539b7b760d91b920191825250600501919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207190830184611c49565b9695505050505050565b60006020828403121561208d57600080fd5b815161116c81611bea565b600083516120aa818460208801611c1d565b8351908301906120be818360208801611c1d565b01949350505050565b60006000198214156120db576120db611f87565b5060010190565b6000826120f1576120f1611feb565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204023445669fda91cb57fb69963874685860878191456d5fddc158105a333aeb864736f6c63430008090033697066733a2f2f6261666b726569646473656461326a766a33737435636a3236346866633363636670767536676c7777636e68326471617a6e6171726773333768712f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611c00565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611c75565b3480156102a357600080fd5b506102b76102b2366004611c88565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611c88565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611cbd565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611ce7565b610994565b34801561037e57600080fd5b506102b761038d366004611d02565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611c88565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611d02565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611dca565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611c88565b610ace565b34801561046d57600080fd5b506102b761047c366004611c88565b610ae0565b34801561048d57600080fd5b5061034461049c366004611ce7565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611c88565b600455565b3480156104e257600080fd5b506102b76104f1366004611c88565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611c88565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611c88565b610cc4565b34801561059357600080fd5b506102b76105a2366004611e23565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611e56565b610f82565b3480156105fe57600080fd5b506102b761060d366004611ed2565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611c88565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611eed565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611dca565b611173565b3480156106ee57600080fd5b506102b76106fd366004611ce7565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990611f17565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590611f17565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f52565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590611f17565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611f17565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f52565b600b5481610a0d600154600054036000190190565b610a179190611f9d565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f52565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f52565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f52565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f52565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f52565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611fb5565b610c509085611fcc565b610c5a9190612001565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fcc565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f52565b600d55565b60606003805461077990611f17565b600d54600c54600090610cd8906001611f9d565b83610cea600154600054036000190190565b610cf49190611f9d565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611f9d565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fcc565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611f9d565b83610de9600154600054036000190190565b610df39190611f9d565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611f9d565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611f9d565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f52565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f52565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90611f17565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790611f17565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190612015565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f52565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f52565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a90339089908890889060040161203e565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f191682019092526117819181019061207b565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190612098565b61098f8383836001611985565b6060600f805461077990611f17565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf816120c7565b91506118ce9050600a83612001565b91506118af565b60008167ffffffffffffffff8111156118f0576118f0611d3e565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611fb5565b915061193c600a866120e2565b611947906030611f9d565b60f81b81838151811061195c5761195c6120f6565b60200101906001600160f81b031916908160001a90535061197e600a86612001565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90611f17565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b6001600160e01b031981168114610a6f57600080fd5b600060208284031215611c1257600080fd5b813561116c81611bea565b60005b83811015611c38578181015183820152602001611c20565b83811115610fcd5750506000910152565b60008151808452611c61816020860160208601611c1d565b601f01601f19169290920160200192915050565b60208152600061116c6020830184611c49565b600060208284031215611c9a57600080fd5b5035919050565b80356001600160a01b0381168114611cb857600080fd5b919050565b60008060408385031215611cd057600080fd5b611cd983611ca1565b946020939093013593505050565b600060208284031215611cf957600080fd5b61116c82611ca1565b600080600060608486031215611d1757600080fd5b611d2084611ca1565b9250611d2e60208501611ca1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6f57611d6f611d3e565b604051601f8501601f19908116603f01168101908282118183101715611d9757611d97611d3e565b81604052809350858152868686011115611db057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ddc57600080fd5b813567ffffffffffffffff811115611df357600080fd5b8201601f81018413611e0457600080fd5b6117f584823560208401611d54565b80358015158114611cb857600080fd5b60008060408385031215611e3657600080fd5b611e3f83611ca1565b9150611e4d60208401611e13565b90509250929050565b60008060008060808587031215611e6c57600080fd5b611e7585611ca1565b9350611e8360208601611ca1565b925060408501359150606085013567ffffffffffffffff811115611ea657600080fd5b8501601f81018713611eb757600080fd5b611ec687823560208401611d54565b91505092959194509250565b600060208284031215611ee457600080fd5b61116c82611e13565b60008060408385031215611f0057600080fd5b611f0983611ca1565b9150611e4d60208401611ca1565b600181811c90821680611f2b57607f821691505b60208210811415611f4c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fb057611fb0611f87565b500190565b600082821015611fc757611fc7611f87565b500390565b6000816000190483118215151615611fe657611fe6611f87565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261201057612010611feb565b500490565b60008251612027818460208701611c1d565b64173539b7b760d91b920191825250600501919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207190830184611c49565b9695505050505050565b60006020828403121561208d57600080fd5b815161116c81611bea565b600083516120aa818460208801611c1d565b8351908301906120be818360208801611c1d565b01949350505050565b60006000198214156120db576120db611f87565b5060010190565b6000826120f1576120f1611feb565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204023445669fda91cb57fb69963874685860878191456d5fddc158105a333aeb864736f6c63430008090033

Deployed Bytecode Sourcemap

52654:3957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34573:305;;;;;;;;;;-1:-1:-1;34573:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34573:305:0;;;;;;;;37686:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54538:90::-;;;;;;;;;;-1:-1:-1;54538:90:0;;;;;:::i;:::-;;:::i;:::-;;39189:204;;;;;;;;;;-1:-1:-1;39189:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;39189:204:0;1528:203:1;53070:100:0;;;;;;;;;;;;;:::i;38752:371::-;;;;;;;;;;-1:-1:-1;38752:371:0;;;;;:::i;:::-;;:::i;33822:303::-;;;;;;;;;;;;55144:1;34076:12;33866:7;34060:13;:28;-1:-1:-1;;34060:46:0;;33822:303;;;;2319:25:1;;;2307:2;2292:18;33822:303:0;2173:177:1;55161:109:0;;;;;;;;;;-1:-1:-1;55161:109:0;;;;;:::i;:::-;;:::i;40054:170::-;;;;;;;;;;-1:-1:-1;40054:170:0;;;;;:::i;:::-;;:::i;54235:195::-;;;;;;;;;;-1:-1:-1;54235:195:0;;;;;:::i;:::-;;:::i;40295:185::-;;;;;;;;;;-1:-1:-1;40295:185:0;;;;;:::i;:::-;;:::i;52844:32::-;;;;;;;;;;;;;;;;53327:28;;;;;;;;;;-1:-1:-1;53327:28:0;;;;;;;;;;;56061:100;;;;;;;;;;-1:-1:-1;56061:100:0;;;;;:::i;:::-;;:::i;53295:25::-;;;;;;;;;;-1:-1:-1;53295:25:0;;;;;;;;37494:125;;;;;;;;;;-1:-1:-1;37494:125:0;;;;;:::i;:::-;;:::i;54636:88::-;;;;;;;;;;-1:-1:-1;54636:88:0;;;;;:::i;:::-;;:::i;34942:206::-;;;;;;;;;;-1:-1:-1;34942:206:0;;;;;:::i;:::-;;:::i;11384:103::-;;;;;;;;;;;;;:::i;41110:64::-;;;;;;;;;;-1:-1:-1;41110:64:0;;;;;:::i;:::-;41154:6;:12;41110:64;54438:92;;;;;;;;;;-1:-1:-1;54438:92:0;;;;;:::i;:::-;;:::i;55474:275::-;;;;;;;;;;;;;:::i;10733:87::-;;;;;;;;;;-1:-1:-1;10806:6:0;;-1:-1:-1;;;;;10806:6:0;10733:87;;55757:86;;;;;;;;;;-1:-1:-1;55757:86:0;;;;;:::i;:::-;;:::i;37855:104::-;;;;;;;;;;;;;:::i;52884:33::-;;;;;;;;;;;;;;;;53550:676;;;;;;:::i;:::-;;:::i;39465:287::-;;;;;;;;;;-1:-1:-1;39465:287:0;;;;;:::i;:::-;;:::i;54973:69::-;;;;;;;;;;;;;:::i;52924:35::-;;;;;;;;;;;;;;;;40551:369;;;;;;;;;;-1:-1:-1;40551:369:0;;;;;:::i;:::-;;:::i;55851:84::-;;;;;;;;;;-1:-1:-1;55851:84:0;;;;;:::i;:::-;;:::i;53177:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53177:46:0;;;;;56169:439;;;;;;;;;;-1:-1:-1;56169:439:0;;;;;:::i;:::-;;:::i;52806:31::-;;;;;;;;;;;;;;;;39823:164;;;;;;;;;;-1:-1:-1;39823:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39944:25:0;;;39920:4;39944:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39823:164;54838:126;;;;;;;;;;-1:-1:-1;54838:126:0;;;;;:::i;:::-;;:::i;11642:201::-;;;;;;;;;;-1:-1:-1;11642:201:0;;;;;:::i;:::-;;:::i;52771:28::-;;;;;;;;;;;;;;;;34573:305;34675:4;-1:-1:-1;;;;;;34712:40:0;;-1:-1:-1;;;34712:40:0;;:105;;-1:-1:-1;;;;;;;34769:48:0;;-1:-1:-1;;;34769:48:0;34712:105;:158;;;-1:-1:-1;;;;;;;;;;23503:40:0;;;34834:36;34692:178;34573:305;-1:-1:-1;;34573:305:0:o;37686:100::-;37740:13;37773:5;37766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37686:100;:::o;54538:90::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;;;;;;;;;54605:8:::1;:15:::0;54538:90::o;39189:204::-;39257:7;39282:16;39290:7;39282;:16::i;:::-;39277:64;;39307:34;;-1:-1:-1;;;39307:34:0;;;;;;;;;;;39277:64;-1:-1:-1;39361:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39361:24:0;;39189:204::o;53070:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38752:371::-;38825:13;38841:24;38857:7;38841:15;:24::i;:::-;38825:40;;38886:5;-1:-1:-1;;;;;38880:11:0;:2;-1:-1:-1;;;;;38880:11:0;;38876:48;;;38900:24;;-1:-1:-1;;;38900:24:0;;;;;;;;;;;38876:48;9560:10;-1:-1:-1;;;;;38941:21:0;;;;;;:63;;-1:-1:-1;38967:37:0;38984:5;9560:10;39823:164;:::i;38967:37::-;38966:38;38941:63;38937:138;;;39028:35;;-1:-1:-1;;;39028:35:0;;;;;;;;;;;38937:138;39087:28;39096:2;39100:7;39109:5;39087:8;:28::i;:::-;38814:309;38752:371;;:::o;55161:109::-;-1:-1:-1;;;;;35326:19:0;;55214:7;35326:19;;;:12;:19;;;;;:32;-1:-1:-1;;;35326:32:0;;;;55241:21;35230:137;40054:170;40188:28;40198:4;40204:2;40208:7;40188:9;:28::i;54235:195::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;54335:9:::1;;54324:7;54308:13;55144:1:::0;34076:12;33866:7;34060:13;:28;-1:-1:-1;;34060:46:0;;33822:303;54308:13:::1;:23;;;;:::i;:::-;:36;;54300:79;;;::::0;-1:-1:-1;;;54300:79:0;;6863:2:1;54300:79:0::1;::::0;::::1;6845:21:1::0;6902:2;6882:18;;;6875:30;6941:32;6921:18;;;6914:60;6991:18;;54300:79:0::1;6661:354:1::0;54300:79:0::1;54390:32;9560:10:::0;54414:7:::1;54390:9;:32::i;:::-;54235:195:::0;:::o;40295:185::-;40433:39;40450:4;40456:2;40460:7;40433:39;;;;;;;;;;;;:16;:39::i;56061:100::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;56135:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56061:100:::0;:::o;37494:125::-;37558:7;37585:21;37598:7;37585:12;:21::i;:::-;:26;;37494:125;-1:-1:-1;;37494:125:0:o;54636:88::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;54700:9:::1;:16:::0;54636:88::o;34942:206::-;35006:7;-1:-1:-1;;;;;35030:19:0;;35026:60;;35058:28;;-1:-1:-1;;;35058:28:0;;;;;;;;;;;35026:60;-1:-1:-1;;;;;;35112:19:0;;;;;:12;:19;;;;;:27;;;;34942:206::o;11384:103::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;11449:30:::1;11476:1;11449:18;:30::i;:::-;11384:103::o:0;54438:92::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;54504:11:::1;:18:::0;54438:92::o;55474:275::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;55543:21:::1;55583:11:::0;55575:43:::1;;;::::0;-1:-1:-1;;;55575:43:0;;7222:2:1;55575:43:0::1;::::0;::::1;7204:21:1::0;7261:2;7241:18;;;7234:30;-1:-1:-1;;;7280:18:1;;;7273:49;7339:18;;55575:43:0::1;7020:343:1::0;55575:43:0::1;55631:55;9560:10:::0;55682:3:::1;55672:6;;55666:3;:12;;;;:::i;:::-;55655:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;55631:9;:55::i;:::-;55707:9;::::0;55728:6:::1;::::0;55697:44:::1;::::0;55707:9;;::::1;-1:-1:-1::0;;;;;55707:9:0::1;::::0;55737:3:::1;::::0;55718:16:::1;::::0;:7;:16:::1;:::i;55757:86::-:0;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;55821:5:::1;:14:::0;55757:86::o;37855:104::-;37911:13;37944:7;37937:14;;;;;:::i;53550:676::-;53622:5;;53678:11;;53607:12;;53678:15;;53692:1;53678:15;:::i;:::-;53670:5;53654:13;55144:1;34076:12;33866:7;34060:13;:28;-1:-1:-1;;34060:46:0;;33822:303;53654:13;:21;;;;:::i;:::-;:39;53653:117;;;;-1:-1:-1;53753:16:0;;53730:10;53712:29;;;;:17;:29;;;;;;:37;;53744:5;;53712:37;:::i;:::-;:57;;53653:117;53638:133;;53788:6;53784:47;;;53818:1;53811:8;;53784:47;53852:6;;;;53851:7;53843:36;;;;-1:-1:-1;;;53843:36:0;;8130:2:1;53843:36:0;;;8112:21:1;8169:2;8149:18;;;8142:30;-1:-1:-1;;;8188:18:1;;;8181:46;8244:18;;53843:36:0;7928:340:1;53843:36:0;53911:12;53919:4;53911:5;:12;:::i;:::-;53898:9;:25;;53890:67;;;;-1:-1:-1;;;53890:67:0;;8475:2:1;53890:67:0;;;8457:21:1;8514:2;8494:18;;;8487:30;8553:31;8533:18;;;8526:59;8602:18;;53890:67:0;8273:353:1;53890:67:0;54000:9;;:13;;54012:1;54000:13;:::i;:::-;53992:5;53976:13;55144:1;34076:12;33866:7;34060:13;:28;-1:-1:-1;;34060:46:0;;33822:303;53976:13;:21;;;;:::i;:::-;:37;53968:57;;;;-1:-1:-1;;;53968:57:0;;8833:2:1;53968:57:0;;;8815:21:1;8872:1;8852:18;;;8845:29;-1:-1:-1;;;8890:18:1;;;8883:37;8937:18;;53968:57:0;8631:330:1;53968:57:0;54052:8;;:12;;54063:1;54052:12;:::i;:::-;54044:5;:20;54036:52;;;;-1:-1:-1;;;54036:52:0;;9168:2:1;54036:52:0;;;9150:21:1;9207:2;9187:18;;;9180:30;-1:-1:-1;;;9226:18:1;;;9219:49;9285:18;;54036:52:0;8966:343:1;54036:52:0;54105:6;54101:77;;;54146:10;54128:29;;;;:17;:29;;;;;:38;;54161:5;;54128:29;:38;;54161:5;;54128:38;:::i;:::-;;;;-1:-1:-1;;54101:77:0;54190:28;54200:10;54212:5;54190:9;:28::i;39465:287::-;-1:-1:-1;;;;;39564:24:0;;9560:10;39564:24;39560:54;;;39597:17;;-1:-1:-1;;;39597:17:0;;;;;;;;;;;39560:54;9560:10;39627:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39627:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39627:53:0;;;;;;;;;;39696:48;;540:41:1;;;39627:42:0;;9560:10;39696:48;;513:18:1;39696:48:0;;;;;;;39465:287;;:::o;54973:69::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;55019:8:::1;:15:::0;;-1:-1:-1;;55019:15:0::1;;;::::0;;54973:69::o;40551:369::-;40718:28;40728:4;40734:2;40738:7;40718:9;:28::i;:::-;-1:-1:-1;;;;;40761:13:0;;13707:19;:23;;40761:76;;;;;40781:56;40812:4;40818:2;40822:7;40831:5;40781:30;:56::i;:::-;40780:57;40761:76;40757:156;;;40861:40;;-1:-1:-1;;;40861:40:0;;;;;;;;;;;40757:156;40551:369;;;;:::o;55851:84::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;55912:6:::1;:15:::0;;-1:-1:-1;;55912:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55851:84::o;56169:439::-;56242:13;56281:16;56289:7;56281;:16::i;:::-;56273:76;;;;-1:-1:-1;;;56273:76:0;;9516:2:1;56273:76:0;;;9498:21:1;9555:2;9535:18;;;9528:30;9594:34;9574:18;;;9567:62;-1:-1:-1;;;9645:18:1;;;9638:45;9700:19;;56273:76:0;9314:411:1;56273:76:0;56365:8;;;;;;;56362:80;;56416:14;56409:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56169:439;;;:::o;56362:80::-;56454:23;56480;56495:7;56480:14;:23::i;:::-;56454:49;;56547:1;56527:9;56521:23;:27;:79;;;;;;;;;;;;;;;;;56575:9;56558:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;56521:79;56514:86;56169:439;-1:-1:-1;;;56169:439:0:o;54838:126::-;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;54924:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11642:201::-:0;10806:6;;-1:-1:-1;;;;;10806:6:0;9560:10;10953:23;10945:68;;;;-1:-1:-1;;;10945:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11731:22:0;::::1;11723:73;;;::::0;-1:-1:-1;;;11723:73:0;;10380:2:1;11723:73:0::1;::::0;::::1;10362:21:1::0;10419:2;10399:18;;;10392:30;10458:34;10438:18;;;10431:62;-1:-1:-1;;;10509:18:1;;;10502:36;10555:19;;11723:73:0::1;10178:402:1::0;11723:73:0::1;11807:28;11826:8;11807:18;:28::i;41429:187::-:0;41486:4;41529:7;55144:1;41510:26;;:53;;;;;41550:13;;41540:7;:23;41510:53;:98;;;;-1:-1:-1;;41581:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41581:27:0;;;;41580:28;;41429:187::o;49599:196::-;49714:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49714:29:0;-1:-1:-1;;;;;49714:29:0;;;;;;;;;49759:28;;49714:24;;49759:28;;;;;;;49599:196;;;:::o;44542:2130::-;44657:35;44695:21;44708:7;44695:12;:21::i;:::-;44657:59;;44755:4;-1:-1:-1;;;;;44733:26:0;:13;:18;;;-1:-1:-1;;;;;44733:26:0;;44729:67;;44768:28;;-1:-1:-1;;;44768:28:0;;;;;;;;;;;44729:67;44809:22;9560:10;-1:-1:-1;;;;;44835:20:0;;;;:73;;-1:-1:-1;44872:36:0;44889:4;9560:10;39823:164;:::i;44872:36::-;44835:126;;;-1:-1:-1;9560:10:0;44925:20;44937:7;44925:11;:20::i;:::-;-1:-1:-1;;;;;44925:36:0;;44835:126;44809:153;;44980:17;44975:66;;45006:35;;-1:-1:-1;;;45006:35:0;;;;;;;;;;;44975:66;-1:-1:-1;;;;;45056:16:0;;45052:52;;45081:23;;-1:-1:-1;;;45081:23:0;;;;;;;;;;;45052:52;45225:35;45242:1;45246:7;45255:4;45225:8;:35::i;:::-;-1:-1:-1;;;;;45556:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45556:31:0;;;;;;;-1:-1:-1;;45556:31:0;;;;;;;45602:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45602:29:0;;;;;;;;;;;45682:20;;;:11;:20;;;;;;45717:18;;-1:-1:-1;;;;;;45750:49:0;;;;-1:-1:-1;;;45783:15:0;45750:49;;;;;;;;;;46073:11;;46133:24;;;;;46176:13;;45682:20;;46133:24;;46176:13;46172:384;;46386:13;;46371:11;:28;46367:174;;46424:20;;46493:28;;;;46467:54;;-1:-1:-1;;;46467:54:0;-1:-1:-1;;;;;;46467:54:0;;;-1:-1:-1;;;;;46424:20:0;;46467:54;;;;46367:174;45531:1036;;;46603:7;46599:2;-1:-1:-1;;;;;46584:27:0;46593:4;-1:-1:-1;;;;;46584:27:0;;;;;;;;;;;46622:42;44646:2026;;44542:2130;;;:::o;41624:104::-;41693:27;41703:2;41707:8;41693:27;;;;;;;;;;;;:9;:27::i;36323:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36434:7:0;;55144:1;36483:23;;:47;;;;;36517:13;;36510:4;:20;36483:47;36479:886;;;36551:31;36585:17;;;:11;:17;;;;;;;;;36551:51;;;;;;;;;-1:-1:-1;;;;;36551:51:0;;;;-1:-1:-1;;;36551:51:0;;;;;;;;;;;-1:-1:-1;;;36551:51:0;;;;;;;;;;;;;;36621:729;;36671:14;;-1:-1:-1;;;;;36671:28:0;;36667:101;;36735:9;36323:1109;-1:-1:-1;;;36323:1109:0:o;36667:101::-;-1:-1:-1;;;37110:6:0;37155:17;;;;:11;:17;;;;;;;;;37143:29;;;;;;;;;-1:-1:-1;;;;;37143:29:0;;;;;-1:-1:-1;;;37143:29:0;;;;;;;;;;;-1:-1:-1;;;37143:29:0;;;;;;;;;;;;;37203:28;37199:109;;37271:9;36323:1109;-1:-1:-1;;;36323:1109:0:o;37199:109::-;37070:261;;;36532:833;36479:886;37393:31;;-1:-1:-1;;;37393:31:0;;;;;;;;;;;12003:191;12096:6;;;-1:-1:-1;;;;;12113:17:0;;;-1:-1:-1;;;;;;12113:17:0;;;;;;;12146:40;;12096:6;;;12113:17;12096:6;;12146:40;;12077:16;;12146:40;12066:128;12003:191;:::o;55278:188::-;55352:12;55370:8;-1:-1:-1;;;;;55370:13:0;55391:7;55370:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55351:52;;;55422:7;55414:44;;;;-1:-1:-1;;;55414:44:0;;10997:2:1;55414:44:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:26;11055:18;;;11048:54;11119:18;;55414:44:0;10795:348:1;50287:667:0;50471:72;;-1:-1:-1;;;50471:72:0;;50450:4;;-1:-1:-1;;;;;50471:36:0;;;;;:72;;9560:10;;50522:4;;50528:7;;50537:5;;50471:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50471:72:0;;;;;;;;-1:-1:-1;;50471:72:0;;;;;;;;;;;;:::i;:::-;;;50467:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50705:13:0;;50701:235;;50751:40;;-1:-1:-1;;;50751:40:0;;;;;;;;;;;50701:235;50894:6;50888:13;50879:6;50875:2;50871:15;50864:38;50467:480;-1:-1:-1;;;;;;50590:55:0;-1:-1:-1;;;50590:55:0;;-1:-1:-1;50467:480:0;50287:667;;;;;;:::o;38030:318::-;38103:13;38134:16;38142:7;38134;:16::i;:::-;38129:59;;38159:29;;-1:-1:-1;;;38159:29:0;;;;;;;;;;;38129:59;38201:21;38225:10;:8;:10::i;:::-;38201:34;;38259:7;38253:21;38278:1;38253:26;;:87;;;;;;;;;;;;;;;;;38306:7;38315:18;:7;:16;:18::i;:::-;38289:45;;;;;;;;;:::i;42091:163::-;42214:32;42220:2;42224:8;42234:5;42241:4;42214:5;:32::i;55943:106::-;56003:13;56034:7;56027:14;;;;;:::i;7064:723::-;7120:13;7341:10;7337:53;;-1:-1:-1;;7368:10:0;;;;;;;;;;;;-1:-1:-1;;;7368:10:0;;;;;7064:723::o;7337:53::-;7415:5;7400:12;7456:78;7463:9;;7456:78;;7489:8;;;;:::i;:::-;;-1:-1:-1;7512:10:0;;-1:-1:-1;7520:2:0;7512:10;;:::i;:::-;;;7456:78;;;7544:19;7576:6;7566:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7566:17:0;;7544:39;;7594:154;7601:10;;7594:154;;7628:11;7638:1;7628:11;;:::i;:::-;;-1:-1:-1;7697:10:0;7705:2;7697:5;:10;:::i;:::-;7684:24;;:2;:24;:::i;:::-;7671:39;;7654:6;7661;7654:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7654:56:0;;;;;;;;-1:-1:-1;7725:11:0;7734:2;7725:11;;:::i;:::-;;;7594:154;;42513:1775;42652:20;42675:13;-1:-1:-1;;;;;42703:16:0;;42699:48;;42728:19;;-1:-1:-1;;;42728:19:0;;;;;;;;;;;42699:48;42762:13;42758:44;;42784:18;;-1:-1:-1;;;42784:18:0;;;;;;;;;;;42758:44;-1:-1:-1;;;;;43153:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43212:49:0;;43153:44;;;;;;;;43212:49;;;-1:-1:-1;;;;;43153:44:0;;;;;;43212:49;;;;;;;;;;;;;;;;43278:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43328:66:0;;;;-1:-1:-1;;;43378:15:0;43328:66;;;;;;;;;;43278:25;43475:23;;;43519:4;:23;;;;-1:-1:-1;;;;;;43527:13:0;;13707:19;:23;;43527:15;43515:641;;;43563:314;43594:38;;43619:12;;-1:-1:-1;;;;;43594:38:0;;;43611:1;;43594:38;;43611:1;;43594:38;43660:69;43699:1;43703:2;43707:14;;;;;;43723:5;43660:30;:69::i;:::-;43655:174;;43765:40;;-1:-1:-1;;;43765:40:0;;;;;;;;;;;43655:174;43872:3;43856:12;:19;;43563:314;;43958:12;43941:13;;:29;43937:43;;43972:8;;;43937:43;43515:641;;;44021:120;44052:40;;44077:14;;;;;-1:-1:-1;;;;;44052:40:0;;;44069:1;;44052:40;;44069:1;;44052:40;44136:3;44120:12;:19;;44021:120;;43515:641;-1:-1:-1;44170:13:0;:28;44220:60;40551:369;-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;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:667::-;4623:6;4631;4639;4647;4700:3;4688:9;4679:7;4675:23;4671:33;4668:53;;;4717:1;4714;4707:12;4668:53;4740:29;4759:9;4740:29;:::i;:::-;4730:39;;4788:38;4822:2;4811:9;4807:18;4788:38;:::i;:::-;4778:48;;4873:2;4862:9;4858:18;4845:32;4835:42;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:74;5181:7;5176:2;5163:16;5158:2;5154;5150:11;5115:74;:::i;:::-;5105:84;;;4528:667;;;;;;;:::o;5200:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:26;5364:9;5348:26;:::i;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;6396:127::-;6457:10;6452:3;6448:20;6445:1;6438:31;6488:4;6485:1;6478:15;6512:4;6509:1;6502:15;6528:128;6568:3;6599:1;6595:6;6592:1;6589:13;6586:39;;;6605:18;;:::i;:::-;-1:-1:-1;6641:9:1;;6528:128::o;7368:125::-;7408:4;7436:1;7433;7430:8;7427:34;;;7441:18;;:::i;:::-;-1:-1:-1;7478:9:1;;7368:125::o;7498:168::-;7538:7;7604:1;7600;7596:6;7592:14;7589:1;7586:21;7581:1;7574:9;7567:17;7563:45;7560:71;;;7611:18;;:::i;:::-;-1:-1:-1;7651:9:1;;7498:168::o;7671:127::-;7732:10;7727:3;7723:20;7720:1;7713:31;7763:4;7760:1;7753:15;7787:4;7784:1;7777:15;7803:120;7843:1;7869;7859:35;;7874:18;;:::i;:::-;-1:-1:-1;7908:9:1;;7803:120::o;9730:443::-;9962:3;10000:6;9994:13;10016:53;10062:6;10057:3;10050:4;10042:6;10038:17;10016:53;:::i;:::-;-1:-1:-1;;;10091:16:1;;10116:22;;;-1:-1:-1;10165:1:1;10154:13;;9730:443;-1:-1:-1;9730:443:1:o;11148:489::-;-1:-1:-1;;;;;11417:15:1;;;11399:34;;11469:15;;11464:2;11449:18;;11442:43;11516:2;11501:18;;11494:34;;;11564:3;11559:2;11544:18;;11537:31;;;11342:4;;11585:46;;11611:19;;11603:6;11585:46;:::i;:::-;11577:54;11148:489;-1:-1:-1;;;;;;11148:489:1:o;11642:249::-;11711:6;11764:2;11752:9;11743:7;11739:23;11735:32;11732:52;;;11780:1;11777;11770:12;11732:52;11812:9;11806:16;11831:30;11855:5;11831:30;:::i;11896:470::-;12075:3;12113:6;12107:13;12129:53;12175:6;12170:3;12163:4;12155:6;12151:17;12129:53;:::i;:::-;12245:13;;12204:16;;;;12267:57;12245:13;12204:16;12301:4;12289:17;;12267:57;:::i;:::-;12340:20;;11896:470;-1:-1:-1;;;;11896:470:1:o;12371:135::-;12410:3;-1:-1:-1;;12431:17:1;;12428:43;;;12451:18;;:::i;:::-;-1:-1:-1;12498:1:1;12487:13;;12371:135::o;12511:112::-;12543:1;12569;12559:35;;12574:18;;:::i;:::-;-1:-1:-1;12608:9:1;;12511:112::o;12628:127::-;12689:10;12684:3;12680:20;12677:1;12670:31;12720:4;12717:1;12710:15;12744:4;12741:1;12734:15

Swarm Source

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