ETH Price: $2,352.99 (+0.52%)

Token

NFLips (NFLIPS)
 

Overview

Max Total Supply

123 NFLIPS

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NFLIPS
0x426663dc9c86510b56b0f45ab9f1ce975cc6a42d
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:
NFLips

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-13
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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.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 {}
}

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ERC721Tradable.sol



pragma solidity ^0.8.0;





contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

abstract contract ERC721Tradable is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private _tokenIdCounter;

    address proxyRegistryAddress;
    address factoryAddress;
    bool public paused = false;
    string public baseURI;
    string public baseExtension;
    uint256 public maxSupply = 10000;


    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        string memory _initBaseURI,
        string memory _initBaseExtension
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        setBaseURI(_initBaseURI);
        baseExtension = _initBaseExtension;
        _tokenIdCounter.increment(); // Start Collection at Token ID 1
    }

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

    // public
    function factoryMint(address _toAddress) public {
        require(!paused, "Minting is paused");
        require(factoryAddress == _msgSender(), "Caller is not the factory!");
        require(totalSupply() < maxSupply, "Minting would exceed max supply");
        
        _safeMint(_toAddress, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), baseExtension))
            : "";
    }

    function tokensOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    // only owner
    function setFactoryAddress(address _factoryAddress) public onlyOwner {
        factoryAddress = _factoryAddress;
    }

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

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

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

    function renounceOwnership() public view override onlyOwner {
        revert("Not executeable");
    }
    
    // Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
    function isApprovedForAll(address owner, address operator) override public view returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }
}
// File: contracts/NFLips.sol



pragma solidity ^0.8.0;


