ETH Price: $3,205.57 (-2.99%)

Trippin' ETH Tribe (TRPN)
 

Overview

TokenID

345

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
TrippinEth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) if (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) if(!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()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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: TrippinEth.sol

pragma solidity ^0.8.4;

contract TrippinEth is Ownable, ERC721A {
    
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.008 ether;
    uint256 public freeSupply = 1000;
    uint256 public maxSupply = 10000;
    uint256 public maxFreeMint = 5;
    uint256 public maxMintAmount = 30;
    bool public paused = true;
    bool public revealed = false;


    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        _safeMint(msg.sender, 10);
    }

    function mint(address _to, uint256 _mintAmount) public payable {
        require(tx.origin == _msgSender(), "Only EOA");
        require(!paused, "Contract paused");
        require(_mintAmount > 0);
        require(totalSupply() + _mintAmount <= maxSupply, "No more mints.");

        require(_mintAmount <= maxMintAmount);
        require(msg.value >= cost * _mintAmount, "Not enough ETH.");

        _safeMint(_to, _mintAmount);
    }

    function mintFree(address _to, uint256 _mintAmount) public payable {
        require(tx.origin == _msgSender(), "Only EOA");
        require(!paused, "Contract paused");
        require(_mintAmount > 0 && _mintAmount <= maxFreeMint);
        require(totalSupply() + _mintAmount <= freeSupply, "No more free mints.");

        _safeMint(_to, _mintAmount);
    }

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

        string memory currentBaseURI = baseURI;

        if(!revealed) {
            return bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI))
                : "";
        }

        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), baseExtension))
            : "";
    }

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

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

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

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

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

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a91906200049f565b50661c6bf526340000600b556103e8600c55612710600d556005600e55601e600f556010805461ffff191660011790553480156200006557600080fd5b50604051620025cf380380620025cf833981016040819052620000889162000609565b82826200009533620000e9565b8151620000aa9060039060208501906200049f565b508051620000c09060049060208401906200049f565b5050600060015550620000d38162000139565b620000e033600a620001b1565b50505062000772565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ad9060099060208401906200049f565b5050565b620001ad828260405180602001604052806000815250620001d360201b60201c565b6001546001600160a01b038416620001fd57604051622e076360e81b815260040160405180910390fd5b826200021c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546001600160801b031981166001600160401b038083168b018116918217680100000000000000006001600160401b031990941690921783900481168b0181169092021790915585845260058352922080546001600160e01b0319168417600160a01b429094169390930292909217909155829182860191620002c5919062000398811b62000ff717901c565b1562000344575b60405182906001600160a01b03881690600090600080516020620025af833981519152908290a4600182019162000309906000908890876200039e565b62000327576040516368d2bf6b60e11b815260040160405180910390fd5b808210620002cc5782600154146200033e57600080fd5b62000379565b5b6040516001830192906001600160a01b03881690600090600080516020620025af833981519152908290a480821062000345575b506001556200039260008583866001600160e01b038516565b50505050565b3b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003d59033908990889088906004016200069a565b602060405180830381600087803b158015620003f057600080fd5b505af192505050801562000423575060408051601f3d908101601f191682019092526200042091810190620005d6565b60015b62000482573d80801562000454576040519150601f19603f3d011682016040523d82523d6000602084013e62000459565b606091505b5080516200047a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620004ad906200071f565b90600052602060002090601f016020900481019282620004d157600085556200051c565b82601f10620004ec57805160ff19168380011785556200051c565b828001600101855582156200051c579182015b828111156200051c578251825591602001919060010190620004ff565b506200052a9291506200052e565b5090565b5b808211156200052a57600081556001016200052f565b600082601f8301126200055757600080fd5b81516001600160401b03808211156200057457620005746200075c565b604051601f8301601f19908116603f011681019082821181831017156200059f576200059f6200075c565b81604052838152866020858801011115620005b957600080fd5b620005cc846020830160208901620006f0565b9695505050505050565b600060208284031215620005e957600080fd5b81516001600160e01b0319811681146200060257600080fd5b9392505050565b6000806000606084860312156200061f57600080fd5b83516001600160401b03808211156200063757600080fd5b620006458783880162000545565b945060208601519150808211156200065c57600080fd5b6200066a8783880162000545565b935060408601519150808211156200068157600080fd5b50620006908682870162000545565b9150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006d98160a0850160208701620006f0565b601f01601f19169190910160a00195945050505050565b60005b838110156200070d578181015183820152602001620006f3565b83811115620003925750506000910152565b600181811c908216806200073457607f821691505b602082108114156200075657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e2d80620007826000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063adf66d31116100a0578063d5abeb011161006f578063d5abeb0114610547578063da3ef23f1461055d578063e0a808531461057d578063e985e9c51461059d578063f2fde38b146105e657600080fd5b8063adf66d31146104df578063b88d4fde146104f2578063c668286214610512578063c87b56dd1461052757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461047657806395d89b4114610494578063a22cb465146104a9578063a591252d146104c957600080fd5b80636352211e1461040c5780636c0360eb1461042c57806370a0823114610441578063715018a61461046157600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e1461037357806344a0d68a1461039357806351830227146103b357806355f804b3146103d25780635c975abb146103f257600080fd5b806323b872dd1461032257806324a6ab0c146103425780633ccfd60b1461035857806340c10f191461036057600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806313faede6146102cf57806318160ddd146102f3578063239c70ae1461030c57600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a64565b610606565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611a49565b610658565b005b34801561026157600080fd5b5061026a61069e565b60405161022a9190611c49565b34801561028357600080fd5b50610297610292366004611ae7565b610730565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611a1f565b610774565b3480156102db57600080fd5b506102e5600b5481565b60405190815260200161022a565b3480156102ff57600080fd5b50600254600154036102e5565b34801561031857600080fd5b506102e5600f5481565b34801561032e57600080fd5b5061025361033d36600461193d565b6107fb565b34801561034e57600080fd5b506102e5600c5481565b610253610806565b61025361036e366004611a1f565b610856565b34801561037f57600080fd5b5061025361038e36600461193d565b6109a8565b34801561039f57600080fd5b506102536103ae366004611ae7565b6109c3565b3480156103bf57600080fd5b5060105461021e90610100900460ff1681565b3480156103de57600080fd5b506102536103ed366004611a9e565b6109f2565b3480156103fe57600080fd5b5060105461021e9060ff1681565b34801561041857600080fd5b50610297610427366004611ae7565b610a2f565b34801561043857600080fd5b5061026a610a41565b34801561044d57600080fd5b506102e561045c3660046118ef565b610acf565b34801561046d57600080fd5b50610253610b1e565b34801561048257600080fd5b506000546001600160a01b0316610297565b3480156104a057600080fd5b5061026a610b52565b3480156104b557600080fd5b506102536104c43660046119f5565b610b61565b3480156104d557600080fd5b506102e5600e5481565b6102536104ed366004611a1f565b610bf7565b3480156104fe57600080fd5b5061025361050d366004611979565b610cf0565b34801561051e57600080fd5b5061026a610d3a565b34801561053357600080fd5b5061026a610542366004611ae7565b610d47565b34801561055357600080fd5b506102e5600d5481565b34801561056957600080fd5b50610253610578366004611a9e565b610edb565b34801561058957600080fd5b50610253610598366004611a49565b610f18565b3480156105a957600080fd5b5061021e6105b836600461190a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105f257600080fd5b506102536106013660046118ef565b610f5c565b60006001600160e01b031982166380ac58cd60e01b148061063757506001600160e01b03198216635b5e139f60e01b145b8061065257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461068b5760405162461bcd60e51b815260040161068290611c5c565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600380546106ad90611d1f565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990611d1f565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b82610ffd565b610758576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061077f82610a2f565b9050806001600160a01b0316836001600160a01b031614156107b45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107eb576107ce81336105b8565b6107eb576040516367d9dca160e11b815260040160405180910390fd5b6107f6838383611029565b505050565b6107f6838383611085565b6000546001600160a01b031633146108305760405162461bcd60e51b815260040161068290611c5c565b60405133904780156108fc02916000818181858888f1935050505061085457600080fd5b565b3233146108905760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b6044820152606401610682565b60105460ff16156108d55760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610682565b600081116108e257600080fd5b600d54816108f36002546001540390565b6108fd9190611c91565b111561093c5760405162461bcd60e51b815260206004820152600e60248201526d27379036b7b9329036b4b73a399760911b6044820152606401610682565b600f5481111561094b57600080fd5b80600b546109599190611cbd565b34101561099a5760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b6044820152606401610682565b6109a48282611274565b5050565b6107f683838360405180602001604052806000815250610cf0565b6000546001600160a01b031633146109ed5760405162461bcd60e51b815260040161068290611c5c565b600b55565b6000546001600160a01b03163314610a1c5760405162461bcd60e51b815260040161068290611c5c565b80516109a49060099060208401906117b4565b6000610a3a8261128e565b5192915050565b60098054610a4e90611d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7a90611d1f565b8015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b820191906000526020600020905b815481529060010190602001808311610aaa57829003601f168201915b505050505081565b60006001600160a01b038216610af8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b485760405162461bcd60e51b815260040161068290611c5c565b61085460006113aa565b6060600480546106ad90611d1f565b6001600160a01b038216331415610b8b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610c315760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b6044820152606401610682565b60105460ff1615610c765760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610682565b600081118015610c885750600e548111155b610c9157600080fd5b600c5481610ca26002546001540390565b610cac9190611c91565b111561099a5760405162461bcd60e51b815260206004820152601360248201527227379036b7b93290333932b29036b4b73a399760691b6044820152606401610682565b610cfb848484611085565b6001600160a01b0383163b15610d3457610d17848484846113fa565b610d34576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610a4e90611d1f565b6060610d5282610ffd565b610db65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610682565b600060098054610dc590611d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610df190611d1f565b8015610e3e5780601f10610e1357610100808354040283529160200191610e3e565b820191906000526020600020905b815481529060010190602001808311610e2157829003601f168201915b50505050509050601060019054906101000a900460ff16610e9f576000815111610e775760405180602001604052806000815250610e98565b80604051602001610e889190611b2c565b6040516020818303038152906040525b9392505050565b6000815111610ebd5760405180602001604052806000815250610e98565b80610ec7846114f2565b600a604051602001610e8893929190611b48565b6000546001600160a01b03163314610f055760405162461bcd60e51b815260040161068290611c5c565b80516109a490600a9060208401906117b4565b6000546001600160a01b03163314610f425760405162461bcd60e51b815260040161068290611c5c565b601080549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314610f865760405162461bcd60e51b815260040161068290611c5c565b6001600160a01b038116610feb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610682565b610ff4816113aa565b50565b3b151590565b600060015482108015610652575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110908261128e565b9050836001600160a01b031681600001516001600160a01b0316146110c75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110e557506110e585336105b8565b806111005750336110f584610730565b6001600160a01b0316145b90508061112057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661114757604051633a954ecd60e21b815260040160405180910390fd5b61115360008487611029565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611229576001548214611229578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109a48282604051806020016040528060008152506115f0565b60408051606081018252600080825260208201819052918101919091528160015481101561139157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061138f5780516001600160a01b031615611325579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561138a579392505050565b611325565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061142f903390899088908890600401611c0c565b602060405180830381600087803b15801561144957600080fd5b505af1925050508015611479575060408051601f3d908101601f1916820190925261147691810190611a81565b60015b6114d4573d8080156114a7576040519150601f19603f3d011682016040523d82523d6000602084013e6114ac565b606091505b5080516114cc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611540578061152a81611d5a565b91506115399050600a83611ca9565b915061151a565b60008167ffffffffffffffff81111561155b5761155b611dcb565b6040519080825280601f01601f191660200182016040528015611585576020820181803683370190505b5090505b84156114ea5761159a600183611cdc565b91506115a7600a86611d75565b6115b2906030611c91565b60f81b8183815181106115c7576115c7611db5565b60200101906001600160f81b031916908160001a9053506115e9600a86611ca9565b9450611589565b6001546001600160a01b03841661161957604051622e076360e81b815260040160405180910390fd5b826116375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611760575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172960008784806001019550876113fa565b611746576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116de57826001541461175b57600080fd5b6117a5565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611761575b50600155610d34600085838684565b8280546117c090611d1f565b90600052602060002090601f0160209004810192826117e25760008555611828565b82601f106117fb57805160ff1916838001178555611828565b82800160010185558215611828579182015b8281111561182857825182559160200191906001019061180d565b50611834929150611838565b5090565b5b808211156118345760008155600101611839565b600067ffffffffffffffff8084111561186857611868611dcb565b604051601f8501601f19908116603f0116810190828211818310171561189057611890611dcb565b816040528093508581528686860111156118a957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118da57600080fd5b919050565b803580151581146118da57600080fd5b60006020828403121561190157600080fd5b610e98826118c3565b6000806040838503121561191d57600080fd5b611926836118c3565b9150611934602084016118c3565b90509250929050565b60008060006060848603121561195257600080fd5b61195b846118c3565b9250611969602085016118c3565b9150604084013590509250925092565b6000806000806080858703121561198f57600080fd5b611998856118c3565b93506119a6602086016118c3565b925060408501359150606085013567ffffffffffffffff8111156119c957600080fd5b8501601f810187136119da57600080fd5b6119e98782356020840161184d565b91505092959194509250565b60008060408385031215611a0857600080fd5b611a11836118c3565b9150611934602084016118df565b60008060408385031215611a3257600080fd5b611a3b836118c3565b946020939093013593505050565b600060208284031215611a5b57600080fd5b610e98826118df565b600060208284031215611a7657600080fd5b8135610e9881611de1565b600060208284031215611a9357600080fd5b8151610e9881611de1565b600060208284031215611ab057600080fd5b813567ffffffffffffffff811115611ac757600080fd5b8201601f81018413611ad857600080fd5b6114ea8482356020840161184d565b600060208284031215611af957600080fd5b5035919050565b60008151808452611b18816020860160208601611cf3565b601f01601f19169290920160200192915050565b60008251611b3e818460208701611cf3565b9190910192915050565b600084516020611b5b8285838a01611cf3565b855191840191611b6e8184848a01611cf3565b8554920191600090600181811c9080831680611b8b57607f831692505b858310811415611ba957634e487b7160e01b85526022600452602485fd5b808015611bbd5760018114611bce57611bfb565b60ff19851688528388019550611bfb565b60008b81526020902060005b85811015611bf35781548a820152908401908801611bda565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3f90830184611b00565b9695505050505050565b602081526000610e986020830184611b00565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ca457611ca4611d89565b500190565b600082611cb857611cb8611d9f565b500490565b6000816000190483118215151615611cd757611cd7611d89565b500290565b600082821015611cee57611cee611d89565b500390565b60005b83811015611d0e578181015183820152602001611cf6565b83811115610d345750506000910152565b600181811c90821680611d3357607f821691505b60208210811415611d5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d6e57611d6e611d89565b5060010190565b600082611d8457611d84611d9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff457600080fdfea264697066735822122092be89810f41dc835e0570bb87593119f0992bb5e5124e0619defe398744dfcd64736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000125472697070696e2720455448205472696265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045452504e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5141796b337167553179626170384b4b384c63654e53774d5236593167437341544545575770724347756f770000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063adf66d31116100a0578063d5abeb011161006f578063d5abeb0114610547578063da3ef23f1461055d578063e0a808531461057d578063e985e9c51461059d578063f2fde38b146105e657600080fd5b8063adf66d31146104df578063b88d4fde146104f2578063c668286214610512578063c87b56dd1461052757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461047657806395d89b4114610494578063a22cb465146104a9578063a591252d146104c957600080fd5b80636352211e1461040c5780636c0360eb1461042c57806370a0823114610441578063715018a61461046157600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e1461037357806344a0d68a1461039357806351830227146103b357806355f804b3146103d25780635c975abb146103f257600080fd5b806323b872dd1461032257806324a6ab0c146103425780633ccfd60b1461035857806340c10f191461036057600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806313faede6146102cf57806318160ddd146102f3578063239c70ae1461030c57600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a64565b610606565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611a49565b610658565b005b34801561026157600080fd5b5061026a61069e565b60405161022a9190611c49565b34801561028357600080fd5b50610297610292366004611ae7565b610730565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611a1f565b610774565b3480156102db57600080fd5b506102e5600b5481565b60405190815260200161022a565b3480156102ff57600080fd5b50600254600154036102e5565b34801561031857600080fd5b506102e5600f5481565b34801561032e57600080fd5b5061025361033d36600461193d565b6107fb565b34801561034e57600080fd5b506102e5600c5481565b610253610806565b61025361036e366004611a1f565b610856565b34801561037f57600080fd5b5061025361038e36600461193d565b6109a8565b34801561039f57600080fd5b506102536103ae366004611ae7565b6109c3565b3480156103bf57600080fd5b5060105461021e90610100900460ff1681565b3480156103de57600080fd5b506102536103ed366004611a9e565b6109f2565b3480156103fe57600080fd5b5060105461021e9060ff1681565b34801561041857600080fd5b50610297610427366004611ae7565b610a2f565b34801561043857600080fd5b5061026a610a41565b34801561044d57600080fd5b506102e561045c3660046118ef565b610acf565b34801561046d57600080fd5b50610253610b1e565b34801561048257600080fd5b506000546001600160a01b0316610297565b3480156104a057600080fd5b5061026a610b52565b3480156104b557600080fd5b506102536104c43660046119f5565b610b61565b3480156104d557600080fd5b506102e5600e5481565b6102536104ed366004611a1f565b610bf7565b3480156104fe57600080fd5b5061025361050d366004611979565b610cf0565b34801561051e57600080fd5b5061026a610d3a565b34801561053357600080fd5b5061026a610542366004611ae7565b610d47565b34801561055357600080fd5b506102e5600d5481565b34801561056957600080fd5b50610253610578366004611a9e565b610edb565b34801561058957600080fd5b50610253610598366004611a49565b610f18565b3480156105a957600080fd5b5061021e6105b836600461190a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105f257600080fd5b506102536106013660046118ef565b610f5c565b60006001600160e01b031982166380ac58cd60e01b148061063757506001600160e01b03198216635b5e139f60e01b145b8061065257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461068b5760405162461bcd60e51b815260040161068290611c5c565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600380546106ad90611d1f565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990611d1f565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b82610ffd565b610758576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061077f82610a2f565b9050806001600160a01b0316836001600160a01b031614156107b45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107eb576107ce81336105b8565b6107eb576040516367d9dca160e11b815260040160405180910390fd5b6107f6838383611029565b505050565b6107f6838383611085565b6000546001600160a01b031633146108305760405162461bcd60e51b815260040161068290611c5c565b60405133904780156108fc02916000818181858888f1935050505061085457600080fd5b565b3233146108905760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b6044820152606401610682565b60105460ff16156108d55760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610682565b600081116108e257600080fd5b600d54816108f36002546001540390565b6108fd9190611c91565b111561093c5760405162461bcd60e51b815260206004820152600e60248201526d27379036b7b9329036b4b73a399760911b6044820152606401610682565b600f5481111561094b57600080fd5b80600b546109599190611cbd565b34101561099a5760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b6044820152606401610682565b6109a48282611274565b5050565b6107f683838360405180602001604052806000815250610cf0565b6000546001600160a01b031633146109ed5760405162461bcd60e51b815260040161068290611c5c565b600b55565b6000546001600160a01b03163314610a1c5760405162461bcd60e51b815260040161068290611c5c565b80516109a49060099060208401906117b4565b6000610a3a8261128e565b5192915050565b60098054610a4e90611d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7a90611d1f565b8015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b820191906000526020600020905b815481529060010190602001808311610aaa57829003601f168201915b505050505081565b60006001600160a01b038216610af8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b485760405162461bcd60e51b815260040161068290611c5c565b61085460006113aa565b6060600480546106ad90611d1f565b6001600160a01b038216331415610b8b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314610c315760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b6044820152606401610682565b60105460ff1615610c765760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610682565b600081118015610c885750600e548111155b610c9157600080fd5b600c5481610ca26002546001540390565b610cac9190611c91565b111561099a5760405162461bcd60e51b815260206004820152601360248201527227379036b7b93290333932b29036b4b73a399760691b6044820152606401610682565b610cfb848484611085565b6001600160a01b0383163b15610d3457610d17848484846113fa565b610d34576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610a4e90611d1f565b6060610d5282610ffd565b610db65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610682565b600060098054610dc590611d1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610df190611d1f565b8015610e3e5780601f10610e1357610100808354040283529160200191610e3e565b820191906000526020600020905b815481529060010190602001808311610e2157829003601f168201915b50505050509050601060019054906101000a900460ff16610e9f576000815111610e775760405180602001604052806000815250610e98565b80604051602001610e889190611b2c565b6040516020818303038152906040525b9392505050565b6000815111610ebd5760405180602001604052806000815250610e98565b80610ec7846114f2565b600a604051602001610e8893929190611b48565b6000546001600160a01b03163314610f055760405162461bcd60e51b815260040161068290611c5c565b80516109a490600a9060208401906117b4565b6000546001600160a01b03163314610f425760405162461bcd60e51b815260040161068290611c5c565b601080549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314610f865760405162461bcd60e51b815260040161068290611c5c565b6001600160a01b038116610feb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610682565b610ff4816113aa565b50565b3b151590565b600060015482108015610652575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110908261128e565b9050836001600160a01b031681600001516001600160a01b0316146110c75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110e557506110e585336105b8565b806111005750336110f584610730565b6001600160a01b0316145b90508061112057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661114757604051633a954ecd60e21b815260040160405180910390fd5b61115360008487611029565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611229576001548214611229578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109a48282604051806020016040528060008152506115f0565b60408051606081018252600080825260208201819052918101919091528160015481101561139157600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061138f5780516001600160a01b031615611325579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561138a579392505050565b611325565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061142f903390899088908890600401611c0c565b602060405180830381600087803b15801561144957600080fd5b505af1925050508015611479575060408051601f3d908101601f1916820190925261147691810190611a81565b60015b6114d4573d8080156114a7576040519150601f19603f3d011682016040523d82523d6000602084013e6114ac565b606091505b5080516114cc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611540578061152a81611d5a565b91506115399050600a83611ca9565b915061151a565b60008167ffffffffffffffff81111561155b5761155b611dcb565b6040519080825280601f01601f191660200182016040528015611585576020820181803683370190505b5090505b84156114ea5761159a600183611cdc565b91506115a7600a86611d75565b6115b2906030611c91565b60f81b8183815181106115c7576115c7611db5565b60200101906001600160f81b031916908160001a9053506115e9600a86611ca9565b9450611589565b6001546001600160a01b03841661161957604051622e076360e81b815260040160405180910390fd5b826116375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611760575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172960008784806001019550876113fa565b611746576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116de57826001541461175b57600080fd5b6117a5565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611761575b50600155610d34600085838684565b8280546117c090611d1f565b90600052602060002090601f0160209004810192826117e25760008555611828565b82601f106117fb57805160ff1916838001178555611828565b82800160010185558215611828579182015b8281111561182857825182559160200191906001019061180d565b50611834929150611838565b5090565b5b808211156118345760008155600101611839565b600067ffffffffffffffff8084111561186857611868611dcb565b604051601f8501601f19908116603f0116810190828211818310171561189057611890611dcb565b816040528093508581528686860111156118a957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118da57600080fd5b919050565b803580151581146118da57600080fd5b60006020828403121561190157600080fd5b610e98826118c3565b6000806040838503121561191d57600080fd5b611926836118c3565b9150611934602084016118c3565b90509250929050565b60008060006060848603121561195257600080fd5b61195b846118c3565b9250611969602085016118c3565b9150604084013590509250925092565b6000806000806080858703121561198f57600080fd5b611998856118c3565b93506119a6602086016118c3565b925060408501359150606085013567ffffffffffffffff8111156119c957600080fd5b8501601f810187136119da57600080fd5b6119e98782356020840161184d565b91505092959194509250565b60008060408385031215611a0857600080fd5b611a11836118c3565b9150611934602084016118df565b60008060408385031215611a3257600080fd5b611a3b836118c3565b946020939093013593505050565b600060208284031215611a5b57600080fd5b610e98826118df565b600060208284031215611a7657600080fd5b8135610e9881611de1565b600060208284031215611a9357600080fd5b8151610e9881611de1565b600060208284031215611ab057600080fd5b813567ffffffffffffffff811115611ac757600080fd5b8201601f81018413611ad857600080fd5b6114ea8482356020840161184d565b600060208284031215611af957600080fd5b5035919050565b60008151808452611b18816020860160208601611cf3565b601f01601f19169290920160200192915050565b60008251611b3e818460208701611cf3565b9190910192915050565b600084516020611b5b8285838a01611cf3565b855191840191611b6e8184848a01611cf3565b8554920191600090600181811c9080831680611b8b57607f831692505b858310811415611ba957634e487b7160e01b85526022600452602485fd5b808015611bbd5760018114611bce57611bfb565b60ff19851688528388019550611bfb565b60008b81526020902060005b85811015611bf35781548a820152908401908801611bda565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3f90830184611b00565b9695505050505050565b602081526000610e986020830184611b00565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ca457611ca4611d89565b500190565b600082611cb857611cb8611d9f565b500490565b6000816000190483118215151615611cd757611cd7611d89565b500290565b600082821015611cee57611cee611d89565b500390565b60005b83811015611d0e578181015183820152602001611cf6565b83811115610d345750506000910152565b600181811c90821680611d3357607f821691505b60208210811415611d5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d6e57611d6e611d89565b5060010190565b600082611d8457611d84611d9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff457600080fdfea264697066735822122092be89810f41dc835e0570bb87593119f0992bb5e5124e0619defe398744dfcd64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000125472697070696e2720455448205472696265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045452504e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5141796b337167553179626170384b4b384c63654e53774d5236593167437341544545575770724347756f770000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Trippin' ETH Tribe
Arg [1] : _symbol (string): TRPN
Arg [2] : _initBaseURI (string): ipfs://QmQAyk3qgU1ybap8KK8LceNSwMR6Y1gCsATEEWWprCGuow

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 5472697070696e27204554482054726962650000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5452504e00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5141796b337167553179626170384b4b384c63654e5377
Arg [9] : 4d5236593167437341544545575770724347756f770000000000000000000000


