ETH Price: $3,118.48 (+1.56%)
Gas: 5 Gwei

Token

Lost Pixels For N (LPXN)
 

Overview

Max Total Supply

2,006 LPXN

Holders

842

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 LPXN
0xa104487e2e5d176ae17dbe524a1b29105896fb83
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:
LostPixels

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-08
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface NInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);
}

contract LostPixels is ERC721, ERC721Enumerable, Ownable {

    string public PROVENANCE;
    uint256 public constant tokenPrice = 12345000000000000; // 0.012345 ETH
    uint256 public MAX_TOKENS = 3333;
    bool public saleIsActive = false;

    address public nAddress = 0x05a46f1E545526FB803FF974C790aCeA34D1f2D6;
    NInterface nContract = NInterface(nAddress);

    string private _baseURIextended;

    constructor() ERC721("Lost Pixels For N", "LPXN") {
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintToken(uint tokenId) public payable {
        require(saleIsActive, "Sale must be active to mint tokens");
        require(totalSupply() + 1 <= MAX_TOKENS, "Max supply reached");
        require(tokenPrice <= msg.value, "Payment too low, try 0.012345 eth");
        require(nContract.balanceOf(msg.sender) > 0, "Must own an N to mint token");
        require(nContract.ownerOf(tokenId) == msg.sender, "Must own the N to mint token");

        _safeMint(msg.sender, tokenId);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"nAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600c55600d80547405a46f1e545526fb803ff974c790acea34d1f2d6006001600160a81b03199091161790819055600e80546001600160a01b0319166101009092046001600160a01b03169190911790553480156200006557600080fd5b5060408051808201825260118152702637b9ba102834bc32b639902337b9102760791b60208083019182528351808501909452600484526326282c2760e11b908401528151919291620000bb916000916200014a565b508051620000d19060019060208401906200014a565b505050620000ee620000e8620000f460201b60201c565b620000f8565b6200022d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015890620001f0565b90600052602060002090601f0160209004810192826200017c5760008555620001c7565b82601f106200019757805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c7578251825591602001919060010190620001aa565b50620001d5929150620001d9565b5090565b5b80821115620001d55760008155600101620001da565b600181811c908216806200020557607f821691505b602082108114156200022757634e487b7160e01b600052602260045260246000fd5b50919050565b6121d6806200023d6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063c634d03211610095578063eb8d244411610064578063eb8d2444146104fa578063f2fde38b14610514578063f47c84c514610534578063ffe630b51461054a57600080fd5b8063c634d03214610459578063c87b56dd1461046c578063d333232c1461048c578063e985e9c5146104b157600080fd5b80638da5cb5b116100d15780638da5cb5b146103e657806395d89b4114610404578063a22cb46514610419578063b88d4fde1461043957600080fd5b806370a0823114610396578063715018a6146103b65780637ff9b596146103cb57600080fd5b806334918dfd116101645780634f6ccce71161013e5780634f6ccce71461032157806355f804b3146103415780636352211e146103615780636373a6b11461038157600080fd5b806334918dfd146102d75780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611df6565b61056a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161057b565b6040516101f39190611f43565b34801561022a57600080fd5b5061023e610239366004611e79565b61060d565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611dca565b6106a7565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611cd6565b6107bd565b3480156102c357600080fd5b506102896102d2366004611dca565b6107ee565b3480156102e357600080fd5b50610276610884565b3480156102f857600080fd5b506102766108c2565b34801561030d57600080fd5b5061027661031c366004611cd6565b61091f565b34801561032d57600080fd5b5061028961033c366004611e79565b61093a565b34801561034d57600080fd5b5061027661035c366004611e30565b6109cd565b34801561036d57600080fd5b5061023e61037c366004611e79565b610a0a565b34801561038d57600080fd5b50610211610a81565b3480156103a257600080fd5b506102896103b1366004611c63565b610b0f565b3480156103c257600080fd5b50610276610b96565b3480156103d757600080fd5b50610289662bdbb64bc0900081565b3480156103f257600080fd5b50600a546001600160a01b031661023e565b34801561041057600080fd5b50610211610bcc565b34801561042557600080fd5b50610276610434366004611d97565b610bdb565b34801561044557600080fd5b50610276610454366004611d17565b610ca0565b610276610467366004611e79565b610cd8565b34801561047857600080fd5b50610211610487366004611e79565b610f92565b34801561049857600080fd5b50600d5461023e9061010090046001600160a01b031681565b3480156104bd57600080fd5b506101e76104cc366004611c9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050657600080fd5b50600d546101e79060ff1681565b34801561052057600080fd5b5061027661052f366004611c63565b61106d565b34801561054057600080fd5b50610289600c5481565b34801561055657600080fd5b50610276610565366004611e30565b611105565b600061057582611142565b92915050565b60606000805461058a9061209d565b80601f01602080910402602001604051908101604052809291908181526020018280546105b69061209d565b80156106035780601f106105d857610100808354040283529160200191610603565b820191906000526020600020905b8154815290600101906020018083116105e657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b282610a0a565b9050806001600160a01b0316836001600160a01b031614156107205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610682565b336001600160a01b038216148061073c575061073c81336104cc565b6107ae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610682565b6107b88383611167565b505050565b6107c733826111d5565b6107e35760405162461bcd60e51b815260040161068290611fdd565b6107b88383836112cc565b60006107f983610b0f565b821061085b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610682565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ae5760405162461bcd60e51b815260040161068290611fa8565b600d805460ff19811660ff90911615179055565b600a546001600160a01b031633146108ec5760405162461bcd60e51b815260040161068290611fa8565b6040514790339082156108fc029083906000818181858888f1935050505015801561091b573d6000803e3d6000fd5b5050565b6107b883838360405180602001604052806000815250610ca0565b600061094560085490565b82106109a85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610682565b600882815481106109bb576109bb612149565b90600052602060002001549050919050565b600a546001600160a01b031633146109f75760405162461bcd60e51b815260040161068290611fa8565b805161091b90600f906020840190611b54565b6000818152600260205260408120546001600160a01b0316806105755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610682565b600b8054610a8e9061209d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aba9061209d565b8015610b075780601f10610adc57610100808354040283529160200191610b07565b820191906000526020600020905b815481529060010190602001808311610aea57829003601f168201915b505050505081565b60006001600160a01b038216610b7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610682565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bc05760405162461bcd60e51b815260040161068290611fa8565b610bca6000611477565b565b60606001805461058a9061209d565b6001600160a01b038216331415610c345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610682565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610caa33836111d5565b610cc65760405162461bcd60e51b815260040161068290611fdd565b610cd2848484846114c9565b50505050565b600d5460ff16610d355760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610682565b600c54600854610d4690600161202e565b1115610d895760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610682565b34662bdbb64bc090001115610dea5760405162461bcd60e51b815260206004820152602160248201527f5061796d656e7420746f6f206c6f772c2074727920302e3031323334352065746044820152600d60fb1b6064820152608401610682565b600e546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610e2e57600080fd5b505afa158015610e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e669190611e92565b11610eb35760405162461bcd60e51b815260206004820152601b60248201527f4d757374206f776e20616e204e20746f206d696e7420746f6b656e00000000006044820152606401610682565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610ef757600080fd5b505afa158015610f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2f9190611c80565b6001600160a01b031614610f855760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746865204e20746f206d696e7420746f6b656e000000006044820152606401610682565b610f8f33826114fc565b50565b6000818152600260205260409020546060906001600160a01b03166110115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610682565b600061101b611516565b9050600081511161103b5760405180602001604052806000815250611066565b8061104584611525565b604051602001611056929190611ed7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110975760405162461bcd60e51b815260040161068290611fa8565b6001600160a01b0381166110fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610682565b610f8f81611477565b600a546001600160a01b0316331461112f5760405162461bcd60e51b815260040161068290611fa8565b805161091b90600b906020840190611b54565b60006001600160e01b0319821663780e9d6360e01b1480610575575061057582611623565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119c82610a0a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610682565b600061125983610a0a565b9050806001600160a01b0316846001600160a01b031614806112945750836001600160a01b03166112898461060d565b6001600160a01b0316145b806112c457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112df82610a0a565b6001600160a01b0316146113475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610682565b6001600160a01b0382166113a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610682565b6113b4838383611673565b6113bf600082611167565b6001600160a01b03831660009081526003602052604081208054600192906113e890849061205a565b90915550506001600160a01b038216600090815260036020526040812080546001929061141690849061202e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114d48484846112cc565b6114e08484848461167e565b610cd25760405162461bcd60e51b815260040161068290611f56565b61091b82826040518060200160405280600081525061178b565b6060600f805461058a9061209d565b6060816115495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611573578061155d816120d8565b915061156c9050600a83612046565b915061154d565b60008167ffffffffffffffff81111561158e5761158e61215f565b6040519080825280601f01601f1916602001820160405280156115b8576020820181803683370190505b5090505b84156112c4576115cd60018361205a565b91506115da600a866120f3565b6115e590603061202e565b60f81b8183815181106115fa576115fa612149565b60200101906001600160f81b031916908160001a90535061161c600a86612046565b94506115bc565b60006001600160e01b031982166380ac58cd60e01b148061165457506001600160e01b03198216635b5e139f60e01b145b8061057557506301ffc9a760e01b6001600160e01b0319831614610575565b6107b88383836117be565b60006001600160a01b0384163b1561178057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116c2903390899088908890600401611f06565b602060405180830381600087803b1580156116dc57600080fd5b505af192505050801561170c575060408051601f3d908101601f1916820190925261170991810190611e13565b60015b611766573d80801561173a576040519150601f19603f3d011682016040523d82523d6000602084013e61173f565b606091505b50805161175e5760405162461bcd60e51b815260040161068290611f56565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c4565b506001949350505050565b6117958383611876565b6117a2600084848461167e565b6107b85760405162461bcd60e51b815260040161068290611f56565b6001600160a01b0383166118195761181481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61183c565b816001600160a01b0316836001600160a01b03161461183c5761183c83826119c4565b6001600160a01b038216611853576107b881611a61565b826001600160a01b0316826001600160a01b0316146107b8576107b88282611b10565b6001600160a01b0382166118cc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610682565b6000818152600260205260409020546001600160a01b0316156119315760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610682565b61193d60008383611673565b6001600160a01b038216600090815260036020526040812080546001929061196690849061202e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016119d184610b0f565b6119db919061205a565b600083815260076020526040902054909150808214611a2e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a739060019061205a565b60008381526009602052604081205460088054939450909284908110611a9b57611a9b612149565b906000526020600020015490508060088381548110611abc57611abc612149565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611af457611af4612133565b6001900381819060005260206000200160009055905550505050565b6000611b1b83610b0f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b609061209d565b90600052602060002090601f016020900481019282611b825760008555611bc8565b82601f10611b9b57805160ff1916838001178555611bc8565b82800160010185558215611bc8579182015b82811115611bc8578251825591602001919060010190611bad565b50611bd4929150611bd8565b5090565b5b80821115611bd45760008155600101611bd9565b600067ffffffffffffffff80841115611c0857611c0861215f565b604051601f8501601f19908116603f01168101908282118183101715611c3057611c3061215f565b81604052809350858152868686011115611c4957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c7557600080fd5b813561106681612175565b600060208284031215611c9257600080fd5b815161106681612175565b60008060408385031215611cb057600080fd5b8235611cbb81612175565b91506020830135611ccb81612175565b809150509250929050565b600080600060608486031215611ceb57600080fd5b8335611cf681612175565b92506020840135611d0681612175565b929592945050506040919091013590565b60008060008060808587031215611d2d57600080fd5b8435611d3881612175565b93506020850135611d4881612175565b925060408501359150606085013567ffffffffffffffff811115611d6b57600080fd5b8501601f81018713611d7c57600080fd5b611d8b87823560208401611bed565b91505092959194509250565b60008060408385031215611daa57600080fd5b8235611db581612175565b915060208301358015158114611ccb57600080fd5b60008060408385031215611ddd57600080fd5b8235611de881612175565b946020939093013593505050565b600060208284031215611e0857600080fd5b81356110668161218a565b600060208284031215611e2557600080fd5b81516110668161218a565b600060208284031215611e4257600080fd5b813567ffffffffffffffff811115611e5957600080fd5b8201601f81018413611e6a57600080fd5b6112c484823560208401611bed565b600060208284031215611e8b57600080fd5b5035919050565b600060208284031215611ea457600080fd5b5051919050565b60008151808452611ec3816020860160208601612071565b601f01601f19169290920160200192915050565b60008351611ee9818460208801612071565b835190830190611efd818360208801612071565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3990830184611eab565b9695505050505050565b6020815260006110666020830184611eab565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561204157612041612107565b500190565b6000826120555761205561211d565b500490565b60008282101561206c5761206c612107565b500390565b60005b8381101561208c578181015183820152602001612074565b83811115610cd25750506000910152565b600181811c908216806120b157607f821691505b602082108114156120d257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ec576120ec612107565b5060010190565b6000826121025761210261211d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8f57600080fd5b6001600160e01b031981168114610f8f57600080fdfea264697066735822122020c8632140180f3fb35d73f6a3e78853c3c42f2710768e1f2452124bd7d16b7564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063c634d03211610095578063eb8d244411610064578063eb8d2444146104fa578063f2fde38b14610514578063f47c84c514610534578063ffe630b51461054a57600080fd5b8063c634d03214610459578063c87b56dd1461046c578063d333232c1461048c578063e985e9c5146104b157600080fd5b80638da5cb5b116100d15780638da5cb5b146103e657806395d89b4114610404578063a22cb46514610419578063b88d4fde1461043957600080fd5b806370a0823114610396578063715018a6146103b65780637ff9b596146103cb57600080fd5b806334918dfd116101645780634f6ccce71161013e5780634f6ccce71461032157806355f804b3146103415780636352211e146103615780636373a6b11461038157600080fd5b806334918dfd146102d75780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611df6565b61056a565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161057b565b6040516101f39190611f43565b34801561022a57600080fd5b5061023e610239366004611e79565b61060d565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611dca565b6106a7565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611cd6565b6107bd565b3480156102c357600080fd5b506102896102d2366004611dca565b6107ee565b3480156102e357600080fd5b50610276610884565b3480156102f857600080fd5b506102766108c2565b34801561030d57600080fd5b5061027661031c366004611cd6565b61091f565b34801561032d57600080fd5b5061028961033c366004611e79565b61093a565b34801561034d57600080fd5b5061027661035c366004611e30565b6109cd565b34801561036d57600080fd5b5061023e61037c366004611e79565b610a0a565b34801561038d57600080fd5b50610211610a81565b3480156103a257600080fd5b506102896103b1366004611c63565b610b0f565b3480156103c257600080fd5b50610276610b96565b3480156103d757600080fd5b50610289662bdbb64bc0900081565b3480156103f257600080fd5b50600a546001600160a01b031661023e565b34801561041057600080fd5b50610211610bcc565b34801561042557600080fd5b50610276610434366004611d97565b610bdb565b34801561044557600080fd5b50610276610454366004611d17565b610ca0565b610276610467366004611e79565b610cd8565b34801561047857600080fd5b50610211610487366004611e79565b610f92565b34801561049857600080fd5b50600d5461023e9061010090046001600160a01b031681565b3480156104bd57600080fd5b506101e76104cc366004611c9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050657600080fd5b50600d546101e79060ff1681565b34801561052057600080fd5b5061027661052f366004611c63565b61106d565b34801561054057600080fd5b50610289600c5481565b34801561055657600080fd5b50610276610565366004611e30565b611105565b600061057582611142565b92915050565b60606000805461058a9061209d565b80601f01602080910402602001604051908101604052809291908181526020018280546105b69061209d565b80156106035780601f106105d857610100808354040283529160200191610603565b820191906000526020600020905b8154815290600101906020018083116105e657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b282610a0a565b9050806001600160a01b0316836001600160a01b031614156107205760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610682565b336001600160a01b038216148061073c575061073c81336104cc565b6107ae5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610682565b6107b88383611167565b505050565b6107c733826111d5565b6107e35760405162461bcd60e51b815260040161068290611fdd565b6107b88383836112cc565b60006107f983610b0f565b821061085b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610682565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108ae5760405162461bcd60e51b815260040161068290611fa8565b600d805460ff19811660ff90911615179055565b600a546001600160a01b031633146108ec5760405162461bcd60e51b815260040161068290611fa8565b6040514790339082156108fc029083906000818181858888f1935050505015801561091b573d6000803e3d6000fd5b5050565b6107b883838360405180602001604052806000815250610ca0565b600061094560085490565b82106109a85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610682565b600882815481106109bb576109bb612149565b90600052602060002001549050919050565b600a546001600160a01b031633146109f75760405162461bcd60e51b815260040161068290611fa8565b805161091b90600f906020840190611b54565b6000818152600260205260408120546001600160a01b0316806105755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610682565b600b8054610a8e9061209d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aba9061209d565b8015610b075780601f10610adc57610100808354040283529160200191610b07565b820191906000526020600020905b815481529060010190602001808311610aea57829003601f168201915b505050505081565b60006001600160a01b038216610b7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610682565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bc05760405162461bcd60e51b815260040161068290611fa8565b610bca6000611477565b565b60606001805461058a9061209d565b6001600160a01b038216331415610c345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610682565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610caa33836111d5565b610cc65760405162461bcd60e51b815260040161068290611fdd565b610cd2848484846114c9565b50505050565b600d5460ff16610d355760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610682565b600c54600854610d4690600161202e565b1115610d895760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610682565b34662bdbb64bc090001115610dea5760405162461bcd60e51b815260206004820152602160248201527f5061796d656e7420746f6f206c6f772c2074727920302e3031323334352065746044820152600d60fb1b6064820152608401610682565b600e546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610e2e57600080fd5b505afa158015610e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e669190611e92565b11610eb35760405162461bcd60e51b815260206004820152601b60248201527f4d757374206f776e20616e204e20746f206d696e7420746f6b656e00000000006044820152606401610682565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610ef757600080fd5b505afa158015610f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2f9190611c80565b6001600160a01b031614610f855760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746865204e20746f206d696e7420746f6b656e000000006044820152606401610682565b610f8f33826114fc565b50565b6000818152600260205260409020546060906001600160a01b03166110115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610682565b600061101b611516565b9050600081511161103b5760405180602001604052806000815250611066565b8061104584611525565b604051602001611056929190611ed7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110975760405162461bcd60e51b815260040161068290611fa8565b6001600160a01b0381166110fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610682565b610f8f81611477565b600a546001600160a01b0316331461112f5760405162461bcd60e51b815260040161068290611fa8565b805161091b90600b906020840190611b54565b60006001600160e01b0319821663780e9d6360e01b1480610575575061057582611623565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119c82610a0a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610682565b600061125983610a0a565b9050806001600160a01b0316846001600160a01b031614806112945750836001600160a01b03166112898461060d565b6001600160a01b0316145b806112c457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112df82610a0a565b6001600160a01b0316146113475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610682565b6001600160a01b0382166113a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610682565b6113b4838383611673565b6113bf600082611167565b6001600160a01b03831660009081526003602052604081208054600192906113e890849061205a565b90915550506001600160a01b038216600090815260036020526040812080546001929061141690849061202e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114d48484846112cc565b6114e08484848461167e565b610cd25760405162461bcd60e51b815260040161068290611f56565b61091b82826040518060200160405280600081525061178b565b6060600f805461058a9061209d565b6060816115495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611573578061155d816120d8565b915061156c9050600a83612046565b915061154d565b60008167ffffffffffffffff81111561158e5761158e61215f565b6040519080825280601f01601f1916602001820160405280156115b8576020820181803683370190505b5090505b84156112c4576115cd60018361205a565b91506115da600a866120f3565b6115e590603061202e565b60f81b8183815181106115fa576115fa612149565b60200101906001600160f81b031916908160001a90535061161c600a86612046565b94506115bc565b60006001600160e01b031982166380ac58cd60e01b148061165457506001600160e01b03198216635b5e139f60e01b145b8061057557506301ffc9a760e01b6001600160e01b0319831614610575565b6107b88383836117be565b60006001600160a01b0384163b1561178057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116c2903390899088908890600401611f06565b602060405180830381600087803b1580156116dc57600080fd5b505af192505050801561170c575060408051601f3d908101601f1916820190925261170991810190611e13565b60015b611766573d80801561173a576040519150601f19603f3d011682016040523d82523d6000602084013e61173f565b606091505b50805161175e5760405162461bcd60e51b815260040161068290611f56565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c4565b506001949350505050565b6117958383611876565b6117a2600084848461167e565b6107b85760405162461bcd60e51b815260040161068290611f56565b6001600160a01b0383166118195761181481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61183c565b816001600160a01b0316836001600160a01b03161461183c5761183c83826119c4565b6001600160a01b038216611853576107b881611a61565b826001600160a01b0316826001600160a01b0316146107b8576107b88282611b10565b6001600160a01b0382166118cc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610682565b6000818152600260205260409020546001600160a01b0316156119315760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610682565b61193d60008383611673565b6001600160a01b038216600090815260036020526040812080546001929061196690849061202e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016119d184610b0f565b6119db919061205a565b600083815260076020526040902054909150808214611a2e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a739060019061205a565b60008381526009602052604081205460088054939450909284908110611a9b57611a9b612149565b906000526020600020015490508060088381548110611abc57611abc612149565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611af457611af4612133565b6001900381819060005260206000200160009055905550505050565b6000611b1b83610b0f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b609061209d565b90600052602060002090601f016020900481019282611b825760008555611bc8565b82601f10611b9b57805160ff1916838001178555611bc8565b82800160010185558215611bc8579182015b82811115611bc8578251825591602001919060010190611bad565b50611bd4929150611bd8565b5090565b5b80821115611bd45760008155600101611bd9565b600067ffffffffffffffff80841115611c0857611c0861215f565b604051601f8501601f19908116603f01168101908282118183101715611c3057611c3061215f565b81604052809350858152868686011115611c4957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c7557600080fd5b813561106681612175565b600060208284031215611c9257600080fd5b815161106681612175565b60008060408385031215611cb057600080fd5b8235611cbb81612175565b91506020830135611ccb81612175565b809150509250929050565b600080600060608486031215611ceb57600080fd5b8335611cf681612175565b92506020840135611d0681612175565b929592945050506040919091013590565b60008060008060808587031215611d2d57600080fd5b8435611d3881612175565b93506020850135611d4881612175565b925060408501359150606085013567ffffffffffffffff811115611d6b57600080fd5b8501601f81018713611d7c57600080fd5b611d8b87823560208401611bed565b91505092959194509250565b60008060408385031215611daa57600080fd5b8235611db581612175565b915060208301358015158114611ccb57600080fd5b60008060408385031215611ddd57600080fd5b8235611de881612175565b946020939093013593505050565b600060208284031215611e0857600080fd5b81356110668161218a565b600060208284031215611e2557600080fd5b81516110668161218a565b600060208284031215611e4257600080fd5b813567ffffffffffffffff811115611e5957600080fd5b8201601f81018413611e6a57600080fd5b6112c484823560208401611bed565b600060208284031215611e8b57600080fd5b5035919050565b600060208284031215611ea457600080fd5b5051919050565b60008151808452611ec3816020860160208601612071565b601f01601f19169290920160200192915050565b60008351611ee9818460208801612071565b835190830190611efd818360208801612071565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3990830184611eab565b9695505050505050565b6020815260006110666020830184611eab565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561204157612041612107565b500190565b6000826120555761205561211d565b500490565b60008282101561206c5761206c612107565b500390565b60005b8381101561208c578181015183820152602001612074565b83811115610cd25750506000910152565b600181811c908216806120b157607f821691505b602082108114156120d257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ec576120ec612107565b5060010190565b6000826121025761210261211d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8f57600080fd5b6001600160e01b031981168114610f8f57600080fdfea264697066735822122020c8632140180f3fb35d73f6a3e78853c3c42f2710768e1f2452124bd7d16b7564736f6c63430008070033

Deployed Bytecode Sourcemap

48806:1973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49482:179;;;;;;;;;;-1:-1:-1;49482:179:0;;;;;:::i;:::-;;:::i;:::-;;;6488:14:1;;6481:22;6463:41;;6451:2;6436:18;49482:179:0;;;;;;;;29465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31024:221::-;;;;;;;;;;-1:-1:-1;31024:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5786:32:1;;;5768:51;;5756:2;5741:18;31024:221:0;5622:203:1;30547:411:0;;;;;;;;;;-1:-1:-1;30547:411:0;;;;;:::i;:::-;;:::i;:::-;;42979:113;;;;;;;;;;-1:-1:-1;43067:10:0;:17;42979:113;;;15957:25:1;;;15945:2;15930:18;42979:113:0;15811:177:1;31914:339:0;;;;;;;;;;-1:-1:-1;31914:339:0;;;;;:::i;:::-;;:::i;42647:256::-;;;;;;;;;;-1:-1:-1;42647:256:0;;;;;:::i;:::-;;:::i;50029:89::-;;;;;;;;;;;;;:::i;50634:140::-;;;;;;;;;;;;;:::i;32324:185::-;;;;;;;;;;-1:-1:-1;32324:185:0;;;;;:::i;:::-;;:::i;43169:233::-;;;;;;;;;;-1:-1:-1;43169:233:0;;;;;:::i;:::-;;:::i;49669:111::-;;;;;;;;;;-1:-1:-1;49669:111:0;;;;;:::i;:::-;;:::i;29159:239::-;;;;;;;;;;-1:-1:-1;29159:239:0;;;;;:::i;:::-;;:::i;48872:24::-;;;;;;;;;;;;;:::i;28889:208::-;;;;;;;;;;-1:-1:-1;28889:208:0;;;;;:::i;:::-;;:::i;16525:94::-;;;;;;;;;;;;;:::i;48903:54::-;;;;;;;;;;;;48940:17;48903:54;;15874:87;;;;;;;;;;-1:-1:-1;15947:6:0;;-1:-1:-1;;;;;15947:6:0;15874:87;;29634:104;;;;;;;;;;;;;:::i;31317:295::-;;;;;;;;;;-1:-1:-1;31317:295:0;;;;;:::i;:::-;;:::i;32580:328::-;;;;;;;;;;-1:-1:-1;32580:328:0;;;;;:::i;:::-;;:::i;50126:500::-;;;;;;:::i;:::-;;:::i;29809:334::-;;;;;;;;;;-1:-1:-1;29809:334:0;;;;;:::i;:::-;;:::i;49060:68::-;;;;;;;;;;-1:-1:-1;49060:68:0;;;;;;;-1:-1:-1;;;;;49060:68:0;;;31683:164;;;;;;;;;;-1:-1:-1;31683:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31804:25:0;;;31780:4;31804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31683:164;49019:32;;;;;;;;;;-1:-1:-1;49019:32:0;;;;;;;;16774:192;;;;;;;;;;-1:-1:-1;16774:192:0;;;;;:::i;:::-;;:::i;48980:32::-;;;;;;;;;;;;;;;;49913:108;;;;;;;;;;-1:-1:-1;49913:108:0;;;;;:::i;:::-;;:::i;49482:179::-;49593:4;49617:36;49641:11;49617:23;:36::i;:::-;49610:43;49482:179;-1:-1:-1;;49482:179:0:o;29465:100::-;29519:13;29552:5;29545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29465:100;:::o;31024:221::-;31100:7;34507:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34507:16:0;31120:73;;;;-1:-1:-1;;;31120:73:0;;12028:2:1;31120:73:0;;;12010:21:1;12067:2;12047:18;;;12040:30;12106:34;12086:18;;;12079:62;-1:-1:-1;;;12157:18:1;;;12150:42;12209:19;;31120:73:0;;;;;;;;;-1:-1:-1;31213:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31213:24:0;;31024:221::o;30547:411::-;30628:13;30644:23;30659:7;30644:14;:23::i;:::-;30628:39;;30692:5;-1:-1:-1;;;;;30686:11:0;:2;-1:-1:-1;;;;;30686:11:0;;;30678:57;;;;-1:-1:-1;;;30678:57:0;;14031:2:1;30678:57:0;;;14013:21:1;14070:2;14050:18;;;14043:30;14109:34;14089:18;;;14082:62;-1:-1:-1;;;14160:18:1;;;14153:31;14201:19;;30678:57:0;13829:397:1;30678:57:0;14830:10;-1:-1:-1;;;;;30770:21:0;;;;:62;;-1:-1:-1;30795:37:0;30812:5;14830:10;31683:164;:::i;30795:37::-;30748:168;;;;-1:-1:-1;;;30748:168:0;;9708:2:1;30748:168:0;;;9690:21:1;9747:2;9727:18;;;9720:30;9786:34;9766:18;;;9759:62;9857:26;9837:18;;;9830:54;9901:19;;30748:168:0;9506:420:1;30748:168:0;30929:21;30938:2;30942:7;30929:8;:21::i;:::-;30617:341;30547:411;;:::o;31914:339::-;32109:41;14830:10;32142:7;32109:18;:41::i;:::-;32101:103;;;;-1:-1:-1;;;32101:103:0;;;;;;;:::i;:::-;32217:28;32227:4;32233:2;32237:7;32217:9;:28::i;42647:256::-;42744:7;42780:23;42797:5;42780:16;:23::i;:::-;42772:5;:31;42764:87;;;;-1:-1:-1;;;42764:87:0;;6941:2:1;42764:87:0;;;6923:21:1;6980:2;6960:18;;;6953:30;7019:34;6999:18;;;6992:62;-1:-1:-1;;;7070:18:1;;;7063:41;7121:19;;42764:87:0;6739:407:1;42764:87:0;-1:-1:-1;;;;;;42869:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42647:256::o;50029:89::-;15947:6;;-1:-1:-1;;;;;15947:6:0;14830:10;16094:23;16086:68;;;;-1:-1:-1;;;16086:68:0;;;;;;;:::i;:::-;50098:12:::1;::::0;;-1:-1:-1;;50082:28:0;::::1;50098:12;::::0;;::::1;50097:13;50082:28;::::0;;50029:89::o;50634:140::-;15947:6;;-1:-1:-1;;;;;15947:6:0;14830:10;16094:23;16086:68;;;;-1:-1:-1;;;16086:68:0;;;;;;;:::i;:::-;50729:37:::1;::::0;50697:21:::1;::::0;50737:10:::1;::::0;50729:37;::::1;;;::::0;50697:21;;50682:12:::1;50729:37:::0;50682:12;50729:37;50697:21;50737:10;50729:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50671:103;50634:140::o:0;32324:185::-;32462:39;32479:4;32485:2;32489:7;32462:39;;;;;;;;;;;;:16;:39::i;43169:233::-;43244:7;43280:30;43067:10;:17;;42979:113;43280:30;43272:5;:38;43264:95;;;;-1:-1:-1;;;43264:95:0;;15600:2:1;43264:95:0;;;15582:21:1;15639:2;15619:18;;;15612:30;15678:34;15658:18;;;15651:62;-1:-1:-1;;;15729:18:1;;;15722:42;15781:19;;43264:95:0;15398:408:1;43264:95:0;43377:10;43388:5;43377:17;;;;;;;;:::i;:::-;;;;;;;;;43370:24;;43169:233;;;:::o;49669:111::-;15947:6;;-1:-1:-1;;;;;15947:6:0;14830:10;16094:23;16086:68;;;;-1:-1:-1;;;16086:68:0;;;;;;;:::i;:::-;49745:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;29159:239::-:0;29231:7;29267:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29267:16:0;29302:19;29294:73;;;;-1:-1:-1;;;29294:73:0;;10900:2:1;29294:73:0;;;10882:21:1;10939:2;10919:18;;;10912:30;10978:34;10958:18;;;10951:62;-1:-1:-1;;;11029:18:1;;;11022:39;11078:19;;29294:73:0;10698:405:1;48872:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28889:208::-;28961:7;-1:-1:-1;;;;;28989:19:0;;28981:74;;;;-1:-1:-1;;;28981:74:0;;10489:2:1;28981:74:0;;;10471:21:1;10528:2;10508:18;;;10501:30;10567:34;10547:18;;;10540:62;-1:-1:-1;;;10618:18:1;;;10611:40;10668:19;;28981:74:0;10287:406:1;28981:74:0;-1:-1:-1;;;;;;29073:16:0;;;;;:9;:16;;;;;;;28889:208::o;16525:94::-;15947:6;;-1:-1:-1;;;;;15947:6:0;14830:10;16094:23;16086:68;;;;-1:-1:-1;;;16086:68:0;;;;;;;:::i;:::-;16590:21:::1;16608:1;16590:9;:21::i;:::-;16525:94::o:0;29634:104::-;29690:13;29723:7;29716:14;;;;;:::i;31317:295::-;-1:-1:-1;;;;;31420:24:0;;14830:10;31420:24;;31412:62;;;;-1:-1:-1;;;31412:62:0;;8941:2:1;31412:62:0;;;8923:21:1;8980:2;8960:18;;;8953:30;9019:27;8999:18;;;8992:55;9064:18;;31412:62:0;8739:349:1;31412:62:0;14830:10;31487:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31487:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31487:53:0;;;;;;;;;;31556:48;;6463:41:1;;;31487:42:0;;14830:10;31556:48;;6436:18:1;31556:48:0;;;;;;;31317:295;;:::o;32580:328::-;32755:41;14830:10;32788:7;32755:18;:41::i;:::-;32747:103;;;;-1:-1:-1;;;32747:103:0;;;;;;;:::i;:::-;32861:39;32875:4;32881:2;32885:7;32894:5;32861:13;:39::i;:::-;32580:328;;;;:::o;50126:500::-;50193:12;;;;50185:59;;;;-1:-1:-1;;;50185:59:0;;13628:2:1;50185:59:0;;;13610:21:1;13667:2;13647:18;;;13640:30;13706:34;13686:18;;;13679:62;-1:-1:-1;;;13757:18:1;;;13750:32;13799:19;;50185:59:0;13426:398:1;50185:59:0;50284:10;;43067;:17;50263;;50279:1;50263:17;:::i;:::-;:31;;50255:62;;;;-1:-1:-1;;;50255:62:0;;15253:2:1;50255:62:0;;;15235:21:1;15292:2;15272:18;;;15265:30;-1:-1:-1;;;15311:18:1;;;15304:48;15369:18;;50255:62:0;15051:342:1;50255:62:0;50350:9;48940:17;50336:23;;50328:69;;;;-1:-1:-1;;;50328:69:0;;14433:2:1;50328:69:0;;;14415:21:1;14472:2;14452:18;;;14445:30;14511:34;14491:18;;;14484:62;-1:-1:-1;;;14562:18:1;;;14555:31;14603:19;;50328:69:0;14231:397:1;50328:69:0;50416:9;;:31;;-1:-1:-1;;;50416:31:0;;50436:10;50416:31;;;5768:51:1;50450:1:0;;-1:-1:-1;;;;;50416:9:0;;:19;;5741:18:1;;50416:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;50408:75;;;;-1:-1:-1;;;50408:75:0;;10133:2:1;50408:75:0;;;10115:21:1;10172:2;10152:18;;;10145:30;10211:29;10191:18;;;10184:57;10258:18;;50408:75:0;9931:351:1;50408:75:0;50502:9;;:26;;-1:-1:-1;;;50502:26:0;;;;;15957:25:1;;;50532:10:0;;-1:-1:-1;;;;;50502:9:0;;:17;;15930:18:1;;50502:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50502:40:0;;50494:81;;;;-1:-1:-1;;;50494:81:0;;11310:2:1;50494:81:0;;;11292:21:1;11349:2;11329:18;;;11322:30;11388;11368:18;;;11361:58;11436:18;;50494:81:0;11108:352:1;50494:81:0;50588:30;50598:10;50610:7;50588:9;:30::i;:::-;50126:500;:::o;29809:334::-;34483:4;34507:16;;;:7;:16;;;;;;29882:13;;-1:-1:-1;;;;;34507:16:0;29908:76;;;;-1:-1:-1;;;29908:76:0;;13212:2:1;29908:76:0;;;13194:21:1;13251:2;13231:18;;;13224:30;13290:34;13270:18;;;13263:62;-1:-1:-1;;;13341:18:1;;;13334:45;13396:19;;29908:76:0;13010:411:1;29908:76:0;29997:21;30021:10;:8;:10::i;:::-;29997:34;;30073:1;30055:7;30049:21;:25;:86;;;;;;;;;;;;;;;;;30101:7;30110:18;:7;:16;:18::i;:::-;30084:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30049:86;30042:93;29809:334;-1:-1:-1;;;29809:334:0:o;16774:192::-;15947:6;;-1:-1:-1;;;;;15947:6:0;14830:10;16094:23;16086:68;;;;-1:-1:-1;;;16086:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16863:22:0;::::1;16855:73;;;::::0;-1:-1:-1;;;16855:73:0;;7772:2:1;16855:73:0::1;::::0;::::1;7754:21:1::0;7811:2;7791:18;;;7784:30;7850:34;7830:18;;;7823:62;-1:-1:-1;;;7901:18:1;;;7894:36;7947:19;;16855:73:0::1;7570:402:1::0;16855:73:0::1;16939:19;16949:8;16939:9;:19::i;49913:108::-:0;15947:6;;-1:-1:-1;;;;;15947:6:0;14830:10;16094:23;16086:68;;;;-1:-1:-1;;;16086:68:0;;;;;;;:::i;:::-;49990:23;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;42339:224::-:0;42441:4;-1:-1:-1;;;;;;42465:50:0;;-1:-1:-1;;;42465:50:0;;:90;;;42519:36;42543:11;42519:23;:36::i;38400:174::-;38475:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38475:29:0;-1:-1:-1;;;;;38475:29:0;;;;;;;;:24;;38529:23;38475:24;38529:14;:23::i;:::-;-1:-1:-1;;;;;38520:46:0;;;;;;;;;;;38400:174;;:::o;34712:348::-;34805:4;34507:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34507:16:0;34822:73;;;;-1:-1:-1;;;34822:73:0;;9295:2:1;34822:73:0;;;9277:21:1;9334:2;9314:18;;;9307:30;9373:34;9353:18;;;9346:62;-1:-1:-1;;;9424:18:1;;;9417:42;9476:19;;34822:73:0;9093:408:1;34822:73:0;34906:13;34922:23;34937:7;34922:14;:23::i;:::-;34906:39;;34975:5;-1:-1:-1;;;;;34964:16:0;:7;-1:-1:-1;;;;;34964:16:0;;:51;;;;35008:7;-1:-1:-1;;;;;34984:31:0;:20;34996:7;34984:11;:20::i;:::-;-1:-1:-1;;;;;34984:31:0;;34964:51;:87;;;-1:-1:-1;;;;;;31804:25:0;;;31780:4;31804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35019:32;34956:96;34712:348;-1:-1:-1;;;;34712:348:0:o;37704:578::-;37863:4;-1:-1:-1;;;;;37836:31:0;:23;37851:7;37836:14;:23::i;:::-;-1:-1:-1;;;;;37836:31:0;;37828:85;;;;-1:-1:-1;;;37828:85:0;;12802:2:1;37828:85:0;;;12784:21:1;12841:2;12821:18;;;12814:30;12880:34;12860:18;;;12853:62;-1:-1:-1;;;12931:18:1;;;12924:39;12980:19;;37828:85:0;12600:405:1;37828:85:0;-1:-1:-1;;;;;37932:16:0;;37924:65;;;;-1:-1:-1;;;37924:65:0;;8536:2:1;37924:65:0;;;8518:21:1;8575:2;8555:18;;;8548:30;8614:34;8594:18;;;8587:62;-1:-1:-1;;;8665:18:1;;;8658:34;8709:19;;37924:65:0;8334:400:1;37924:65:0;38002:39;38023:4;38029:2;38033:7;38002:20;:39::i;:::-;38106:29;38123:1;38127:7;38106:8;:29::i;:::-;-1:-1:-1;;;;;38148:15:0;;;;;;:9;:15;;;;;:20;;38167:1;;38148:15;:20;;38167:1;;38148:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38179:13:0;;;;;;:9;:13;;;;;:18;;38196:1;;38179:13;:18;;38196:1;;38179:18;:::i;:::-;;;;-1:-1:-1;;38208:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38208:21:0;-1:-1:-1;;;;;38208:21:0;;;;;;;;;38247:27;;38208:16;;38247:27;;;;;;;37704:578;;;:::o;16974:173::-;17049:6;;;-1:-1:-1;;;;;17066:17:0;;;-1:-1:-1;;;;;;17066:17:0;;;;;;;17099:40;;17049:6;;;17066:17;17049:6;;17099:40;;17030:16;;17099:40;17019:128;16974:173;:::o;33790:315::-;33947:28;33957:4;33963:2;33967:7;33947:9;:28::i;:::-;33994:48;34017:4;34023:2;34027:7;34036:5;33994:22;:48::i;:::-;33986:111;;;;-1:-1:-1;;;33986:111:0;;;;;;;:::i;35402:110::-;35478:26;35488:2;35492:7;35478:26;;;;;;;;;;;;:9;:26::i;49788:117::-;49848:13;49881:16;49874:23;;;;;:::i;12452:723::-;12508:13;12729:10;12725:53;;-1:-1:-1;;12756:10:0;;;;;;;;;;;;-1:-1:-1;;;12756:10:0;;;;;12452:723::o;12725:53::-;12803:5;12788:12;12844:78;12851:9;;12844:78;;12877:8;;;;:::i;:::-;;-1:-1:-1;12900:10:0;;-1:-1:-1;12908:2:0;12900:10;;:::i;:::-;;;12844:78;;;12932:19;12964:6;12954:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12954:17:0;;12932:39;;12982:154;12989:10;;12982:154;;13016:11;13026:1;13016:11;;:::i;:::-;;-1:-1:-1;13085:10:0;13093:2;13085:5;:10;:::i;:::-;13072:24;;:2;:24;:::i;:::-;13059:39;;13042:6;13049;13042:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13042:56:0;;;;;;;;-1:-1:-1;13113:11:0;13122:2;13113:11;;:::i;:::-;;;12982:154;;28520:305;28622:4;-1:-1:-1;;;;;;28659:40:0;;-1:-1:-1;;;28659:40:0;;:105;;-1:-1:-1;;;;;;;28716:48:0;;-1:-1:-1;;;28716:48:0;28659:105;:158;;;-1:-1:-1;;;;;;;;;;27238:40:0;;;28781:36;27129:157;49293:181;49421:45;49448:4;49454:2;49458:7;49421:26;:45::i;39139:803::-;39294:4;-1:-1:-1;;;;;39315:13:0;;19640:20;19688:8;39311:624;;39351:72;;-1:-1:-1;;;39351:72:0;;-1:-1:-1;;;;;39351:36:0;;;;;:72;;14830:10;;39402:4;;39408:7;;39417:5;;39351:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39351:72:0;;;;;;;;-1:-1:-1;;39351:72:0;;;;;;;;;;;;:::i;:::-;;;39347:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39597:13:0;;39593:272;;39640:60;;-1:-1:-1;;;39640:60:0;;;;;;;:::i;39593:272::-;39815:6;39809:13;39800:6;39796:2;39792:15;39785:38;39347:533;-1:-1:-1;;;;;;39474:55:0;-1:-1:-1;;;39474:55:0;;-1:-1:-1;39467:62:0;;39311:624;-1:-1:-1;39919:4:0;39139:803;;;;;;:::o;35739:321::-;35869:18;35875:2;35879:7;35869:5;:18::i;:::-;35920:54;35951:1;35955:2;35959:7;35968:5;35920:22;:54::i;:::-;35898:154;;;;-1:-1:-1;;;35898:154:0;;;;;;;:::i;44015:589::-;-1:-1:-1;;;;;44221:18:0;;44217:187;;44256:40;44288:7;45431:10;:17;;45404:24;;;;:15;:24;;;;;:44;;;45459:24;;;;;;;;;;;;45327:164;44256:40;44217:187;;;44326:2;-1:-1:-1;;;;;44318:10:0;:4;-1:-1:-1;;;;;44318:10:0;;44314:90;;44345:47;44378:4;44384:7;44345:32;:47::i;:::-;-1:-1:-1;;;;;44418:16:0;;44414:183;;44451:45;44488:7;44451:36;:45::i;44414:183::-;44524:4;-1:-1:-1;;;;;44518:10:0;:2;-1:-1:-1;;;;;44518:10:0;;44514:83;;44545:40;44573:2;44577:7;44545:27;:40::i;36396:382::-;-1:-1:-1;;;;;36476:16:0;;36468:61;;;;-1:-1:-1;;;36468:61:0;;11667:2:1;36468:61:0;;;11649:21:1;;;11686:18;;;11679:30;11745:34;11725:18;;;11718:62;11797:18;;36468:61:0;11465:356:1;36468:61:0;34483:4;34507:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34507:16:0;:30;36540:58;;;;-1:-1:-1;;;36540:58:0;;8179:2:1;36540:58:0;;;8161:21:1;8218:2;8198:18;;;8191:30;8257;8237:18;;;8230:58;8305:18;;36540:58:0;7977:352:1;36540:58:0;36611:45;36640:1;36644:2;36648:7;36611:20;:45::i;:::-;-1:-1:-1;;;;;36669:13:0;;;;;;:9;:13;;;;;:18;;36686:1;;36669:13;:18;;36686:1;;36669:18;:::i;:::-;;;;-1:-1:-1;;36698:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36698:21:0;-1:-1:-1;;;;;36698:21:0;;;;;;;;36737:33;;36698:16;;;36737:33;;36698:16;;36737:33;36396:382;;:::o;46118:988::-;46384:22;46434:1;46409:22;46426:4;46409:16;:22::i;:::-;:26;;;;:::i;:::-;46446:18;46467:26;;;:17;:26;;;;;;46384:51;;-1:-1:-1;46600:28:0;;;46596:328;;-1:-1:-1;;;;;46667:18:0;;46645:19;46667:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46718:30;;;;;;:44;;;46835:30;;:17;:30;;;;;:43;;;46596:328;-1:-1:-1;47020:26:0;;;;:17;:26;;;;;;;;47013:33;;;-1:-1:-1;;;;;47064:18:0;;;;;:12;:18;;;;;:34;;;;;;;47057:41;46118:988::o;47401:1079::-;47679:10;:17;47654:22;;47679:21;;47699:1;;47679:21;:::i;:::-;47711:18;47732:24;;;:15;:24;;;;;;48105:10;:26;;47654:46;;-1:-1:-1;47732:24:0;;47654:46;;48105:26;;;;;;:::i;:::-;;;;;;;;;48083:48;;48169:11;48144:10;48155;48144:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48249:28;;;:15;:28;;;;;;;:41;;;48421:24;;;;;48414:31;48456:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47472:1008;;;47401:1079;:::o;44905:221::-;44990:14;45007:20;45024:2;45007:16;:20::i;:::-;-1:-1:-1;;;;;45038:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45083:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44905:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1158:388;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1551:456;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1551:456::o;2012:794::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2240:9;2227:23;2259:31;2284:5;2259:31;:::i;:::-;2309:5;-1:-1:-1;2366:2:1;2351:18;;2338:32;2379:33;2338:32;2379:33;:::i;:::-;2431:7;-1:-1:-1;2485:2:1;2470:18;;2457:32;;-1:-1:-1;2540:2:1;2525:18;;2512:32;2567:18;2556:30;;2553:50;;;2599:1;2596;2589:12;2553:50;2622:22;;2675:4;2667:13;;2663:27;-1:-1:-1;2653:55:1;;2704:1;2701;2694:12;2653:55;2727:73;2792:7;2787:2;2774:16;2769:2;2765;2761:11;2727:73;:::i;:::-;2717:83;;;2012:794;;;;;;;:::o;2811:416::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2992:9;2979:23;3011:31;3036:5;3011:31;:::i;:::-;3061:5;-1:-1:-1;3118:2:1;3103:18;;3090:32;3160:15;;3153:23;3141:36;;3131:64;;3191:1;3188;3181:12;3232:315;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3552:245::-;3610:6;3663:2;3651:9;3642:7;3638:23;3634:32;3631:52;;;3679:1;3676;3669:12;3631:52;3718:9;3705:23;3737:30;3761:5;3737:30;:::i;3802:249::-;3871:6;3924:2;3912:9;3903:7;3899:23;3895:32;3892:52;;;3940:1;3937;3930:12;3892:52;3972:9;3966:16;3991:30;4015:5;3991:30;:::i;4056:450::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4234:9;4221:23;4267:18;4259:6;4256:30;4253:50;;;4299:1;4296;4289:12;4253:50;4322:22;;4375:4;4367:13;;4363:27;-1:-1:-1;4353:55:1;;4404:1;4401;4394:12;4353:55;4427:73;4492:7;4487:2;4474:16;4469:2;4465;4461:11;4427:73;:::i;4511:180::-;4570:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:52;;;4639:1;4636;4629:12;4591:52;-1:-1:-1;4662:23:1;;4511:180;-1:-1:-1;4511:180:1:o;4696:184::-;4766:6;4819:2;4807:9;4798:7;4794:23;4790:32;4787:52;;;4835:1;4832;4825:12;4787:52;-1:-1:-1;4858:16:1;;4696:184;-1:-1:-1;4696:184:1:o;4885:257::-;4926:3;4964:5;4958:12;4991:6;4986:3;4979:19;5007:63;5063:6;5056:4;5051:3;5047:14;5040:4;5033:5;5029:16;5007:63;:::i;:::-;5124:2;5103:15;-1:-1:-1;;5099:29:1;5090:39;;;;5131:4;5086:50;;4885:257;-1:-1:-1;;4885:257:1:o;5147:470::-;5326:3;5364:6;5358:13;5380:53;5426:6;5421:3;5414:4;5406:6;5402:17;5380:53;:::i;:::-;5496:13;;5455:16;;;;5518:57;5496:13;5455:16;5552:4;5540:17;;5518:57;:::i;:::-;5591:20;;5147:470;-1:-1:-1;;;;5147:470:1:o;5830:488::-;-1:-1:-1;;;;;6099:15:1;;;6081:34;;6151:15;;6146:2;6131:18;;6124:43;6198:2;6183:18;;6176:34;;;6246:3;6241:2;6226:18;;6219:31;;;6024:4;;6267:45;;6292:19;;6284:6;6267:45;:::i;:::-;6259:53;5830:488;-1:-1:-1;;;;;;5830:488:1:o;6515:219::-;6664:2;6653:9;6646:21;6627:4;6684:44;6724:2;6713:9;6709:18;6701:6;6684:44;:::i;7151:414::-;7353:2;7335:21;;;7392:2;7372:18;;;7365:30;7431:34;7426:2;7411:18;;7404:62;-1:-1:-1;;;7497:2:1;7482:18;;7475:48;7555:3;7540:19;;7151:414::o;12239:356::-;12441:2;12423:21;;;12460:18;;;12453:30;12519:34;12514:2;12499:18;;12492:62;12586:2;12571:18;;12239:356::o;14633:413::-;14835:2;14817:21;;;14874:2;14854:18;;;14847:30;14913:34;14908:2;14893:18;;14886:62;-1:-1:-1;;;14979:2:1;14964:18;;14957:47;15036:3;15021:19;;14633:413::o;15993:128::-;16033:3;16064:1;16060:6;16057:1;16054:13;16051:39;;;16070:18;;:::i;:::-;-1:-1:-1;16106:9:1;;15993:128::o;16126:120::-;16166:1;16192;16182:35;;16197:18;;:::i;:::-;-1:-1:-1;16231:9:1;;16126:120::o;16251:125::-;16291:4;16319:1;16316;16313:8;16310:34;;;16324:18;;:::i;:::-;-1:-1:-1;16361:9:1;;16251:125::o;16381:258::-;16453:1;16463:113;16477:6;16474:1;16471:13;16463:113;;;16553:11;;;16547:18;16534:11;;;16527:39;16499:2;16492:10;16463:113;;;16594:6;16591:1;16588:13;16585:48;;;-1:-1:-1;;16629:1:1;16611:16;;16604:27;16381:258::o;16644:380::-;16723:1;16719:12;;;;16766;;;16787:61;;16841:4;16833:6;16829:17;16819:27;;16787:61;16894:2;16886:6;16883:14;16863:18;16860:38;16857:161;;;16940:10;16935:3;16931:20;16928:1;16921:31;16975:4;16972:1;16965:15;17003:4;17000:1;16993:15;16857:161;;16644:380;;;:::o;17029:135::-;17068:3;-1:-1:-1;;17089:17:1;;17086:43;;;17109:18;;:::i;:::-;-1:-1:-1;17156:1:1;17145:13;;17029:135::o;17169:112::-;17201:1;17227;17217:35;;17232:18;;:::i;:::-;-1:-1:-1;17266:9:1;;17169:112::o;17286:127::-;17347:10;17342:3;17338:20;17335:1;17328:31;17378:4;17375:1;17368:15;17402:4;17399:1;17392:15;17418:127;17479:10;17474:3;17470:20;17467:1;17460:31;17510:4;17507:1;17500:15;17534:4;17531:1;17524:15;17550:127;17611:10;17606:3;17602:20;17599:1;17592:31;17642:4;17639:1;17632:15;17666:4;17663:1;17656:15;17682:127;17743:10;17738:3;17734:20;17731:1;17724:31;17774:4;17771:1;17764:15;17798:4;17795:1;17788:15;17814:127;17875:10;17870:3;17866:20;17863:1;17856:31;17906:4;17903:1;17896:15;17930:4;17927:1;17920:15;17946:131;-1:-1:-1;;;;;18021:31:1;;18011:42;;18001:70;;18067:1;18064;18057:12;18082:131;-1:-1:-1;;;;;;18156:32:1;;18146:43;;18136:71;;18203:1;18200;18193:12

Swarm Source

ipfs://20c8632140180f3fb35d73f6a3e78853c3c42f2710768e1f2452124bd7d16b75
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.