contract NFLips is ERC721Tradable {
  string private nftName = "NFLips";
  string private nftSymbol = "NFLIPS";
  string private initBaseURI = "https://lips.nflipsmedia.art/metadata/";
  string private initBaseExtension = ".json";
  address private setProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; //OS Mainnet


  constructor() ERC721Tradable(nftName, nftSymbol, setProxyRegistryAddress, initBaseURI, initBaseExtension) { }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAddress","type":"address"}],"name":"factoryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_factoryAddress","type":"address"}],"name":"setFactoryAddress","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

600d805460ff60a01b1916905561271060105560c060405260066080819052654e464c69707360d01b60a09081526200003c9160119190620004de565b50604080518082019091526006808252654e464c49505360d01b60209092019182526200006c91601291620004de565b50604051806060016040528060268152602001620026f26026913980516200009d91601391602090910190620004de565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000cc91601491620004de565b50601580546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c11790553480156200010057600080fd5b5060118054620001109062000584565b80601f01602080910402602001604051908101604052809291908181526020018280546200013e9062000584565b80156200018f5780601f1062000163576101008083540402835291602001916200018f565b820191906000526020600020905b8154815290600101906020018083116200017157829003601f168201915b505050505060128054620001a39062000584565b80601f0160208091040260200160405190810160405280929190818152602001828054620001d19062000584565b8015620002225780601f10620001f65761010080835404028352916020019162000222565b820191906000526020600020905b8154815290600101906020018083116200020457829003601f168201915b5050601554601380546001600160a01b039092169450925062000246915062000584565b80601f0160208091040260200160405190810160405280929190818152602001828054620002749062000584565b8015620002c55780601f106200029957610100808354040283529160200191620002c5565b820191906000526020600020905b815481529060010190602001808311620002a757829003601f168201915b505050505060148054620002d99062000584565b80601f0160208091040260200160405190810160405280929190818152602001828054620003079062000584565b8015620003585780601f106200032c5761010080835404028352916020019162000358565b820191906000526020600020905b8154815290600101906020018083116200033a57829003601f168201915b505087518893508792506200037691506000906020850190620004de565b5080516200038c906001906020840190620004de565b505050620003a9620003a36200040760201b60201c565b6200040b565b600c80546001600160a01b0319166001600160a01b038516179055620003cf826200045d565b8051620003e490600f906020840190620004de565b50620003fc600b620004d560201b62000ff91760201c565b5050505050620005c1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620004bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620004d190600e906020840190620004de565b5050565b80546001019055565b828054620004ec9062000584565b90600052602060002090601f0160209004810192826200051057600085556200055b565b82601f106200052b57805160ff19168380011785556200055b565b828001600101855582156200055b579182015b828111156200055b5782518255916020019190600101906200053e565b50620005699291506200056d565b5090565b5b808211156200056957600081556001016200056e565b600181811c908216806200059957607f821691505b60208210811415620005bb57634e487b7160e01b600052602260045260246000fd5b50919050565b61212180620005d16000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063d5abeb0111610071578063d5abeb01146103bf578063da3ef23f146103c8578063e985e9c5146103db578063f2fde38b146103ee57600080fd5b8063a22cb4651461037e578063b88d4fde14610391578063c6682862146103a4578063c87b56dd146103ac57600080fd5b806383c17c55116100de57806383c17c55146103325780638462151c146103455780638da5cb5b1461036557806395d89b411461037657600080fd5b80636c0360eb1461030f57806370a0823114610317578063715018a61461032a57600080fd5b806323b872dd116101715780634f6ccce71161014b5780634f6ccce7146102c257806355f804b3146102d55780635c975abb146102e85780636352211e146102fc57600080fd5b806323b872dd146102895780632f745c591461029c57806342842e0e146102af57600080fd5b806306fdde03116101ad57806306fdde0314610224578063081812fc14610239578063095ea7b31461026457806318160ddd1461027757600080fd5b806301ffc9a7146101d457806302329a29146101fc57806306aba61214610211575b600080fd5b6101e76101e2366004611a5c565b610401565b60405190151581526020015b60405180910390f35b61020f61020a366004611a8e565b61042c565b005b61020f61021f366004611abe565b61047d565b61022c61059b565b6040516101f39190611b33565b61024c610247366004611b46565b61062d565b6040516001600160a01b0390911681526020016101f3565b61020f610272366004611b5f565b6106c2565b6008545b6040519081526020016101f3565b61020f610297366004611b8b565b6107d8565b61027b6102aa366004611b5f565b610809565b61020f6102bd366004611b8b565b61089f565b61027b6102d0366004611b46565b6108ba565b61020f6102e3366004611c58565b61094d565b600d546101e790600160a01b900460ff1681565b61024c61030a366004611b46565b61098e565b61022c610a05565b61027b610325366004611abe565b610a93565b61020f610b1a565b61020f610340366004611abe565b610b7e565b610358610353366004611abe565b610bca565b6040516101f39190611ca1565b600a546001600160a01b031661024c565b61022c610c6c565b61020f61038c366004611ce5565b610c7b565b61020f61039f366004611d1a565b610d40565b61022c610d78565b61022c6103ba366004611b46565b610d85565b61027b60105481565b61020f6103d6366004611c58565b610e63565b6101e76103e9366004611d9a565b610ea0565b61020f6103fc366004611abe565b610f61565b60006001600160e01b0319821663780e9d6360e01b1480610426575061042682611002565b92915050565b600a546001600160a01b0316331461045f5760405162461bcd60e51b815260040161045690611dd3565b60405180910390fd5b600d8054911515600160a01b0260ff60a01b19909216919091179055565b600d54600160a01b900460ff16156104cb5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610456565b600d546001600160a01b031633146105255760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f742074686520666163746f7279210000000000006044820152606401610456565b601054600854106105785760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c79006044820152606401610456565b61058a81610585600b5490565b611052565b610598600b80546001019055565b50565b6060600080546105aa90611e08565b80601f01602080910402602001604051908101604052809291908181526020018280546105d690611e08565b80156106235780601f106105f857610100808354040283529160200191610623565b820191906000526020600020905b81548152906001019060200180831161060657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610456565b506000908152600460205260409020546001600160a01b031690565b60006106cd8261098e565b9050806001600160a01b0316836001600160a01b0316141561073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610456565b336001600160a01b038216148061075757506107578133610ea0565b6107c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610456565b6107d3838361106c565b505050565b6107e233826110da565b6107fe5760405162461bcd60e51b815260040161045690611e43565b6107d38383836111a9565b600061081483610a93565b82106108765760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610456565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250610d40565b60006108c560085490565b82106109285760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610456565b6008828154811061093b5761093b611e94565b90600052602060002001549050919050565b600a546001600160a01b031633146109775760405162461bcd60e51b815260040161045690611dd3565b805161098a90600e9060208401906119ad565b5050565b6000818152600260205260408120546001600160a01b0316806104265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610456565b600e8054610a1290611e08565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90611e08565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b505050505081565b60006001600160a01b038216610afe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610456565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b445760405162461bcd60e51b815260040161045690611dd3565b60405162461bcd60e51b815260206004820152600f60248201526e4e6f74206578656375746561626c6560881b6044820152606401610456565b600a546001600160a01b03163314610ba85760405162461bcd60e51b815260040161045690611dd3565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60606000610bd783610a93565b905060008167ffffffffffffffff811115610bf457610bf4611bcc565b604051908082528060200260200182016040528015610c1d578160200160208202803683370190505b50905060005b82811015610c6457610c358582610809565b828281518110610c4757610c47611e94565b602090810291909101015280610c5c81611ec0565b915050610c23565b509392505050565b6060600180546105aa90611e08565b6001600160a01b038216331415610cd45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610456565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d4a33836110da565b610d665760405162461bcd60e51b815260040161045690611e43565b610d7284848484611354565b50505050565b600f8054610a1290611e08565b6000818152600260205260409020546060906001600160a01b0316610e045760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610456565b6000610e0e611387565b90506000815111610e2e5760405180602001604052806000815250610e5c565b80610e3884611396565b600f604051602001610e4c93929190611edb565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610e8d5760405162461bcd60e51b815260040161045690611dd3565b805161098a90600f9060208401906119ad565b600c5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015610ef2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f169190611f9f565b6001600160a01b03161415610f2f576001915050610426565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600a546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161045690611dd3565b6001600160a01b038116610ff05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610456565b61059881611494565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061103357506001600160e01b03198216635b5e139f60e01b145b8061042657506301ffc9a760e01b6001600160e01b0319831614610426565b61098a8282604051806020016040528060008152506114e6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110a18261098e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610456565b600061115e8361098e565b9050806001600160a01b0316846001600160a01b031614806111995750836001600160a01b031661118e8461062d565b6001600160a01b0316145b80610f595750610f598185610ea0565b826001600160a01b03166111bc8261098e565b6001600160a01b0316146112245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610456565b6001600160a01b0382166112865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610456565b611291838383611519565b61129c60008261106c565b6001600160a01b03831660009081526003602052604081208054600192906112c5908490611fbc565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f3908490611fd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61135f8484846111a9565b61136b848484846115d1565b610d725760405162461bcd60e51b815260040161045690611feb565b6060600e80546105aa90611e08565b6060816113ba5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113e457806113ce81611ec0565b91506113dd9050600a83612053565b91506113be565b60008167ffffffffffffffff8111156113ff576113ff611bcc565b6040519080825280601f01601f191660200182016040528015611429576020820181803683370190505b5090505b8415610f595761143e600183611fbc565b915061144b600a86612067565b611456906030611fd3565b60f81b81838151811061146b5761146b611e94565b60200101906001600160f81b031916908160001a90535061148d600a86612053565b945061142d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114f083836116cf565b6114fd60008484846115d1565b6107d35760405162461bcd60e51b815260040161045690611feb565b6001600160a01b0383166115745761156f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611597565b816001600160a01b0316836001600160a01b03161461159757611597838261181d565b6001600160a01b0382166115ae576107d3816118ba565b826001600160a01b0316826001600160a01b0316146107d3576107d38282611969565b60006001600160a01b0384163b156116c457604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061161590339089908890889060040161207b565b6020604051808303816000875af1925050508015611650575060408051601f3d908101601f1916820190925261164d918101906120b8565b60015b6116aa573d80801561167e576040519150601f19603f3d011682016040523d82523d6000602084013e611683565b606091505b5080516116a25760405162461bcd60e51b815260040161045690611feb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f59565b506001949350505050565b6001600160a01b0382166117255760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610456565b6000818152600260205260409020546001600160a01b03161561178a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610456565b61179660008383611519565b6001600160a01b03821660009081526003602052604081208054600192906117bf908490611fd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161182a84610a93565b6118349190611fbc565b600083815260076020526040902054909150808214611887576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118cc90600190611fbc565b600083815260096020526040812054600880549394509092849081106118f4576118f4611e94565b90600052602060002001549050806008838154811061191557611915611e94565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061194d5761194d6120d5565b6001900381819060005260206000200160009055905550505050565b600061197483610a93565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546119b990611e08565b90600052602060002090601f0160209004810192826119db5760008555611a21565b82601f106119f457805160ff1916838001178555611a21565b82800160010185558215611a21579182015b82811115611a21578251825591602001919060010190611a06565b50611a2d929150611a31565b5090565b5b80821115611a2d5760008155600101611a32565b6001600160e01b03198116811461059857600080fd5b600060208284031215611a6e57600080fd5b8135610e5c81611a46565b80358015158114611a8957600080fd5b919050565b600060208284031215611aa057600080fd5b610e5c82611a79565b6001600160a01b038116811461059857600080fd5b600060208284031215611ad057600080fd5b8135610e5c81611aa9565b60005b83811015611af6578181015183820152602001611ade565b83811115610d725750506000910152565b60008151808452611b1f816020860160208601611adb565b601f01601f19169290920160200192915050565b602081526000610e5c6020830184611b07565b600060208284031215611b5857600080fd5b5035919050565b60008060408385031215611b7257600080fd5b8235611b7d81611aa9565b946020939093013593505050565b600080600060608486031215611ba057600080fd5b8335611bab81611aa9565b92506020840135611bbb81611aa9565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bfd57611bfd611bcc565b604051601f8501601f19908116603f01168101908282118183101715611c2557611c25611bcc565b81604052809350858152868686011115611c3e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c6a57600080fd5b813567ffffffffffffffff811115611c8157600080fd5b8201601f81018413611c9257600080fd5b610f5984823560208401611be2565b6020808252825182820181905260009190848201906040850190845b81811015611cd957835183529284019291840191600101611cbd565b50909695505050505050565b60008060408385031215611cf857600080fd5b8235611d0381611aa9565b9150611d1160208401611a79565b90509250929050565b60008060008060808587031215611d3057600080fd5b8435611d3b81611aa9565b93506020850135611d4b81611aa9565b925060408501359150606085013567ffffffffffffffff811115611d6e57600080fd5b8501601f81018713611d7f57600080fd5b611d8e87823560208401611be2565b91505092959194509250565b60008060408385031215611dad57600080fd5b8235611db881611aa9565b91506020830135611dc881611aa9565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e1c57607f821691505b60208210811415611e3d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ed457611ed4611eaa565b5060010190565b600084516020611eee8285838a01611adb565b855191840191611f018184848a01611adb565b8554920191600090600181811c9080831680611f1e57607f831692505b858310811415611f3c57634e487b7160e01b85526022600452602485fd5b808015611f505760018114611f6157611f8e565b60ff19851688528388019550611f8e565b60008b81526020902060005b85811015611f865781548a820152908401908801611f6d565b505083880195505b50939b9a5050505050505050505050565b600060208284031215611fb157600080fd5b8151610e5c81611aa9565b600082821015611fce57611fce611eaa565b500390565b60008219821115611fe657611fe6611eaa565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120625761206261203d565b500490565b6000826120765761207661203d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ae90830184611b07565b9695505050505050565b6000602082840312156120ca57600080fd5b8151610e5c81611a46565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208cfebf2294750d93f6950c8fe2394c5dca6912986f8b539ebd888192449930a964736f6c634300080a003368747470733a2f2f6c6970732e6e666c6970736d656469612e6172742f6d657461646174612f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063d5abeb0111610071578063d5abeb01146103bf578063da3ef23f146103c8578063e985e9c5146103db578063f2fde38b146103ee57600080fd5b8063a22cb4651461037e578063b88d4fde14610391578063c6682862146103a4578063c87b56dd146103ac57600080fd5b806383c17c55116100de57806383c17c55146103325780638462151c146103455780638da5cb5b1461036557806395d89b411461037657600080fd5b80636c0360eb1461030f57806370a0823114610317578063715018a61461032a57600080fd5b806323b872dd116101715780634f6ccce71161014b5780634f6ccce7146102c257806355f804b3146102d55780635c975abb146102e85780636352211e146102fc57600080fd5b806323b872dd146102895780632f745c591461029c57806342842e0e146102af57600080fd5b806306fdde03116101ad57806306fdde0314610224578063081812fc14610239578063095ea7b31461026457806318160ddd1461027757600080fd5b806301ffc9a7146101d457806302329a29146101fc57806306aba61214610211575b600080fd5b6101e76101e2366004611a5c565b610401565b60405190151581526020015b60405180910390f35b61020f61020a366004611a8e565b61042c565b005b61020f61021f366004611abe565b61047d565b61022c61059b565b6040516101f39190611b33565b61024c610247366004611b46565b61062d565b6040516001600160a01b0390911681526020016101f3565b61020f610272366004611b5f565b6106c2565b6008545b6040519081526020016101f3565b61020f610297366004611b8b565b6107d8565b61027b6102aa366004611b5f565b610809565b61020f6102bd366004611b8b565b61089f565b61027b6102d0366004611b46565b6108ba565b61020f6102e3366004611c58565b61094d565b600d546101e790600160a01b900460ff1681565b61024c61030a366004611b46565b61098e565b61022c610a05565b61027b610325366004611abe565b610a93565b61020f610b1a565b61020f610340366004611abe565b610b7e565b610358610353366004611abe565b610bca565b6040516101f39190611ca1565b600a546001600160a01b031661024c565b61022c610c6c565b61020f61038c366004611ce5565b610c7b565b61020f61039f366004611d1a565b610d40565b61022c610d78565b61022c6103ba366004611b46565b610d85565b61027b60105481565b61020f6103d6366004611c58565b610e63565b6101e76103e9366004611d9a565b610ea0565b61020f6103fc366004611abe565b610f61565b60006001600160e01b0319821663780e9d6360e01b1480610426575061042682611002565b92915050565b600a546001600160a01b0316331461045f5760405162461bcd60e51b815260040161045690611dd3565b60405180910390fd5b600d8054911515600160a01b0260ff60a01b19909216919091179055565b600d54600160a01b900460ff16156104cb5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b6044820152606401610456565b600d546001600160a01b031633146105255760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f742074686520666163746f7279210000000000006044820152606401610456565b601054600854106105785760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c79006044820152606401610456565b61058a81610585600b5490565b611052565b610598600b80546001019055565b50565b6060600080546105aa90611e08565b80601f01602080910402602001604051908101604052809291908181526020018280546105d690611e08565b80156106235780601f106105f857610100808354040283529160200191610623565b820191906000526020600020905b81548152906001019060200180831161060657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610456565b506000908152600460205260409020546001600160a01b031690565b60006106cd8261098e565b9050806001600160a01b0316836001600160a01b0316141561073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610456565b336001600160a01b038216148061075757506107578133610ea0565b6107c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610456565b6107d3838361106c565b505050565b6107e233826110da565b6107fe5760405162461bcd60e51b815260040161045690611e43565b6107d38383836111a9565b600061081483610a93565b82106108765760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610456565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250610d40565b60006108c560085490565b82106109285760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610456565b6008828154811061093b5761093b611e94565b90600052602060002001549050919050565b600a546001600160a01b031633146109775760405162461bcd60e51b815260040161045690611dd3565b805161098a90600e9060208401906119ad565b5050565b6000818152600260205260408120546001600160a01b0316806104265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610456565b600e8054610a1290611e08565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90611e08565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b505050505081565b60006001600160a01b038216610afe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610456565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b445760405162461bcd60e51b815260040161045690611dd3565b60405162461bcd60e51b815260206004820152600f60248201526e4e6f74206578656375746561626c6560881b6044820152606401610456565b600a546001600160a01b03163314610ba85760405162461bcd60e51b815260040161045690611dd3565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60606000610bd783610a93565b905060008167ffffffffffffffff811115610bf457610bf4611bcc565b604051908082528060200260200182016040528015610c1d578160200160208202803683370190505b50905060005b82811015610c6457610c358582610809565b828281518110610c4757610c47611e94565b602090810291909101015280610c5c81611ec0565b915050610c23565b509392505050565b6060600180546105aa90611e08565b6001600160a01b038216331415610cd45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610456565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d4a33836110da565b610d665760405162461bcd60e51b815260040161045690611e43565b610d7284848484611354565b50505050565b600f8054610a1290611e08565b6000818152600260205260409020546060906001600160a01b0316610e045760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610456565b6000610e0e611387565b90506000815111610e2e5760405180602001604052806000815250610e5c565b80610e3884611396565b600f604051602001610e4c93929190611edb565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610e8d5760405162461bcd60e51b815260040161045690611dd3565b805161098a90600f9060208401906119ad565b600c5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015610ef2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f169190611f9f565b6001600160a01b03161415610f2f576001915050610426565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600a546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161045690611dd3565b6001600160a01b038116610ff05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610456565b61059881611494565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061103357506001600160e01b03198216635b5e139f60e01b145b8061042657506301ffc9a760e01b6001600160e01b0319831614610426565b61098a8282604051806020016040528060008152506114e6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110a18261098e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610456565b600061115e8361098e565b9050806001600160a01b0316846001600160a01b031614806111995750836001600160a01b031661118e8461062d565b6001600160a01b0316145b80610f595750610f598185610ea0565b826001600160a01b03166111bc8261098e565b6001600160a01b0316146112245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610456565b6001600160a01b0382166112865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610456565b611291838383611519565b61129c60008261106c565b6001600160a01b03831660009081526003602052604081208054600192906112c5908490611fbc565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f3908490611fd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61135f8484846111a9565b61136b848484846115d1565b610d725760405162461bcd60e51b815260040161045690611feb565b6060600e80546105aa90611e08565b6060816113ba5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113e457806113ce81611ec0565b91506113dd9050600a83612053565b91506113be565b60008167ffffffffffffffff8111156113ff576113ff611bcc565b6040519080825280601f01601f191660200182016040528015611429576020820181803683370190505b5090505b8415610f595761143e600183611fbc565b915061144b600a86612067565b611456906030611fd3565b60f81b81838151811061146b5761146b611e94565b60200101906001600160f81b031916908160001a90535061148d600a86612053565b945061142d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114f083836116cf565b6114fd60008484846115d1565b6107d35760405162461bcd60e51b815260040161045690611feb565b6001600160a01b0383166115745761156f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611597565b816001600160a01b0316836001600160a01b03161461159757611597838261181d565b6001600160a01b0382166115ae576107d3816118ba565b826001600160a01b0316826001600160a01b0316146107d3576107d38282611969565b60006001600160a01b0384163b156116c457604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061161590339089908890889060040161207b565b6020604051808303816000875af1925050508015611650575060408051601f3d908101601f1916820190925261164d918101906120b8565b60015b6116aa573d80801561167e576040519150601f19603f3d011682016040523d82523d6000602084013e611683565b606091505b5080516116a25760405162461bcd60e51b815260040161045690611feb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f59565b506001949350505050565b6001600160a01b0382166117255760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610456565b6000818152600260205260409020546001600160a01b03161561178a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610456565b61179660008383611519565b6001600160a01b03821660009081526003602052604081208054600192906117bf908490611fd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161182a84610a93565b6118349190611fbc565b600083815260076020526040902054909150808214611887576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118cc90600190611fbc565b600083815260096020526040812054600880549394509092849081106118f4576118f4611e94565b90600052602060002001549050806008838154811061191557611915611e94565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061194d5761194d6120d5565b6001900381819060005260206000200160009055905550505050565b600061197483610a93565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546119b990611e08565b90600052602060002090601f0160209004810192826119db5760008555611a21565b82601f106119f457805160ff1916838001178555611a21565b82800160010185558215611a21579182015b82811115611a21578251825591602001919060010190611a06565b50611a2d929150611a31565b5090565b5b80821115611a2d5760008155600101611a32565b6001600160e01b03198116811461059857600080fd5b600060208284031215611a6e57600080fd5b8135610e5c81611a46565b80358015158114611a8957600080fd5b919050565b600060208284031215611aa057600080fd5b610e5c82611a79565b6001600160a01b038116811461059857600080fd5b600060208284031215611ad057600080fd5b8135610e5c81611aa9565b60005b83811015611af6578181015183820152602001611ade565b83811115610d725750506000910152565b60008151808452611b1f816020860160208601611adb565b601f01601f19169290920160200192915050565b602081526000610e5c6020830184611b07565b600060208284031215611b5857600080fd5b5035919050565b60008060408385031215611b7257600080fd5b8235611b7d81611aa9565b946020939093013593505050565b600080600060608486031215611ba057600080fd5b8335611bab81611aa9565b92506020840135611bbb81611aa9565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bfd57611bfd611bcc565b604051601f8501601f19908116603f01168101908282118183101715611c2557611c25611bcc565b81604052809350858152868686011115611c3e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c6a57600080fd5b813567ffffffffffffffff811115611c8157600080fd5b8201601f81018413611c9257600080fd5b610f5984823560208401611be2565b6020808252825182820181905260009190848201906040850190845b81811015611cd957835183529284019291840191600101611cbd565b50909695505050505050565b60008060408385031215611cf857600080fd5b8235611d0381611aa9565b9150611d1160208401611a79565b90509250929050565b60008060008060808587031215611d3057600080fd5b8435611d3b81611aa9565b93506020850135611d4b81611aa9565b925060408501359150606085013567ffffffffffffffff811115611d6e57600080fd5b8501601f81018713611d7f57600080fd5b611d8e87823560208401611be2565b91505092959194509250565b60008060408385031215611dad57600080fd5b8235611db881611aa9565b91506020830135611dc881611aa9565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e1c57607f821691505b60208210811415611e3d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ed457611ed4611eaa565b5060010190565b600084516020611eee8285838a01611adb565b855191840191611f018184848a01611adb565b8554920191600090600181811c9080831680611f1e57607f831692505b858310811415611f3c57634e487b7160e01b85526022600452602485fd5b808015611f505760018114611f6157611f8e565b60ff19851688528388019550611f8e565b60008b81526020902060005b85811015611f865781548a820152908401908801611f6d565b505083880195505b50939b9a5050505050505050505050565b600060208284031215611fb157600080fd5b8151610e5c81611aa9565b600082821015611fce57611fce611eaa565b500390565b60008219821115611fe657611fe6611eaa565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120625761206261203d565b500490565b6000826120765761207661203d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ae90830184611b07565b9695505050505050565b6000602082840312156120ca57600080fd5b8151610e5c81611a46565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208cfebf2294750d93f6950c8fe2394c5dca6912986f8b539ebd888192449930a964736f6c634300080a0033

Deployed Bytecode Sourcemap

48058:456:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38377:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38377:224:0;;;;;;;;47276:79;;;;;;:::i;:::-;;:::i;:::-;;45725:371;;;;;;:::i;:::-;;:::i;26269:100::-;;;:::i;:::-;;;;;;;:::i;27828:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2430:32:1;;;2412:51;;2400:2;2385:18;27828:221:0;2266:203:1;27351:411:0;;;;;;:::i;:::-;;:::i;39017:113::-;39105:10;:17;39017:113;;;2940:25:1;;;2928:2;2913:18;39017:113:0;2794:177:1;28718:339:0;;;;;;:::i;:::-;;:::i;38685:256::-;;;;;;:::i;:::-;;:::i;29128:185::-;;;;;;:::i;:::-;;:::i;39207:233::-;;;;;;:::i;:::-;;:::i;47028:104::-;;;;;;:::i;:::-;;:::i;44992:26::-;;;;;-1:-1:-1;;;44992:26:0;;;;;;25963:239;;;;;;:::i;:::-;;:::i;45025:21::-;;;:::i;25693:208::-;;;;;;:::i;:::-;;:::i;47363:104::-;;;:::i;46900:120::-;;;;;;:::i;:::-;;:::i;46515:358::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5317:87::-;5390:6;;-1:-1:-1;;;;;5390:6:0;5317:87;;26438:104;;;:::i;28121:295::-;;;;;;:::i;:::-;;:::i;29384:328::-;;;;;;:::i;:::-;;:::i;45053:27::-;;;:::i;46104:403::-;;;;;;:::i;:::-;;:::i;45087:32::-;;;;;;47140:128;;;;;;:::i;:::-;;:::i;47585:402::-;;;;;;:::i;:::-;;:::i;6217:192::-;;;;;;:::i;:::-;;:::i;38377:224::-;38479:4;-1:-1:-1;;;;;;38503:50:0;;-1:-1:-1;;;38503:50:0;;:90;;;38557:36;38581:11;38557:23;:36::i;:::-;38496:97;38377:224;-1:-1:-1;;38377:224:0:o;47276:79::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;;;;;;;;;47332:6:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;47332:15:0::1;-1:-1:-1::0;;;;47332:15:0;;::::1;::::0;;;::::1;::::0;;47276:79::o;45725:371::-;45793:6;;-1:-1:-1;;;45793:6:0;;;;45792:7;45784:37;;;;-1:-1:-1;;;45784:37:0;;7375:2:1;45784:37:0;;;7357:21:1;7414:2;7394:18;;;7387:30;-1:-1:-1;;;7433:18:1;;;7426:47;7490:18;;45784:37:0;7173:341:1;45784:37:0;45840:14;;-1:-1:-1;;;;;45840:14:0;4185:10;45840:30;45832:69;;;;-1:-1:-1;;;45832:69:0;;7721:2:1;45832:69:0;;;7703:21:1;7760:2;7740:18;;;7733:30;7799:28;7779:18;;;7772:56;7845:18;;45832:69:0;7519:350:1;45832:69:0;45936:9;;39105:10;:17;45920:25;45912:69;;;;-1:-1:-1;;;45912:69:0;;8076:2:1;45912:69:0;;;8058:21:1;8115:2;8095:18;;;8088:30;8154:33;8134:18;;;8127:61;8205:18;;45912:69:0;7874:355:1;45912:69:0;46002:48;46012:10;46024:25;:15;909:14;;817:114;46024:25;46002:9;:48::i;:::-;46061:27;:15;1028:19;;1046:1;1028:19;;;939:127;46061:27;45725:371;:::o;26269:100::-;26323:13;26356:5;26349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26269:100;:::o;27828:221::-;27904:7;31311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31311:16:0;27924:73;;;;-1:-1:-1;;;27924:73:0;;8821:2:1;27924:73:0;;;8803:21:1;8860:2;8840:18;;;8833:30;8899:34;8879:18;;;8872:62;-1:-1:-1;;;8950:18:1;;;8943:42;9002:19;;27924:73:0;8619:408:1;27924:73:0;-1:-1:-1;28017:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28017:24:0;;27828:221::o;27351:411::-;27432:13;27448:23;27463:7;27448:14;:23::i;:::-;27432:39;;27496:5;-1:-1:-1;;;;;27490:11:0;:2;-1:-1:-1;;;;;27490:11:0;;;27482:57;;;;-1:-1:-1;;;27482:57:0;;9234:2:1;27482:57:0;;;9216:21:1;9273:2;9253:18;;;9246:30;9312:34;9292:18;;;9285:62;-1:-1:-1;;;9363:18:1;;;9356:31;9404:19;;27482:57:0;9032:397:1;27482:57:0;4185:10;-1:-1:-1;;;;;27574:21:0;;;;:62;;-1:-1:-1;27599:37:0;27616:5;4185:10;47585:402;:::i;27599:37::-;27552:168;;;;-1:-1:-1;;;27552:168:0;;9636:2:1;27552:168:0;;;9618:21:1;9675:2;9655:18;;;9648:30;9714:34;9694:18;;;9687:62;9785:26;9765:18;;;9758:54;9829:19;;27552:168:0;9434:420:1;27552:168:0;27733:21;27742:2;27746:7;27733:8;:21::i;:::-;27421:341;27351:411;;:::o;28718:339::-;28913:41;4185:10;28946:7;28913:18;:41::i;:::-;28905:103;;;;-1:-1:-1;;;28905:103:0;;;;;;;:::i;:::-;29021:28;29031:4;29037:2;29041:7;29021:9;:28::i;38685:256::-;38782:7;38818:23;38835:5;38818:16;:23::i;:::-;38810:5;:31;38802:87;;;;-1:-1:-1;;;38802:87:0;;10479:2:1;38802:87:0;;;10461:21:1;10518:2;10498:18;;;10491:30;10557:34;10537:18;;;10530:62;-1:-1:-1;;;10608:18:1;;;10601:41;10659:19;;38802:87:0;10277:407:1;38802:87:0;-1:-1:-1;;;;;;38907:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38685:256::o;29128:185::-;29266:39;29283:4;29289:2;29293:7;29266:39;;;;;;;;;;;;:16;:39::i;39207:233::-;39282:7;39318:30;39105:10;:17;;39017:113;39318:30;39310:5;:38;39302:95;;;;-1:-1:-1;;;39302:95:0;;10891:2:1;39302:95:0;;;10873:21:1;10930:2;10910:18;;;10903:30;10969:34;10949:18;;;10942:62;-1:-1:-1;;;11020:18:1;;;11013:42;11072:19;;39302:95:0;10689:408:1;39302:95:0;39415:10;39426:5;39415:17;;;;;;;;:::i;:::-;;;;;;;;;39408:24;;39207:233;;;:::o;47028:104::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;47103:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47028:104:::0;:::o;25963:239::-;26035:7;26071:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26071:16:0;26106:19;26098:73;;;;-1:-1:-1;;;26098:73:0;;11436:2:1;26098:73:0;;;11418:21:1;11475:2;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;-1:-1:-1;;;11565:18:1;;;11558:39;11614:19;;26098:73:0;11234:405:1;45025:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25693:208::-;25765:7;-1:-1:-1;;;;;25793:19:0;;25785:74;;;;-1:-1:-1;;;25785:74:0;;11846:2:1;25785:74:0;;;11828:21:1;11885:2;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;-1:-1:-1;;;11975:18:1;;;11968:40;12025:19;;25785:74:0;11644:406:1;25785:74:0;-1:-1:-1;;;;;;25877:16:0;;;;;:9;:16;;;;;;;25693:208::o;47363:104::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;47434:25:::1;::::0;-1:-1:-1;;;47434:25:0;;12257:2:1;47434:25:0::1;::::0;::::1;12239:21:1::0;12296:2;12276:18;;;12269:30;-1:-1:-1;;;12315:18:1;;;12308:45;12370:18;;47434:25:0::1;12055:339:1::0;46900:120:0;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;46980:14:::1;:32:::0;;-1:-1:-1;;;;;;46980:32:0::1;-1:-1:-1::0;;;;;46980:32:0;;;::::1;::::0;;;::::1;::::0;;46900:120::o;46515:358::-;46575:16;46604:23;46630:17;46640:6;46630:9;:17::i;:::-;46604:43;;46658:25;46700:15;46686:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46686:30:0;;46658:58;;46732:9;46727:113;46747:15;46743:1;:19;46727:113;;;46798:30;46818:6;46826:1;46798:19;:30::i;:::-;46784:8;46793:1;46784:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46764:3;;;;:::i;:::-;;;;46727:113;;;-1:-1:-1;46857:8:0;46515:358;-1:-1:-1;;;46515:358:0:o;26438:104::-;26494:13;26527:7;26520:14;;;;;:::i;28121:295::-;-1:-1:-1;;;;;28224:24:0;;4185:10;28224:24;;28216:62;;;;-1:-1:-1;;;28216:62:0;;12873:2:1;28216:62:0;;;12855:21:1;12912:2;12892:18;;;12885:30;12951:27;12931:18;;;12924:55;12996:18;;28216:62:0;12671:349:1;28216:62:0;4185:10;28291:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28291:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28291:53:0;;;;;;;;;;28360:48;;540:41:1;;;28291:42:0;;4185:10;28360:48;;513:18:1;28360:48:0;;;;;;;28121:295;;:::o;29384:328::-;29559:41;4185:10;29592:7;29559:18;:41::i;:::-;29551:103;;;;-1:-1:-1;;;29551:103:0;;;;;;;:::i;:::-;29665:39;29679:4;29685:2;29689:7;29698:5;29665:13;:39::i;:::-;29384:328;;;;:::o;45053:27::-;;;;;;;:::i;46104:403::-;31287:4;31311:16;;;:7;:16;;;;;;46178:13;;-1:-1:-1;;;;;31311:16:0;46204:77;;;;-1:-1:-1;;;46204:77:0;;13227:2:1;46204:77:0;;;13209:21:1;13266:2;13246:18;;;13239:30;13305:34;13285:18;;;13278:62;-1:-1:-1;;;13356:18:1;;;13349:45;13411:19;;46204:77:0;13025:411:1;46204:77:0;46298:28;46329:10;:8;:10::i;:::-;46298:41;;46388:1;46363:14;46357:28;:32;:142;;;;;;;;;;;;;;;;;46429:14;46445:19;:8;:17;:19::i;:::-;46466:13;46412:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46357:142;46350:149;46104:403;-1:-1:-1;;;46104:403:0:o;47140:128::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;47227:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47585:402::-:0;47798:20;;47842:28;;-1:-1:-1;;;47842:28:0;;-1:-1:-1;;;;;2430:32:1;;;47842:28:0;;;2412:51:1;47674:4:0;;47798:20;;;47834:49;;;;47798:20;;47842:21;;2385:18:1;;47842:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47834:49:0;;47830:93;;;47907:4;47900:11;;;;;47830:93;-1:-1:-1;;;;;28608:25:0;;;28584:4;28608:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47940:39;47933:46;47585:402;-1:-1:-1;;;;47585:402:0:o;6217:192::-;5390:6;;-1:-1:-1;;;;;5390:6:0;4185:10;5537:23;5529:68;;;;-1:-1:-1;;;5529:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6306:22:0;::::1;6298:73;;;::::0;-1:-1:-1;;;6298:73:0;;15586:2:1;6298:73:0::1;::::0;::::1;15568:21:1::0;15625:2;15605:18;;;15598:30;15664:34;15644:18;;;15637:62;-1:-1:-1;;;15715:18:1;;;15708:36;15761:19;;6298:73:0::1;15384:402:1::0;6298:73:0::1;6382:19;6392:8;6382:9;:19::i;939:127::-:0;1028:19;;1046:1;1028:19;;;939:127::o;25324:305::-;25426:4;-1:-1:-1;;;;;;25463:40:0;;-1:-1:-1;;;25463:40:0;;:105;;-1:-1:-1;;;;;;;25520:48:0;;-1:-1:-1;;;25520:48:0;25463:105;:158;;;-1:-1:-1;;;;;;;;;;17412:40:0;;;25585:36;17303:157;32206:110;32282:26;32292:2;32296:7;32282:26;;;;;;;;;;;;:9;:26::i;35204:174::-;35279:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35279:29:0;-1:-1:-1;;;;;35279:29:0;;;;;;;;:24;;35333:23;35279:24;35333:14;:23::i;:::-;-1:-1:-1;;;;;35324:46:0;;;;;;;;;;;35204:174;;:::o;31516:348::-;31609:4;31311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31311:16:0;31626:73;;;;-1:-1:-1;;;31626:73:0;;15993:2:1;31626:73:0;;;15975:21:1;16032:2;16012:18;;;16005:30;16071:34;16051:18;;;16044:62;-1:-1:-1;;;16122:18:1;;;16115:42;16174:19;;31626:73:0;15791:408:1;31626:73:0;31710:13;31726:23;31741:7;31726:14;:23::i;:::-;31710:39;;31779:5;-1:-1:-1;;;;;31768:16:0;:7;-1:-1:-1;;;;;31768:16:0;;:51;;;;31812:7;-1:-1:-1;;;;;31788:31:0;:20;31800:7;31788:11;:20::i;:::-;-1:-1:-1;;;;;31788:31:0;;31768:51;:87;;;;31823:32;31840:5;31847:7;31823:16;:32::i;34508:578::-;34667:4;-1:-1:-1;;;;;34640:31:0;:23;34655:7;34640:14;:23::i;:::-;-1:-1:-1;;;;;34640:31:0;;34632:85;;;;-1:-1:-1;;;34632:85:0;;16406:2:1;34632:85:0;;;16388:21:1;16445:2;16425:18;;;16418:30;16484:34;16464:18;;;16457:62;-1:-1:-1;;;16535:18:1;;;16528:39;16584:19;;34632:85:0;16204:405:1;34632:85:0;-1:-1:-1;;;;;34736:16:0;;34728:65;;;;-1:-1:-1;;;34728:65:0;;16816:2:1;34728:65:0;;;16798:21:1;16855:2;16835:18;;;16828:30;16894:34;16874:18;;;16867:62;-1:-1:-1;;;16945:18:1;;;16938:34;16989:19;;34728:65:0;16614:400:1;34728:65:0;34806:39;34827:4;34833:2;34837:7;34806:20;:39::i;:::-;34910:29;34927:1;34931:7;34910:8;:29::i;:::-;-1:-1:-1;;;;;34952:15:0;;;;;;:9;:15;;;;;:20;;34971:1;;34952:15;:20;;34971:1;;34952:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34983:13:0;;;;;;:9;:13;;;;;:18;;35000:1;;34983:13;:18;;35000:1;;34983:18;:::i;:::-;;;;-1:-1:-1;;35012:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35012:21:0;-1:-1:-1;;;;;35012:21:0;;;;;;;;;35051:27;;35012:16;;35051:27;;;;;;;34508:578;;;:::o;30594:315::-;30751:28;30761:4;30767:2;30771:7;30751:9;:28::i;:::-;30798:48;30821:4;30827:2;30831:7;30840:5;30798:22;:48::i;:::-;30790:111;;;;-1:-1:-1;;;30790:111:0;;;;;;;:::i;45594:108::-;45654:13;45687:7;45680:14;;;;;:::i;1721:723::-;1777:13;1998:10;1994:53;;-1:-1:-1;;2025:10:0;;;;;;;;;;;;-1:-1:-1;;;2025:10:0;;;;;1721:723::o;1994:53::-;2072:5;2057:12;2113:78;2120:9;;2113:78;;2146:8;;;;:::i;:::-;;-1:-1:-1;2169:10:0;;-1:-1:-1;2177:2:0;2169:10;;:::i;:::-;;;2113:78;;;2201:19;2233:6;2223:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2223:17:0;;2201:39;;2251:154;2258:10;;2251:154;;2285:11;2295:1;2285:11;;:::i;:::-;;-1:-1:-1;2354:10:0;2362:2;2354:5;:10;:::i;:::-;2341:24;;:2;:24;:::i;:::-;2328:39;;2311:6;2318;2311:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2311:56:0;;;;;;;;-1:-1:-1;2382:11:0;2391:2;2382:11;;:::i;:::-;;;2251:154;;6417:173;6492:6;;;-1:-1:-1;;;;;6509:17:0;;;-1:-1:-1;;;;;;6509:17:0;;;;;;;6542:40;;6492:6;;;6509:17;6492:6;;6542:40;;6473:16;;6542:40;6462:128;6417:173;:::o;32543:321::-;32673:18;32679:2;32683:7;32673:5;:18::i;:::-;32724:54;32755:1;32759:2;32763:7;32772:5;32724:22;:54::i;:::-;32702:154;;;;-1:-1:-1;;;32702:154:0;;;;;;;:::i;40053:589::-;-1:-1:-1;;;;;40259:18:0;;40255:187;;40294:40;40326:7;41469:10;:17;;41442:24;;;;:15;:24;;;;;:44;;;41497:24;;;;;;;;;;;;41365:164;40294:40;40255:187;;;40364:2;-1:-1:-1;;;;;40356:10:0;:4;-1:-1:-1;;;;;40356:10:0;;40352:90;;40383:47;40416:4;40422:7;40383:32;:47::i;:::-;-1:-1:-1;;;;;40456:16:0;;40452:183;;40489:45;40526:7;40489:36;:45::i;40452:183::-;40562:4;-1:-1:-1;;;;;40556:10:0;:2;-1:-1:-1;;;;;40556:10:0;;40552:83;;40583:40;40611:2;40615:7;40583:27;:40::i;35943:799::-;36098:4;-1:-1:-1;;;;;36119:13:0;;7686:20;7734:8;36115:620;;36155:72;;-1:-1:-1;;;36155:72:0;;-1:-1:-1;;;;;36155:36:0;;;;;:72;;4185:10;;36206:4;;36212:7;;36221:5;;36155:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36155:72:0;;;;;;;;-1:-1:-1;;36155:72:0;;;;;;;;;;;;:::i;:::-;;;36151:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36397:13:0;;36393:272;;36440:60;;-1:-1:-1;;;36440:60:0;;;;;;;:::i;36393:272::-;36615:6;36609:13;36600:6;36596:2;36592:15;36585:38;36151:529;-1:-1:-1;;;;;;36278:51:0;-1:-1:-1;;;36278:51:0;;-1:-1:-1;36271:58:0;;36115:620;-1:-1:-1;36719:4:0;35943:799;;;;;;:::o;33200:382::-;-1:-1:-1;;;;;33280:16:0;;33272:61;;;;-1:-1:-1;;;33272:61:0;;19025:2:1;33272:61:0;;;19007:21:1;;;19044:18;;;19037:30;19103:34;19083:18;;;19076:62;19155:18;;33272:61:0;18823:356:1;33272:61:0;31287:4;31311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31311:16:0;:30;33344:58;;;;-1:-1:-1;;;33344:58:0;;19386:2:1;33344:58:0;;;19368:21:1;19425:2;19405:18;;;19398:30;19464;19444:18;;;19437:58;19512:18;;33344:58:0;19184:352:1;33344:58:0;33415:45;33444:1;33448:2;33452:7;33415:20;:45::i;:::-;-1:-1:-1;;;;;33473:13:0;;;;;;:9;:13;;;;;:18;;33490:1;;33473:13;:18;;33490:1;;33473:18;:::i;:::-;;;;-1:-1:-1;;33502:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33502:21:0;-1:-1:-1;;;;;33502:21:0;;;;;;;;33541:33;;33502:16;;;33541:33;;33502:16;;33541:33;33200:382;;:::o;42156:988::-;42422:22;42472:1;42447:22;42464:4;42447:16;:22::i;:::-;:26;;;;:::i;:::-;42484:18;42505:26;;;:17;:26;;;;;;42422:51;;-1:-1:-1;42638:28:0;;;42634:328;;-1:-1:-1;;;;;42705:18:0;;42683:19;42705:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42756:30;;;;;;:44;;;42873:30;;:17;:30;;;;;:43;;;42634:328;-1:-1:-1;43058:26:0;;;;:17;:26;;;;;;;;43051:33;;;-1:-1:-1;;;;;43102:18:0;;;;;:12;:18;;;;;:34;;;;;;;43095:41;42156:988::o;43439:1079::-;43717:10;:17;43692:22;;43717:21;;43737:1;;43717:21;:::i;:::-;43749:18;43770:24;;;:15;:24;;;;;;44143:10;:26;;43692:46;;-1:-1:-1;43770:24:0;;43692:46;;44143:26;;;;;;:::i;:::-;;;;;;;;;44121:48;;44207:11;44182:10;44193;44182:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44287:28;;;:15;:28;;;;;;;:41;;;44459:24;;;;;44452:31;44494:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43510:1008;;;43439:1079;:::o;40943:221::-;41028:14;41045:20;41062:2;41045:16;:20::i;:::-;-1:-1:-1;;;;;41076:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41121:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40943:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:131::-;-1:-1:-1;;;;;1017:31:1;;1007:42;;997:70;;1063:1;1060;1053:12;1078:247;1137:6;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1245:9;1232:23;1264:31;1289:5;1264:31;:::i;1330:258::-;1402:1;1412:113;1426:6;1423:1;1420:13;1412:113;;;1502:11;;;1496:18;1483:11;;;1476:39;1448:2;1441:10;1412:113;;;1543:6;1540:1;1537:13;1534:48;;;-1:-1:-1;;1578:1:1;1560:16;;1553:27;1330:258::o;1593:::-;1635:3;1673:5;1667:12;1700:6;1695:3;1688:19;1716:63;1772:6;1765:4;1760:3;1756:14;1749:4;1742:5;1738:16;1716:63;:::i;:::-;1833:2;1812:15;-1:-1:-1;;1808:29:1;1799:39;;;;1840:4;1795:50;;1593:258;-1:-1:-1;;1593:258:1:o;1856:220::-;2005:2;1994:9;1987:21;1968:4;2025:45;2066:2;2055:9;2051:18;2043:6;2025:45;:::i;2081:180::-;2140:6;2193:2;2181:9;2172:7;2168:23;2164:32;2161:52;;;2209:1;2206;2199:12;2161:52;-1:-1:-1;2232:23:1;;2081:180;-1:-1:-1;2081:180:1:o;2474:315::-;2542:6;2550;2603:2;2591:9;2582:7;2578:23;2574:32;2571:52;;;2619:1;2616;2609:12;2571:52;2658:9;2645:23;2677:31;2702:5;2677:31;:::i;:::-;2727:5;2779:2;2764:18;;;;2751:32;;-1:-1:-1;;;2474:315:1:o;2976:456::-;3053:6;3061;3069;3122:2;3110:9;3101:7;3097:23;3093:32;3090:52;;;3138:1;3135;3128:12;3090:52;3177:9;3164:23;3196:31;3221:5;3196:31;:::i;:::-;3246:5;-1:-1:-1;3303:2:1;3288:18;;3275:32;3316:33;3275:32;3316:33;:::i;:::-;2976:456;;3368:7;;-1:-1:-1;;;3422:2:1;3407:18;;;;3394:32;;2976:456::o;3437:127::-;3498:10;3493:3;3489:20;3486:1;3479:31;3529:4;3526:1;3519:15;3553:4;3550:1;3543:15;3569:632;3634:5;3664:18;3705:2;3697:6;3694:14;3691:40;;;3711:18;;:::i;:::-;3786:2;3780:9;3754:2;3840:15;;-1:-1:-1;;3836:24:1;;;3862:2;3832:33;3828:42;3816:55;;;3886:18;;;3906:22;;;3883:46;3880:72;;;3932:18;;:::i;:::-;3972:10;3968:2;3961:22;4001:6;3992:15;;4031:6;4023;4016:22;4071:3;4062:6;4057:3;4053:16;4050:25;4047:45;;;4088:1;4085;4078:12;4047:45;4138:6;4133:3;4126:4;4118:6;4114:17;4101:44;4193:1;4186:4;4177:6;4169;4165:19;4161:30;4154:41;;;;3569:632;;;;;:::o;4206:451::-;4275:6;4328:2;4316:9;4307:7;4303:23;4299:32;4296:52;;;4344:1;4341;4334:12;4296:52;4384:9;4371:23;4417:18;4409:6;4406:30;4403:50;;;4449:1;4446;4439:12;4403:50;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:55:1;;4554:1;4551;4544:12;4503:55;4577:74;4643:7;4638:2;4625:16;4620:2;4616;4612:11;4577:74;:::i;4662:632::-;4833:2;4885:21;;;4955:13;;4858:18;;;4977:22;;;4804:4;;4833:2;5056:15;;;;5030:2;5015:18;;;4804:4;5099:169;5113:6;5110:1;5107:13;5099:169;;;5174:13;;5162:26;;5243:15;;;;5208:12;;;;5135:1;5128:9;5099:169;;;-1:-1:-1;5285:3:1;;4662:632;-1:-1:-1;;;;;;4662:632:1:o;5299:315::-;5364:6;5372;5425:2;5413:9;5404:7;5400:23;5396:32;5393:52;;;5441:1;5438;5431:12;5393:52;5480:9;5467:23;5499:31;5524:5;5499:31;:::i;:::-;5549:5;-1:-1:-1;5573:35:1;5604:2;5589:18;;5573:35;:::i;:::-;5563:45;;5299:315;;;;;:::o;5619:795::-;5714:6;5722;5730;5738;5791:3;5779:9;5770:7;5766:23;5762:33;5759:53;;;5808:1;5805;5798:12;5759:53;5847:9;5834:23;5866:31;5891:5;5866:31;:::i;:::-;5916:5;-1:-1:-1;5973:2:1;5958:18;;5945:32;5986:33;5945:32;5986:33;:::i;:::-;6038:7;-1:-1:-1;6092:2:1;6077:18;;6064:32;;-1:-1:-1;6147:2:1;6132:18;;6119:32;6174:18;6163:30;;6160:50;;;6206:1;6203;6196:12;6160:50;6229:22;;6282:4;6274:13;;6270:27;-1:-1:-1;6260:55:1;;6311:1;6308;6301:12;6260:55;6334:74;6400:7;6395:2;6382:16;6377:2;6373;6369:11;6334:74;:::i;:::-;6324:84;;;5619:795;;;;;;;:::o;6419:388::-;6487:6;6495;6548:2;6536:9;6527:7;6523:23;6519:32;6516:52;;;6564:1;6561;6554:12;6516:52;6603:9;6590:23;6622:31;6647:5;6622:31;:::i;:::-;6672:5;-1:-1:-1;6729:2:1;6714:18;;6701:32;6742:33;6701:32;6742:33;:::i;:::-;6794:7;6784:17;;;6419:388;;;;;:::o;6812:356::-;7014:2;6996:21;;;7033:18;;;7026:30;7092:34;7087:2;7072:18;;7065:62;7159:2;7144:18;;6812:356::o;8234:380::-;8313:1;8309:12;;;;8356;;;8377:61;;8431:4;8423:6;8419:17;8409:27;;8377:61;8484:2;8476:6;8473:14;8453:18;8450:38;8447:161;;;8530:10;8525:3;8521:20;8518:1;8511:31;8565:4;8562:1;8555:15;8593:4;8590:1;8583:15;8447:161;;8234:380;;;:::o;9859:413::-;10061:2;10043:21;;;10100:2;10080:18;;;10073:30;10139:34;10134:2;10119:18;;10112:62;-1:-1:-1;;;10205:2:1;10190:18;;10183:47;10262:3;10247:19;;9859:413::o;11102:127::-;11163:10;11158:3;11154:20;11151:1;11144:31;11194:4;11191:1;11184:15;11218:4;11215:1;11208:15;12399:127;12460:10;12455:3;12451:20;12448:1;12441:31;12491:4;12488:1;12481:15;12515:4;12512:1;12505:15;12531:135;12570:3;-1:-1:-1;;12591:17:1;;12588:43;;;12611:18;;:::i;:::-;-1:-1:-1;12658:1:1;12647:13;;12531:135::o;13567:1527::-;13791:3;13829:6;13823:13;13855:4;13868:51;13912:6;13907:3;13902:2;13894:6;13890:15;13868:51;:::i;:::-;13982:13;;13941:16;;;;14004:55;13982:13;13941:16;14026:15;;;14004:55;:::i;:::-;14148:13;;14081:20;;;14121:1;;14208;14230:18;;;;14283;;;;14310:93;;14388:4;14378:8;14374:19;14362:31;;14310:93;14451:2;14441:8;14438:16;14418:18;14415:40;14412:167;;;-1:-1:-1;;;14478:33:1;;14534:4;14531:1;14524:15;14564:4;14485:3;14552:17;14412:167;14595:18;14622:110;;;;14746:1;14741:328;;;;14588:481;;14622:110;-1:-1:-1;;14657:24:1;;14643:39;;14702:20;;;;-1:-1:-1;14622:110:1;;14741:328;13514:1;13507:14;;;13551:4;13538:18;;14836:1;14850:169;14864:8;14861:1;14858:15;14850:169;;;14946:14;;14931:13;;;14924:37;14989:16;;;;14881:10;;14850:169;;;14854:3;;15050:8;15043:5;15039:20;15032:27;;14588:481;-1:-1:-1;15085:3:1;;13567:1527;-1:-1:-1;;;;;;;;;;;13567:1527:1:o;15099:280::-;15198:6;15251:2;15239:9;15230:7;15226:23;15222:32;15219:52;;;15267:1;15264;15257:12;15219:52;15299:9;15293:16;15318:31;15343:5;15318:31;:::i;17019:125::-;17059:4;17087:1;17084;17081:8;17078:34;;;17092:18;;:::i;:::-;-1:-1:-1;17129:9:1;;17019:125::o;17149:128::-;17189:3;17220:1;17216:6;17213:1;17210:13;17207:39;;;17226:18;;:::i;:::-;-1:-1:-1;17262:9:1;;17149:128::o;17282:414::-;17484:2;17466:21;;;17523:2;17503:18;;;17496:30;17562:34;17557:2;17542:18;;17535:62;-1:-1:-1;;;17628:2:1;17613:18;;17606:48;17686:3;17671:19;;17282:414::o;17701:127::-;17762:10;17757:3;17753:20;17750:1;17743:31;17793:4;17790:1;17783:15;17817:4;17814:1;17807:15;17833:120;17873:1;17899;17889:35;;17904:18;;:::i;:::-;-1:-1:-1;17938:9:1;;17833:120::o;17958:112::-;17990:1;18016;18006:35;;18021:18;;:::i;:::-;-1:-1:-1;18055:9:1;;17958:112::o;18075:489::-;-1:-1:-1;;;;;18344:15:1;;;18326:34;;18396:15;;18391:2;18376:18;;18369:43;18443:2;18428:18;;18421:34;;;18491:3;18486:2;18471:18;;18464:31;;;18269:4;;18512:46;;18538:19;;18530:6;18512:46;:::i;:::-;18504:54;18075:489;-1:-1:-1;;;;;;18075:489:1:o;18569:249::-;18638:6;18691:2;18679:9;18670:7;18666:23;18662:32;18659:52;;;18707:1;18704;18697:12;18659:52;18739:9;18733:16;18758:30;18782:5;18758:30;:::i;19541:127::-;19602:10;19597:3;19593:20;19590:1;19583:31;19633:4;19630:1;19623:15;19657:4;19654:1;19647:15

Swarm Source

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