Deployed Bytecode Sourcemap

46264:2766:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27396:305;;;;;;;;;;-1:-1:-1;27396:305:0;;;;;:::i;:::-;;:::i;:::-;;;7241:14:1;;7234:22;7216:41;;7204:2;7189:18;27396:305:0;;;;;;;;48725:79;;;;;;;;;;-1:-1:-1;48725:79:0;;;;;:::i;:::-;;:::i;:::-;;30511:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32015:204::-;;;;;;;;;;-1:-1:-1;32015:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6539:32:1;;;6521:51;;6509:2;6494:18;32015:204:0;6375:203:1;31577:372:0;;;;;;;;;;-1:-1:-1;31577:372:0;;;;;:::i;:::-;;:::i;46389:33::-;;;;;;;;;;;;;;;;;;;10537:25:1;;;10525:2;10510:18;46389:33:0;10391:177:1;26636:312:0;;;;;;;;;;-1:-1:-1;26899:12:0;;26883:13;;:28;26636:312;;46544:33;;;;;;;;;;;;;;;;32880:170;;;;;;;;;;-1:-1:-1;32880:170:0;;;;;:::i;:::-;;:::i;46429:32::-;;;;;;;;;;;;;;;;48907:120;;;:::i;46884:447::-;;;;;;:::i;:::-;;:::i;33121:185::-;;;;;;;;;;-1:-1:-1;33121:185:0;;;;;:::i;:::-;;:::i;48381:88::-;;;;;;;;;;-1:-1:-1;48381:88:0;;;;;:::i;:::-;;:::i;46616:28::-;;;;;;;;;;-1:-1:-1;46616:28:0;;;;;;;;;;;48477:104;;;;;;;;;;-1:-1:-1;48477:104:0;;;;;:::i;:::-;;:::i;46584:25::-;;;;;;;;;;-1:-1:-1;46584:25:0;;;;;;;;30319:125;;;;;;;;;;-1:-1:-1;30319:125:0;;;;;:::i;:::-;;:::i;46317:21::-;;;;;;;;;;;;;:::i;27765:206::-;;;;;;;;;;-1:-1:-1;27765:206:0;;;;;:::i;:::-;;:::i;4558:94::-;;;;;;;;;;;;;:::i;3907:87::-;;;;;;;;;;-1:-1:-1;3953:7:0;3980:6;-1:-1:-1;;;;;3980:6:0;3907:87;;30680:104;;;;;;;;;;;;;:::i;32291:287::-;;;;;;;;;;-1:-1:-1;32291:287:0;;;;;:::i;:::-;;:::i;46507:30::-;;;;;;;;;;;;;;;;47339:367;;;;;;:::i;:::-;;:::i;33377:370::-;;;;;;;;;;-1:-1:-1;33377:370:0;;;;;:::i;:::-;;:::i;46345:37::-;;;;;;;;;;;;;:::i;47714:641::-;;;;;;;;;;-1:-1:-1;47714:641:0;;;;;:::i;:::-;;:::i;46468:32::-;;;;;;;;;;;;;;;;48589:128;;;;;;;;;;-1:-1:-1;48589:128:0;;;;;:::i;:::-;;:::i;48812:87::-;;;;;;;;;;-1:-1:-1;48812:87:0;;;;;:::i;:::-;;:::i;32649:164::-;;;;;;;;;;-1:-1:-1;32649:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32770:25:0;;;32746:4;32770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32649:164;4807:192;;;;;;;;;;-1:-1:-1;4807:192:0;;;;;:::i;:::-;;:::i;27396:305::-;27498:4;-1:-1:-1;;;;;;27535:40:0;;-1:-1:-1;;;27535:40:0;;:105;;-1:-1:-1;;;;;;;27592:48:0;;-1:-1:-1;;;27592:48:0;27535:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;27657:36;27515:178;27396:305;-1:-1:-1;;27396:305:0:o;48725:79::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;;;;;;;;;48781:6:::1;:15:::0;;-1:-1:-1;;48781:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48725:79::o;30511:100::-;30565:13;30598:5;30591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30511:100;:::o;32015:204::-;32083:7;32108:16;32116:7;32108;:16::i;:::-;32103:64;;32133:34;;-1:-1:-1;;;32133:34:0;;;;;;;;;;;32103:64;-1:-1:-1;32187:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32187:24:0;;32015:204::o;31577:372::-;31650:13;31666:24;31682:7;31666:15;:24::i;:::-;31650:40;;31711:5;-1:-1:-1;;;;;31705:11:0;:2;-1:-1:-1;;;;;31705:11:0;;31701:48;;;31725:24;;-1:-1:-1;;;31725:24:0;;;;;;;;;;;31701:48;2775:10;-1:-1:-1;;;;;31766:21:0;;;31762:139;;31793:37;31810:5;2775:10;32649:164;:::i;31793:37::-;31789:112;;31854:35;;-1:-1:-1;;;31854:35:0;;;;;;;;;;;31789:112;31913:28;31922:2;31926:7;31935:5;31913:8;:28::i;:::-;31639:310;31577:372;;:::o;32880:170::-;33014:28;33024:4;33030:2;33034:7;33014:9;:28::i;48907:120::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48971:47:::1;::::0;48979:10:::1;::::0;48996:21:::1;48971:47:::0;::::1;;;::::0;::::1;::::0;;;48996:21;48979:10;48971:47;::::1;;;;;;48963:56;;;::::0;::::1;;48907:120::o:0;46884:447::-;46966:9;2775:10;46966:25;46958:46;;;;-1:-1:-1;;;46958:46:0;;8788:2:1;46958:46:0;;;8770:21:1;8827:1;8807:18;;;8800:29;-1:-1:-1;;;8845:18:1;;;8838:38;8893:18;;46958:46:0;8586:331:1;46958:46:0;47024:6;;;;47023:7;47015:35;;;;-1:-1:-1;;;47015:35:0;;8444:2:1;47015:35:0;;;8426:21:1;8483:2;8463:18;;;8456:30;-1:-1:-1;;;8502:18:1;;;8495:45;8557:18;;47015:35:0;8242:339:1;47015:35:0;47083:1;47069:11;:15;47061:24;;;;;;47135:9;;47120:11;47104:13;26899:12;;26883:13;;:28;;26636:312;47104:13;:27;;;;:::i;:::-;:40;;47096:67;;;;-1:-1:-1;;;47096:67:0;;8101:2:1;47096:67:0;;;8083:21:1;8140:2;8120:18;;;8113:30;-1:-1:-1;;;8159:18:1;;;8152:44;8213:18;;47096:67:0;7899:338:1;47096:67:0;47199:13;;47184:11;:28;;47176:37;;;;;;47252:11;47245:4;;:18;;;;:::i;:::-;47232:9;:31;;47224:59;;;;-1:-1:-1;;;47224:59:0;;9901:2:1;47224:59:0;;;9883:21:1;9940:2;9920:18;;;9913:30;-1:-1:-1;;;9959:18:1;;;9952:45;10014:18;;47224:59:0;9699:339:1;47224:59:0;47296:27;47306:3;47311:11;47296:9;:27::i;:::-;46884:447;;:::o;33121:185::-;33259:39;33276:4;33282:2;33286:7;33259:39;;;;;;;;;;;;:16;:39::i;48381:88::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48446:4:::1;:15:::0;48381:88::o;48477:104::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48552:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;30319:125::-:0;30383:7;30410:21;30423:7;30410:12;:21::i;:::-;:26;;30319:125;-1:-1:-1;;30319:125:0:o;46317:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27765:206::-;27829:7;-1:-1:-1;;;;;27853:19:0;;27849:60;;27881:28;;-1:-1:-1;;;27881:28:0;;;;;;;;;;;27849:60;-1:-1:-1;;;;;;27935:19:0;;;;;:12;:19;;;;;:27;;;;27765:206::o;4558:94::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;4623:21:::1;4641:1;4623:9;:21::i;30680:104::-:0;30736:13;30769:7;30762:14;;;;;:::i;32291:287::-;-1:-1:-1;;;;;32390:24:0;;2775:10;32390:24;32386:54;;;32423:17;;-1:-1:-1;;;32423:17:0;;;;;;;;;;;32386:54;2775:10;32453:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32453:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32453:53:0;;;;;;;;;;32522:48;;7216:41:1;;;32453:42:0;;2775:10;32522:48;;7189:18:1;32522:48:0;;;;;;;32291:287;;:::o;47339:367::-;47425:9;2775:10;47425:25;47417:46;;;;-1:-1:-1;;;47417:46:0;;8788:2:1;47417:46:0;;;8770:21:1;8827:1;8807:18;;;8800:29;-1:-1:-1;;;8845:18:1;;;8838:38;8893:18;;47417:46:0;8586:331:1;47417:46:0;47483:6;;;;47482:7;47474:35;;;;-1:-1:-1;;;47474:35:0;;8444:2:1;47474:35:0;;;8426:21:1;8483:2;8463:18;;;8456:30;-1:-1:-1;;;8502:18:1;;;8495:45;8557:18;;47474:35:0;8242:339:1;47474:35:0;47542:1;47528:11;:15;:45;;;;;47562:11;;47547;:26;;47528:45;47520:54;;;;;;47624:10;;47609:11;47593:13;26899:12;;26883:13;;:28;;26636:312;47593:13;:27;;;;:::i;:::-;:41;;47585:73;;;;-1:-1:-1;;;47585:73:0;;10245:2:1;47585:73:0;;;10227:21:1;10284:2;10264:18;;;10257:30;-1:-1:-1;;;10303:18:1;;;10296:49;10362:18;;47585:73:0;10043:343:1;33377:370:0;33544:28;33554:4;33560:2;33564:7;33544:9;:28::i;:::-;-1:-1:-1;;;;;33587:13:0;;6276:20;6324:8;33583:157;;33608:56;33639:4;33645:2;33649:7;33658:5;33608:30;:56::i;:::-;33604:136;;33688:40;;-1:-1:-1;;;33688:40:0;;;;;;;;;;;33604:136;33377:370;;;;:::o;46345:37::-;;;;;;;:::i;47714:641::-;47816:13;47865:17;47873:8;47865:7;:17::i;:::-;47847:106;;;;-1:-1:-1;;;47847:106:0;;9485:2:1;47847:106:0;;;9467:21:1;9524:2;9504:18;;;9497:30;9563:34;9543:18;;;9536:62;-1:-1:-1;;;9614:18:1;;;9607:45;9669:19;;47847:106:0;9283:411:1;47847:106:0;47966:28;47997:7;47966:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48021:8;;;;;;;;;;;48017:162;;48084:1;48059:14;48053:28;:32;:114;;;;;;;;;;;;;;;;;48129:14;48112:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;48053:114;48046:121;47714:641;-1:-1:-1;;;47714:641:0:o;48017:162::-;48229:1;48204:14;48198:28;:32;:149;;;;;;;;;;;;;;;;;48270:14;48286:26;48303:8;48286:16;:26::i;:::-;48314:13;48253:75;;;;;;;;;;:::i;48589:128::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48676:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48812:87::-:0;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;48874:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;48874:17:0;;::::1;::::0;;;::::1;::::0;;48812:87::o;4807:192::-;3953:7;3980:6;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;7694:2:1;4888:73:0::1;::::0;::::1;7676:21:1::0;7733:2;7713:18;;;7706:30;7772:34;7752:18;;;7745:62;-1:-1:-1;;;7823:18:1;;;7816:36;7869:19;;4888:73:0::1;7492:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;5953:387::-;6276:20;6324:8;;;5953:387::o;34002:174::-;34059:4;34123:13;;34113:7;:23;34083:85;;;;-1:-1:-1;;34141:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34141:27:0;;;;34140:28;;34002:174::o;43224:196::-;43339:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43339:29:0;-1:-1:-1;;;;;43339:29:0;;;;;;;;;43384:28;;43339:24;;43384:28;;;;;;;43224:196;;;:::o;38172:2130::-;38287:35;38325:21;38338:7;38325:12;:21::i;:::-;38287:59;;38385:4;-1:-1:-1;;;;;38363:26:0;:13;:18;;;-1:-1:-1;;;;;38363:26:0;;38359:67;;38398:28;;-1:-1:-1;;;38398:28:0;;;;;;;;;;;38359:67;38439:22;2775:10;-1:-1:-1;;;;;38465:20:0;;;;:73;;-1:-1:-1;38502:36:0;38519:4;2775:10;32649:164;:::i;38502:36::-;38465:126;;;-1:-1:-1;2775:10:0;38555:20;38567:7;38555:11;:20::i;:::-;-1:-1:-1;;;;;38555:36:0;;38465:126;38439:153;;38610:17;38605:66;;38636:35;;-1:-1:-1;;;38636:35:0;;;;;;;;;;;38605:66;-1:-1:-1;;;;;38686:16:0;;38682:52;;38711:23;;-1:-1:-1;;;38711:23:0;;;;;;;;;;;38682:52;38855:35;38872:1;38876:7;38885:4;38855:8;:35::i;:::-;-1:-1:-1;;;;;39186:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39186:31:0;;;;;;;-1:-1:-1;;39186:31:0;;;;;;;39232:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39232:29:0;;;;;;;;;;;39312:20;;;:11;:20;;;;;;39347:18;;-1:-1:-1;;;;;;39380:49:0;;;;-1:-1:-1;;;39413:15:0;39380:49;;;;;;;;;;39703:11;;39763:24;;;;;39806:13;;39312:20;;39763:24;;39806:13;39802:384;;40016:13;;40001:11;:28;39997:174;;40054:20;;40123:28;;;;40097:54;;-1:-1:-1;;;40097:54:0;-1:-1:-1;;;;;;40097:54:0;;;-1:-1:-1;;;;;40054:20:0;;40097:54;;;;39997:174;39161:1036;;;40233:7;40229:2;-1:-1:-1;;;;;40214:27:0;40223:4;-1:-1:-1;;;;;40214:27:0;;;;;;;;;;;38276:2026;;38172:2130;;;:::o;34260:104::-;34329:27;34339:2;34343:8;34329:27;;;;;;;;;;;;:9;:27::i;29146:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29257:7:0;29342:13;;29335:4;:20;29331:859;;;29376:31;29410:17;;;:11;:17;;;;;;;;;29376:51;;;;;;;;;-1:-1:-1;;;;;29376:51:0;;;;-1:-1:-1;;;29376:51:0;;;;;;;;;;;-1:-1:-1;;;29376:51:0;;;;;;;;;;;;;;29446:729;;29496:14;;-1:-1:-1;;;;;29496:28:0;;29492:101;;29560:9;29146:1111;-1:-1:-1;;;29146:1111:0:o;29492:101::-;-1:-1:-1;;;29935:6:0;29980:17;;;;:11;:17;;;;;;;;;29968:29;;;;;;;;;-1:-1:-1;;;;;29968:29:0;;;;;-1:-1:-1;;;29968:29:0;;;;;;;;;;;-1:-1:-1;;;29968:29:0;;;;;;;;;;;;;30028:28;30024:109;;30096:9;29146:1111;-1:-1:-1;;;29146:1111:0:o;30024:109::-;29895:261;;;29357:833;29331:859;30218:31;;-1:-1:-1;;;30218:31:0;;;;;;;;;;;5007:173;5063:16;5082:6;;-1:-1:-1;;;;;5099:17:0;;;-1:-1:-1;;;;;;5099:17:0;;;;;;5132:40;;5082:6;;;;;;;5132:40;;5063:16;5132:40;5052:128;5007:173;:::o;43912:667::-;44096:72;;-1:-1:-1;;;44096:72:0;;44075:4;;-1:-1:-1;;;;;44096:36:0;;;;;:72;;2775:10;;44147:4;;44153:7;;44162:5;;44096:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44096:72:0;;;;;;;;-1:-1:-1;;44096:72:0;;;;;;;;;;;;:::i;:::-;;;44092:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44330:13:0;;44326:235;;44376:40;;-1:-1:-1;;;44376:40:0;;;;;;;;;;;44326:235;44519:6;44513:13;44504:6;44500:2;44496:15;44489:38;44092:480;-1:-1:-1;;;;;;44215:55:0;-1:-1:-1;;;44215:55:0;;-1:-1:-1;44092:480:0;43912:667;;;;;;:::o;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;34737:1749;34883:13;;-1:-1:-1;;;;;34911:16:0;;34907:48;;34936:19;;-1:-1:-1;;;34936:19:0;;;;;;;;;;;34907:48;34970:13;34966:44;;34992:18;;-1:-1:-1;;;34992:18:0;;;;;;;;;;;34966:44;-1:-1:-1;;;;;35361:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35420:49:0;;35361:44;;;;;;;;35420:49;;;;-1:-1:-1;;35361:44:0;;;;;;35420:49;;;;;;;;;;;;;;;;35486:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35536:66:0;;;-1:-1:-1;;;35586:15:0;35536:66;;;;;;;;;;;;;35486:25;;35683:23;;;;6276:20;6324:8;35723:631;;35763:313;35794:38;;35819:12;;-1:-1:-1;;;;;35794:38:0;;;35811:1;;35794:38;;35811:1;;35794:38;35860:69;35899:1;35903:2;35907:14;;;;;;35923:5;35860:30;:69::i;:::-;35855:174;;35965:40;;-1:-1:-1;;;35965:40:0;;;;;;;;;;;35855:174;36071:3;36056:12;:18;35763:313;;36157:12;36140:13;;:29;36136:43;;36171:8;;;36136:43;35723:631;;;36220:119;36251:40;;36276:14;;;;;-1:-1:-1;;;;;36251:40:0;;;36268:1;;36251:40;;36268:1;;36251:40;36334:3;36319:12;:18;36220:119;;35723:631;-1:-1:-1;36368:13:0;:28;36418:60;36447:1;36451:2;36455:12;36469:8;36418:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:276::-;4693:3;4731:6;4725:13;4747:53;4793:6;4788:3;4781:4;4773:6;4769:17;4747:53;:::i;:::-;4816:16;;;;;4562:276;-1:-1:-1;;4562:276:1:o;4843:1527::-;5067:3;5105:6;5099:13;5131:4;5144:51;5188:6;5183:3;5178:2;5170:6;5166:15;5144:51;:::i;:::-;5258:13;;5217:16;;;;5280:55;5258:13;5217:16;5302:15;;;5280:55;:::i;:::-;5424:13;;5357:20;;;5397:1;;5484;5506:18;;;;5559;;;;5586:93;;5664:4;5654:8;5650:19;5638:31;;5586:93;5727:2;5717:8;5714:16;5694:18;5691:40;5688:167;;;-1:-1:-1;;;5754:33:1;;5810:4;5807:1;5800:15;5840:4;5761:3;5828:17;5688:167;5871:18;5898:110;;;;6022:1;6017:328;;;;5864:481;;5898:110;-1:-1:-1;;5933:24:1;;5919:39;;5978:20;;;;-1:-1:-1;5898:110:1;;6017:328;10646:1;10639:14;;;10683:4;10670:18;;6112:1;6126:169;6140:8;6137:1;6134:15;6126:169;;;6222:14;;6207:13;;;6200:37;6265:16;;;;6157:10;;6126:169;;;6130:3;;6326:8;6319:5;6315:20;6308:27;;5864:481;-1:-1:-1;6361:3:1;;4843:1527;-1:-1:-1;;;;;;;;;;;4843:1527:1:o;6583:488::-;-1:-1:-1;;;;;6852:15:1;;;6834:34;;6904:15;;6899:2;6884:18;;6877:43;6951:2;6936:18;;6929:34;;;6999:3;6994:2;6979:18;;6972:31;;;6777:4;;7020:45;;7045:19;;7037:6;7020:45;:::i;:::-;7012:53;6583:488;-1:-1:-1;;;;;;6583:488:1:o;7268:219::-;7417:2;7406:9;7399:21;7380:4;7437:44;7477:2;7466:9;7462:18;7454:6;7437:44;:::i;8922:356::-;9124:2;9106:21;;;9143:18;;;9136:30;9202:34;9197:2;9182:18;;9175:62;9269:2;9254:18;;8922:356::o;10699:128::-;10739:3;10770:1;10766:6;10763:1;10760:13;10757:39;;;10776:18;;:::i;:::-;-1:-1:-1;10812:9:1;;10699:128::o;10832:120::-;10872:1;10898;10888:35;;10903:18;;:::i;:::-;-1:-1:-1;10937:9:1;;10832:120::o;10957:168::-;10997:7;11063:1;11059;11055:6;11051:14;11048:1;11045:21;11040:1;11033:9;11026:17;11022:45;11019:71;;;11070:18;;:::i;:::-;-1:-1:-1;11110:9:1;;10957:168::o;11130:125::-;11170:4;11198:1;11195;11192:8;11189:34;;;11203:18;;:::i;:::-;-1:-1:-1;11240:9:1;;11130:125::o;11260:258::-;11332:1;11342:113;11356:6;11353:1;11350:13;11342:113;;;11432:11;;;11426:18;11413:11;;;11406:39;11378:2;11371:10;11342:113;;;11473:6;11470:1;11467:13;11464:48;;;-1:-1:-1;;11508:1:1;11490:16;;11483:27;11260:258::o;11523:380::-;11602:1;11598:12;;;;11645;;;11666:61;;11720:4;11712:6;11708:17;11698:27;;11666:61;11773:2;11765:6;11762:14;11742:18;11739:38;11736:161;;;11819:10;11814:3;11810:20;11807:1;11800:31;11854:4;11851:1;11844:15;11882:4;11879:1;11872:15;11736:161;;11523:380;;;:::o;11908:135::-;11947:3;-1:-1:-1;;11968:17:1;;11965:43;;;11988:18;;:::i;:::-;-1:-1:-1;12035:1:1;12024:13;;11908:135::o;12048:112::-;12080:1;12106;12096:35;;12111:18;;:::i;:::-;-1:-1:-1;12145:9:1;;12048:112::o;12165:127::-;12226:10;12221:3;12217:20;12214:1;12207:31;12257:4;12254:1;12247:15;12281:4;12278:1;12271:15;12297:127;12358:10;12353:3;12349:20;12346:1;12339:31;12389:4;12386:1;12379:15;12413:4;12410:1;12403:15;12429:127;12490:10;12485:3;12481:20;12478:1;12471:31;12521:4;12518:1;12511:15;12545:4;12542:1;12535:15;12561:127;12622:10;12617:3;12613:20;12610:1;12603:31;12653:4;12650:1;12643:15;12677:4;12674:1;12667:15;12693:131;-1:-1:-1;;;;;;12767:32:1;;12757:43;;12747:71;;12814:1;12811;12804:12

Swarm Source

ipfs://92be89810f41dc835e0570bb87593119f0992bb5e5124e0619defe398744dfcd
Loading...
Loading
Loading...
Loading
[ 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.