ETH Price: $2,833.71 (-7.21%)
Gas: 5 Gwei

Token

Skvllpvnkz Daycare (SKVLLBABIEZ)
 

Overview

Max Total Supply

3,354 SKVLLBABIEZ

Holders

600

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SKVLLBABIEZ
0x277fb2af5ce837a8e77c5607ef463e1919796d5d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

5K Skvllbabiez escaping Skvllpvnkz Daycare

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Skvllbabiez

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-30
*/

// SPDX-License-Identifier: MIT

// File: contracts/interfaces/ISkvllpvnkz.sol


pragma solidity ^0.8.0;

interface ISkvllpvnkz {
    function walletOfOwner(address _owner) external view returns(uint256[] memory);
    function balanceOf(address owner) external view returns (uint256 balance);
    function ownerOf(uint256 tokenId) external view returns (address owner);
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/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/Skvllbabiez.sol


pragma solidity ^0.8.0;





contract Skvllbabiez is ERC721Enumerable, Ownable, ReentrancyGuard {

    using Strings for uint256;
    
    event SkvllbabiezPublicSaleStarted();
    event SkvllbabiezPublicSalePaused();
    
    address private skvllpvnkzContractAddress = 0xB28a4FdE7B6c3Eb0C914d7b4d3ddb4544c3bcbd6;
    
    uint256 private _maxSupply = 5000;
    uint256 private _tokenId = 0;
    
    string _baseTokenURI;
    bool public _publicSale = false;
    bool private _provenanceSet = false;
    string public provenance = "";
    string private _contractURI = "http://api.skvllbabiez.io/contract";
    
    mapping(uint256 => bool) private _usedSkvllz;
        
    constructor() ERC721("Skvllpvnkz Daycare", "SKVLLBABIEZ") {}
    
    function makeBabiez(uint256[] memory tokens) external nonReentrant {
        require( _publicSale, "Sale paused" );
        require(tokens.length > 1, "Need at least 2 tokens");
        require(tokens.length % 2 == 0, "Need to supply an even number of tokens");
        for (uint256 i=0; i < tokens.length; i=i+2){
            if (tokens[i] != tokens[i+1]
                && !_usedSkvllz[tokens[i]] 
                && !_usedSkvllz[tokens[i+1]]
                && ISkvllpvnkz(skvllpvnkzContractAddress).ownerOf( tokens[i] ) == msg.sender
                && ISkvllpvnkz(skvllpvnkzContractAddress).ownerOf( tokens[i+1] ) == msg.sender) {
                    _usedSkvllz[tokens[i]] = true;
                    _usedSkvllz[tokens[i+1]] = true;
                    _tokenId ++;
                    _safeMint( msg.sender,  _tokenId );
             }
        }
    }
    
    function isUsed(uint256 skvllpvnkId) external view returns (bool){
        return _usedSkvllz[skvllpvnkId];
    }
    
    function toggleUsed(uint256 skvllpvnkId, bool usedValue) external onlyOwner {
        _usedSkvllz[skvllpvnkId] = usedValue;
    }
    
    function unclaimedSkvllpvnkzCount(address _owner) public view returns (uint256){
        uint256[] memory tokenIds = ISkvllpvnkz(skvllpvnkzContractAddress).walletOfOwner( _owner );
        uint256 count = 0;
        for (uint256 i=0; i < tokenIds.length; i++){
            if (!_usedSkvllz[tokenIds[i]]) count++;
        }
        return count;
    }
    
    function unclaimedSkvllpvnkzCountIDs(address _owner) external view returns (uint256[] memory){
        uint256[] memory tokenIds = ISkvllpvnkz(skvllpvnkzContractAddress).walletOfOwner( _owner );
        uint256[] memory unusedTokenIds = new uint256[](unclaimedSkvllpvnkzCount(_owner));
        uint256 j = 0;
        for (uint256 i=0; i < tokenIds.length; i++){
            if (!_usedSkvllz[tokenIds[i]]) {
                unusedTokenIds[j] = tokenIds[i];
                j++;
            }
        }
        return unusedTokenIds;
    }
    
    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function publicSale(bool val) external onlyOwner {
        _publicSale = val;
        if (val) {
            emit SkvllbabiezPublicSaleStarted();
        } else {
            emit SkvllbabiezPublicSalePaused();
        }
    }

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

    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function remainingSupply() public view returns (uint256) {
        return _maxSupply - _tokenId;
    }
    
    function setSkvllpvnkzContractAddress(address _address) external onlyOwner {
        skvllpvnkzContractAddress = _address;
    }
    
    function maxSupply() external view returns (uint256){
        return _maxSupply;
    }

    function withdraw(uint256 amount) external payable onlyOwner {
        require(payable(msg.sender).send(amount));
    }
    
    function setContractURI(string memory uri) external onlyOwner {
        _contractURI = uri;
    }
    
    function contractURI() external view returns (string memory) {
        return _contractURI;
    }
    
    function setProvenance(string memory _provenance) external onlyOwner {
        require(!_provenanceSet, "Provenance has been set already");
        provenance = _provenance;
        _provenanceSet = true;
    }
}

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":[],"name":"SkvllbabiezPublicSalePaused","type":"event"},{"anonymous":false,"inputs":[],"name":"SkvllbabiezPublicSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"skvllpvnkId","type":"uint256"}],"name":"isUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"makeBabiez","outputs":[],"stateMutability":"nonpayable","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":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"publicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSkvllpvnkzContractAddress","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":"skvllpvnkId","type":"uint256"},{"internalType":"bool","name":"usedValue","type":"bool"}],"name":"toggleUsed","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"unclaimedSkvllpvnkzCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"unclaimedSkvllpvnkzCountIDs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600c80546001600160a01b03191673b28a4fde7b6c3eb0c914d7b4d3ddb4544c3bcbd6179055611388600d556000600e8190556010805461ffff1916905560a06040819052608082905262000058916011919062000189565b5060405180606001604052806022815260200162003080602291398051620000899160129160209091019062000189565b503480156200009757600080fd5b506040805180820182526012815271536b766c6c70766e6b7a204461796361726560701b60208083019182528351808501909452600b84526a29a5ab26262120a124a2ad60a91b908401528151919291620000f59160009162000189565b5080516200010b90600190602084019062000189565b50505062000128620001226200013360201b60201c565b62000137565b6001600b556200026c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000197906200022f565b90600052602060002090601f016020900481019282620001bb576000855562000206565b82601f10620001d657805160ff191683800117855562000206565b8280016001018555821562000206579182015b8281111562000206578251825591602001919060010190620001e9565b506200021492915062000218565b5090565b5b8082111562000214576000815560010162000219565b6002810460018216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b612e04806200027c6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063c87b56dd116100a0578063e007e6261161006f578063e007e626146105d0578063e8a3d485146105f0578063e985e9c514610605578063f2fde38b14610625578063ffe630b5146106455761020f565b8063c87b56dd14610566578063caab918214610586578063d5abeb01146105a6578063da0239a6146105bb5761020f565b8063938e3d7b116100e7578063938e3d7b146104d157806395d89b41146104f1578063a22cb46514610506578063b64f248b14610526578063b88d4fde146105465761020f565b806370a0823114610467578063715018a6146104875780637b9497b71461049c5780638da5cb5b146104bc5761020f565b8063336ccba51161019b578063519009931161016a57806351900993146103d257806355f804b3146103f25780636352211e146104125780636956ba19146104325780636b9c4324146104475761020f565b8063336ccba51461034557806342842e0e14610365578063438b6300146103855780634f6ccce7146103b25761020f565b80630f7309e8116101e25780630f7309e8146102bb57806318160ddd146102d057806323b872dd146102f25780632e1a7d4d146103125780632f745c59146103255761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f366004612464565b610665565b604051610241919061260c565b60405180910390f35b34801561025657600080fd5b5061025f610692565b6040516102419190612617565b34801561027857600080fd5b5061028c6102873660046124e2565b610724565b6040516102419190612577565b3480156102a557600080fd5b506102b96102b4366004612306565b610770565b005b3480156102c757600080fd5b5061025f610808565b3480156102dc57600080fd5b506102e5610896565b6040516102419190612c31565b3480156102fe57600080fd5b506102b961030d366004612215565b61089c565b6102b96103203660046124e2565b6108d4565b34801561033157600080fd5b506102e5610340366004612306565b61093b565b34801561035157600080fd5b506102346103603660046124e2565b61098d565b34801561037157600080fd5b506102b9610380366004612215565b6109a2565b34801561039157600080fd5b506103a56103a03660046121a5565b6109bd565b60405161024191906125c8565b3480156103be57600080fd5b506102e56103cd3660046124e2565b610a7b565b3480156103de57600080fd5b506102b96103ed366004612331565b610ad6565b3480156103fe57600080fd5b506102b961040d36600461249c565b610eea565b34801561041e57600080fd5b5061028c61042d3660046124e2565b610f40565b34801561043e57600080fd5b50610234610f75565b34801561045357600080fd5b506102e56104623660046121a5565b610f7e565b34801561047357600080fd5b506102e56104823660046121a5565b61107b565b34801561049357600080fd5b506102b96110bf565b3480156104a857600080fd5b506102b96104b73660046124fa565b61110a565b3480156104c857600080fd5b5061028c611169565b3480156104dd57600080fd5b506102b96104ec36600461249c565b611178565b3480156104fd57600080fd5b5061025f6111ca565b34801561051257600080fd5b506102b96105213660046122d2565b6111d9565b34801561053257600080fd5b506103a56105413660046121a5565b6112a7565b34801561055257600080fd5b506102b9610561366004612255565b61145f565b34801561057257600080fd5b5061025f6105813660046124e2565b61149e565b34801561059257600080fd5b506102b96105a136600461244a565b611521565b3480156105b257600080fd5b506102e56115d1565b3480156105c757600080fd5b506102e56115d7565b3480156105dc57600080fd5b506102b96105eb3660046121a5565b6115ee565b3480156105fc57600080fd5b5061025f61164f565b34801561061157600080fd5b506102346106203660046121dd565b61165e565b34801561063157600080fd5b506102b96106403660046121a5565b61168c565b34801561065157600080fd5b506102b961066036600461249c565b6116fa565b60006001600160e01b0319821663780e9d6360e01b148061068a575061068a82611787565b90505b919050565b6060600080546106a190612cf7565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd90612cf7565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b600061072f826117c7565b6107545760405162461bcd60e51b815260040161074b9061298c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077b82610f40565b9050806001600160a01b0316836001600160a01b031614156107af5760405162461bcd60e51b815260040161074b90612aa5565b806001600160a01b03166107c16117e4565b6001600160a01b031614806107dd57506107dd816106206117e4565b6107f95760405162461bcd60e51b815260040161074b90612830565b61080383836117e8565b505050565b6011805461081590612cf7565b80601f016020809104026020016040519081016040528092919081815260200182805461084190612cf7565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b505050505081565b60085490565b6108ad6108a76117e4565b82611856565b6108c95760405162461bcd60e51b815260040161074b90612ae6565b6108038383836118db565b6108dc6117e4565b6001600160a01b03166108ed611169565b6001600160a01b0316146109135760405162461bcd60e51b815260040161074b906129d8565b604051339082156108fc029083906000818181858888f1935050505061093857600080fd5b50565b60006109468361107b565b82106109645760405162461bcd60e51b815260040161074b9061264f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60009081526013602052604090205460ff1690565b6108038383836040518060200160405280600081525061145f565b606060006109ca8361107b565b905060008167ffffffffffffffff8111156109f557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a1e578160200160208202803683370190505b50905060005b82811015610a7357610a36858261093b565b828281518110610a5657634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a6b81612d32565b915050610a24565b509392505050565b6000610a85610896565b8210610aa35760405162461bcd60e51b815260040161074b90612b37565b60088281548110610ac457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6002600b541415610af95760405162461bcd60e51b815260040161074b90612bb3565b6002600b5560105460ff16610b205760405162461bcd60e51b815260040161074b9061262a565b6001815111610b415760405162461bcd60e51b815260040161074b90612b83565b60028151610b4f9190612d4d565b15610b6c5760405162461bcd60e51b815260040161074b90612bea565b60005b8151811015610ee15781610b84826001612c88565b81518110610ba257634e487b7160e01b600052603260045260246000fd5b6020026020010151828281518110610bca57634e487b7160e01b600052603260045260246000fd5b602002602001015114158015610c1f575060136000838381518110610bff57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff16155b8015610c7457506013600083610c36846001612c88565b81518110610c5457634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff16155b8015610d315750600c54825133916001600160a01b031690636352211e90859085908110610cb257634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401610cd69190612c31565b60206040518083038186803b158015610cee57600080fd5b505afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2691906121c1565b6001600160a01b0316145b8015610df45750600c5433906001600160a01b0316636352211e84610d57856001612c88565b81518110610d7557634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401610d999190612c31565b60206040518083038186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de991906121c1565b6001600160a01b0316145b15610ecf57600160136000848481518110610e1f57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555060016013600084846001610e609190612c88565b81518110610e7e57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190610ebe90612d32565b9190505550610ecf33600e54611a08565b610eda816002612c88565b9050610b6f565b50506001600b55565b610ef26117e4565b6001600160a01b0316610f03611169565b6001600160a01b031614610f295760405162461bcd60e51b815260040161074b906129d8565b8051610f3c90600f9060208401906120a4565b5050565b6000818152600260205260408120546001600160a01b03168061068a5760405162461bcd60e51b815260040161074b906128d7565b60105460ff1681565b600c5460405162438b6360e81b815260009182916001600160a01b039091169063438b630090610fb2908690600401612577565b60006040518083038186803b158015610fca57600080fd5b505afa158015610fde573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261100691908101906123c6565b90506000805b8251811015610a73576013600084838151811061103957634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff16611069578161106581612d32565b9250505b8061107381612d32565b91505061100c565b60006001600160a01b0382166110a35760405162461bcd60e51b815260040161074b9061288d565b506001600160a01b031660009081526003602052604090205490565b6110c76117e4565b6001600160a01b03166110d8611169565b6001600160a01b0316146110fe5760405162461bcd60e51b815260040161074b906129d8565b6111086000611a22565b565b6111126117e4565b6001600160a01b0316611123611169565b6001600160a01b0316146111495760405162461bcd60e51b815260040161074b906129d8565b600091825260136020526040909120805460ff1916911515919091179055565b600a546001600160a01b031690565b6111806117e4565b6001600160a01b0316611191611169565b6001600160a01b0316146111b75760405162461bcd60e51b815260040161074b906129d8565b8051610f3c9060129060208401906120a4565b6060600180546106a190612cf7565b6111e16117e4565b6001600160a01b0316826001600160a01b031614156112125760405162461bcd60e51b815260040161074b906127ad565b806005600061121f6117e4565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112636117e4565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161129b919061260c565b60405180910390a35050565b600c5460405162438b6360e81b81526060916000916001600160a01b039091169063438b6300906112dc908690600401612577565b60006040518083038186803b1580156112f457600080fd5b505afa158015611308573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261133091908101906123c6565b9050600061133d84610f7e565b67ffffffffffffffff81111561136357634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561138c578160200160208202803683370190505b5090506000805b835181101561145557601360008583815181106113c057634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff166114435783818151811061140257634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061142a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528161143f81612d32565b9250505b8061144d81612d32565b915050611393565b5090949350505050565b61147061146a6117e4565b83611856565b61148c5760405162461bcd60e51b815260040161074b90612ae6565b61149884848484611a74565b50505050565b60606114a9826117c7565b6114c55760405162461bcd60e51b815260040161074b90612a56565b60006114cf611aa7565b905060008151116114ef576040518060200160405280600081525061151a565b806114f984611ab6565b60405160200161150a929190612548565b6040516020818303038152906040525b9392505050565b6115296117e4565b6001600160a01b031661153a611169565b6001600160a01b0316146115605760405162461bcd60e51b815260040161074b906129d8565b6010805460ff191682158015919091179091556115a5576040517f6d12eb8e2b5e7d280aabefa04c04793582c458ff25f3d08e24fb6b2a7f30f0fc90600090a1610938565b6040517fb804edfdd887112b3356edbd134ece632b9aa3a0ba8b52dbfd4aaf9697b08e7390600090a150565b600d5490565b6000600e54600d546115e99190612cb4565b905090565b6115f66117e4565b6001600160a01b0316611607611169565b6001600160a01b03161461162d5760405162461bcd60e51b815260040161074b906129d8565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060601280546106a190612cf7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6116946117e4565b6001600160a01b03166116a5611169565b6001600160a01b0316146116cb5760405162461bcd60e51b815260040161074b906129d8565b6001600160a01b0381166116f15760405162461bcd60e51b815260040161074b906126ec565b61093881611a22565b6117026117e4565b6001600160a01b0316611713611169565b6001600160a01b0316146117395760405162461bcd60e51b815260040161074b906129d8565b601054610100900460ff16156117615760405162461bcd60e51b815260040161074b90612955565b80516117749060119060208401906120a4565b50506010805461ff001916610100179055565b60006001600160e01b031982166380ac58cd60e01b14806117b857506001600160e01b03198216635b5e139f60e01b145b8061068a575061068a82611bd1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181d82610f40565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611861826117c7565b61187d5760405162461bcd60e51b815260040161074b906127e4565b600061188883610f40565b9050806001600160a01b0316846001600160a01b031614806118c35750836001600160a01b03166118b884610724565b6001600160a01b0316145b806118d357506118d3818561165e565b949350505050565b826001600160a01b03166118ee82610f40565b6001600160a01b0316146119145760405162461bcd60e51b815260040161074b90612a0d565b6001600160a01b03821661193a5760405162461bcd60e51b815260040161074b90612769565b611945838383611bea565b6119506000826117e8565b6001600160a01b0383166000908152600360205260408120805460019290611979908490612cb4565b90915550506001600160a01b03821660009081526003602052604081208054600192906119a7908490612c88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f3c828260405180602001604052806000815250611c73565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a7f8484846118db565b611a8b84848484611ca6565b6114985760405162461bcd60e51b815260040161074b9061269a565b6060600f80546106a190612cf7565b606081611adb57506040805180820190915260018152600360fc1b602082015261068d565b8160005b8115611b055780611aef81612d32565b9150611afe9050600a83612ca0565b9150611adf565b60008167ffffffffffffffff811115611b2e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b58576020820181803683370190505b5090505b84156118d357611b6d600183612cb4565b9150611b7a600a86612d4d565b611b85906030612c88565b60f81b818381518110611ba857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bca600a86612ca0565b9450611b5c565b6001600160e01b031981166301ffc9a760e01b14919050565b611bf5838383610803565b6001600160a01b038316611c1157611c0c81611dc1565b611c34565b816001600160a01b0316836001600160a01b031614611c3457611c348382611e05565b6001600160a01b038216611c5057611c4b81611ea2565b610803565b826001600160a01b0316826001600160a01b031614610803576108038282611f7b565b611c7d8383611fbf565b611c8a6000848484611ca6565b6108035760405162461bcd60e51b815260040161074b9061269a565b6000611cba846001600160a01b031661209e565b15611db657836001600160a01b031663150b7a02611cd66117e4565b8786866040518563ffffffff1660e01b8152600401611cf8949392919061258b565b602060405180830381600087803b158015611d1257600080fd5b505af1925050508015611d42575060408051601f3d908101601f19168201909252611d3f91810190612480565b60015b611d9c573d808015611d70576040519150601f19603f3d011682016040523d82523d6000602084013e611d75565b606091505b508051611d945760405162461bcd60e51b815260040161074b9061269a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118d3565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e128461107b565b611e1c9190612cb4565b600083815260076020526040902054909150808214611e6f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eb490600190612cb4565b60008381526009602052604081205460088054939450909284908110611eea57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f1957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f868361107b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fe55760405162461bcd60e51b815260040161074b90612920565b611fee816117c7565b1561200b5760405162461bcd60e51b815260040161074b90612732565b61201760008383611bea565b6001600160a01b0382166000908152600360205260408120805460019290612040908490612c88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546120b090612cf7565b90600052602060002090601f0160209004810192826120d25760008555612118565b82601f106120eb57805160ff1916838001178555612118565b82800160010185558215612118579182015b828111156121185782518255916020019190600101906120fd565b50612124929150612128565b5090565b5b808211156121245760008155600101612129565b600067ffffffffffffffff83111561215757612157612d8d565b61216a601f8401601f1916602001612c3a565b905082815283838301111561217e57600080fd5b828260208301376000602084830101529392505050565b8035801515811461068d57600080fd5b6000602082840312156121b6578081fd5b813561151a81612da3565b6000602082840312156121d2578081fd5b815161151a81612da3565b600080604083850312156121ef578081fd5b82356121fa81612da3565b9150602083013561220a81612da3565b809150509250929050565b600080600060608486031215612229578081fd5b833561223481612da3565b9250602084013561224481612da3565b929592945050506040919091013590565b6000806000806080858703121561226a578081fd5b843561227581612da3565b9350602085013561228581612da3565b925060408501359150606085013567ffffffffffffffff8111156122a7578182fd5b8501601f810187136122b7578182fd5b6122c68782356020840161213d565b91505092959194509250565b600080604083850312156122e4578182fd5b82356122ef81612da3565b91506122fd60208401612195565b90509250929050565b60008060408385031215612318578182fd5b823561232381612da3565b946020939093013593505050565b60006020808385031215612343578182fd5b823567ffffffffffffffff811115612359578283fd5b8301601f81018513612369578283fd5b803561237c61237782612c64565b612c3a565b8181528381019083850185840285018601891015612398578687fd5b8694505b838510156123ba57803583526001949094019391850191850161239c565b50979650505050505050565b600060208083850312156123d8578182fd5b825167ffffffffffffffff8111156123ee578283fd5b8301601f810185136123fe578283fd5b805161240c61237782612c64565b8181528381019083850185840285018601891015612428578687fd5b8694505b838510156123ba57805183526001949094019391850191850161242c565b60006020828403121561245b578081fd5b61151a82612195565b600060208284031215612475578081fd5b813561151a81612db8565b600060208284031215612491578081fd5b815161151a81612db8565b6000602082840312156124ad578081fd5b813567ffffffffffffffff8111156124c3578182fd5b8201601f810184136124d3578182fd5b6118d38482356020840161213d565b6000602082840312156124f3578081fd5b5035919050565b6000806040838503121561250c578182fd5b823591506122fd60208401612195565b60008151808452612534816020860160208601612ccb565b601f01601f19169290920160200192915050565b6000835161255a818460208801612ccb565b83519083019061256e818360208801612ccb565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125be9083018461251c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612600578351835292840192918401916001016125e4565b50909695505050505050565b901515815260200190565b60006020825261151a602083018461251c565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601f908201527f50726f76656e616e636520686173206265656e2073657420616c726561647900604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601690820152754e656564206174206c65617374203220746f6b656e7360501b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526027908201527f4e65656420746f20737570706c7920616e206576656e206e756d626572206f6660408201526620746f6b656e7360c81b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612c5c57612c5c612d8d565b604052919050565b600067ffffffffffffffff821115612c7e57612c7e612d8d565b5060209081020190565b60008219821115612c9b57612c9b612d61565b500190565b600082612caf57612caf612d77565b500490565b600082821015612cc657612cc6612d61565b500390565b60005b83811015612ce6578181015183820152602001612cce565b838111156114985750506000910152565b600281046001821680612d0b57607f821691505b60208210811415612d2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d4657612d46612d61565b5060010190565b600082612d5c57612d5c612d77565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093857600080fd5b6001600160e01b03198116811461093857600080fdfea26469706673582212200559ccd0b0c13153467778e800b0a46064a5d4b7395d70940c02ce4b8de2c4b264736f6c63430008000033687474703a2f2f6170692e736b766c6c62616269657a2e696f2f636f6e7472616374

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063c87b56dd116100a0578063e007e6261161006f578063e007e626146105d0578063e8a3d485146105f0578063e985e9c514610605578063f2fde38b14610625578063ffe630b5146106455761020f565b8063c87b56dd14610566578063caab918214610586578063d5abeb01146105a6578063da0239a6146105bb5761020f565b8063938e3d7b116100e7578063938e3d7b146104d157806395d89b41146104f1578063a22cb46514610506578063b64f248b14610526578063b88d4fde146105465761020f565b806370a0823114610467578063715018a6146104875780637b9497b71461049c5780638da5cb5b146104bc5761020f565b8063336ccba51161019b578063519009931161016a57806351900993146103d257806355f804b3146103f25780636352211e146104125780636956ba19146104325780636b9c4324146104475761020f565b8063336ccba51461034557806342842e0e14610365578063438b6300146103855780634f6ccce7146103b25761020f565b80630f7309e8116101e25780630f7309e8146102bb57806318160ddd146102d057806323b872dd146102f25780632e1a7d4d146103125780632f745c59146103255761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f366004612464565b610665565b604051610241919061260c565b60405180910390f35b34801561025657600080fd5b5061025f610692565b6040516102419190612617565b34801561027857600080fd5b5061028c6102873660046124e2565b610724565b6040516102419190612577565b3480156102a557600080fd5b506102b96102b4366004612306565b610770565b005b3480156102c757600080fd5b5061025f610808565b3480156102dc57600080fd5b506102e5610896565b6040516102419190612c31565b3480156102fe57600080fd5b506102b961030d366004612215565b61089c565b6102b96103203660046124e2565b6108d4565b34801561033157600080fd5b506102e5610340366004612306565b61093b565b34801561035157600080fd5b506102346103603660046124e2565b61098d565b34801561037157600080fd5b506102b9610380366004612215565b6109a2565b34801561039157600080fd5b506103a56103a03660046121a5565b6109bd565b60405161024191906125c8565b3480156103be57600080fd5b506102e56103cd3660046124e2565b610a7b565b3480156103de57600080fd5b506102b96103ed366004612331565b610ad6565b3480156103fe57600080fd5b506102b961040d36600461249c565b610eea565b34801561041e57600080fd5b5061028c61042d3660046124e2565b610f40565b34801561043e57600080fd5b50610234610f75565b34801561045357600080fd5b506102e56104623660046121a5565b610f7e565b34801561047357600080fd5b506102e56104823660046121a5565b61107b565b34801561049357600080fd5b506102b96110bf565b3480156104a857600080fd5b506102b96104b73660046124fa565b61110a565b3480156104c857600080fd5b5061028c611169565b3480156104dd57600080fd5b506102b96104ec36600461249c565b611178565b3480156104fd57600080fd5b5061025f6111ca565b34801561051257600080fd5b506102b96105213660046122d2565b6111d9565b34801561053257600080fd5b506103a56105413660046121a5565b6112a7565b34801561055257600080fd5b506102b9610561366004612255565b61145f565b34801561057257600080fd5b5061025f6105813660046124e2565b61149e565b34801561059257600080fd5b506102b96105a136600461244a565b611521565b3480156105b257600080fd5b506102e56115d1565b3480156105c757600080fd5b506102e56115d7565b3480156105dc57600080fd5b506102b96105eb3660046121a5565b6115ee565b3480156105fc57600080fd5b5061025f61164f565b34801561061157600080fd5b506102346106203660046121dd565b61165e565b34801561063157600080fd5b506102b96106403660046121a5565b61168c565b34801561065157600080fd5b506102b961066036600461249c565b6116fa565b60006001600160e01b0319821663780e9d6360e01b148061068a575061068a82611787565b90505b919050565b6060600080546106a190612cf7565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd90612cf7565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b600061072f826117c7565b6107545760405162461bcd60e51b815260040161074b9061298c565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077b82610f40565b9050806001600160a01b0316836001600160a01b031614156107af5760405162461bcd60e51b815260040161074b90612aa5565b806001600160a01b03166107c16117e4565b6001600160a01b031614806107dd57506107dd816106206117e4565b6107f95760405162461bcd60e51b815260040161074b90612830565b61080383836117e8565b505050565b6011805461081590612cf7565b80601f016020809104026020016040519081016040528092919081815260200182805461084190612cf7565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b505050505081565b60085490565b6108ad6108a76117e4565b82611856565b6108c95760405162461bcd60e51b815260040161074b90612ae6565b6108038383836118db565b6108dc6117e4565b6001600160a01b03166108ed611169565b6001600160a01b0316146109135760405162461bcd60e51b815260040161074b906129d8565b604051339082156108fc029083906000818181858888f1935050505061093857600080fd5b50565b60006109468361107b565b82106109645760405162461bcd60e51b815260040161074b9061264f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60009081526013602052604090205460ff1690565b6108038383836040518060200160405280600081525061145f565b606060006109ca8361107b565b905060008167ffffffffffffffff8111156109f557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a1e578160200160208202803683370190505b50905060005b82811015610a7357610a36858261093b565b828281518110610a5657634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a6b81612d32565b915050610a24565b509392505050565b6000610a85610896565b8210610aa35760405162461bcd60e51b815260040161074b90612b37565b60088281548110610ac457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6002600b541415610af95760405162461bcd60e51b815260040161074b90612bb3565b6002600b5560105460ff16610b205760405162461bcd60e51b815260040161074b9061262a565b6001815111610b415760405162461bcd60e51b815260040161074b90612b83565b60028151610b4f9190612d4d565b15610b6c5760405162461bcd60e51b815260040161074b90612bea565b60005b8151811015610ee15781610b84826001612c88565b81518110610ba257634e487b7160e01b600052603260045260246000fd5b6020026020010151828281518110610bca57634e487b7160e01b600052603260045260246000fd5b602002602001015114158015610c1f575060136000838381518110610bff57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff16155b8015610c7457506013600083610c36846001612c88565b81518110610c5457634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff16155b8015610d315750600c54825133916001600160a01b031690636352211e90859085908110610cb257634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401610cd69190612c31565b60206040518083038186803b158015610cee57600080fd5b505afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2691906121c1565b6001600160a01b0316145b8015610df45750600c5433906001600160a01b0316636352211e84610d57856001612c88565b81518110610d7557634e487b7160e01b600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401610d999190612c31565b60206040518083038186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de991906121c1565b6001600160a01b0316145b15610ecf57600160136000848481518110610e1f57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555060016013600084846001610e609190612c88565b81518110610e7e57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190610ebe90612d32565b9190505550610ecf33600e54611a08565b610eda816002612c88565b9050610b6f565b50506001600b55565b610ef26117e4565b6001600160a01b0316610f03611169565b6001600160a01b031614610f295760405162461bcd60e51b815260040161074b906129d8565b8051610f3c90600f9060208401906120a4565b5050565b6000818152600260205260408120546001600160a01b03168061068a5760405162461bcd60e51b815260040161074b906128d7565b60105460ff1681565b600c5460405162438b6360e81b815260009182916001600160a01b039091169063438b630090610fb2908690600401612577565b60006040518083038186803b158015610fca57600080fd5b505afa158015610fde573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261100691908101906123c6565b90506000805b8251811015610a73576013600084838151811061103957634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff16611069578161106581612d32565b9250505b8061107381612d32565b91505061100c565b60006001600160a01b0382166110a35760405162461bcd60e51b815260040161074b9061288d565b506001600160a01b031660009081526003602052604090205490565b6110c76117e4565b6001600160a01b03166110d8611169565b6001600160a01b0316146110fe5760405162461bcd60e51b815260040161074b906129d8565b6111086000611a22565b565b6111126117e4565b6001600160a01b0316611123611169565b6001600160a01b0316146111495760405162461bcd60e51b815260040161074b906129d8565b600091825260136020526040909120805460ff1916911515919091179055565b600a546001600160a01b031690565b6111806117e4565b6001600160a01b0316611191611169565b6001600160a01b0316146111b75760405162461bcd60e51b815260040161074b906129d8565b8051610f3c9060129060208401906120a4565b6060600180546106a190612cf7565b6111e16117e4565b6001600160a01b0316826001600160a01b031614156112125760405162461bcd60e51b815260040161074b906127ad565b806005600061121f6117e4565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112636117e4565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161129b919061260c565b60405180910390a35050565b600c5460405162438b6360e81b81526060916000916001600160a01b039091169063438b6300906112dc908690600401612577565b60006040518083038186803b1580156112f457600080fd5b505afa158015611308573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261133091908101906123c6565b9050600061133d84610f7e565b67ffffffffffffffff81111561136357634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561138c578160200160208202803683370190505b5090506000805b835181101561145557601360008583815181106113c057634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182528101919091526040016000205460ff166114435783818151811061140257634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061142a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528161143f81612d32565b9250505b8061144d81612d32565b915050611393565b5090949350505050565b61147061146a6117e4565b83611856565b61148c5760405162461bcd60e51b815260040161074b90612ae6565b61149884848484611a74565b50505050565b60606114a9826117c7565b6114c55760405162461bcd60e51b815260040161074b90612a56565b60006114cf611aa7565b905060008151116114ef576040518060200160405280600081525061151a565b806114f984611ab6565b60405160200161150a929190612548565b6040516020818303038152906040525b9392505050565b6115296117e4565b6001600160a01b031661153a611169565b6001600160a01b0316146115605760405162461bcd60e51b815260040161074b906129d8565b6010805460ff191682158015919091179091556115a5576040517f6d12eb8e2b5e7d280aabefa04c04793582c458ff25f3d08e24fb6b2a7f30f0fc90600090a1610938565b6040517fb804edfdd887112b3356edbd134ece632b9aa3a0ba8b52dbfd4aaf9697b08e7390600090a150565b600d5490565b6000600e54600d546115e99190612cb4565b905090565b6115f66117e4565b6001600160a01b0316611607611169565b6001600160a01b03161461162d5760405162461bcd60e51b815260040161074b906129d8565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060601280546106a190612cf7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6116946117e4565b6001600160a01b03166116a5611169565b6001600160a01b0316146116cb5760405162461bcd60e51b815260040161074b906129d8565b6001600160a01b0381166116f15760405162461bcd60e51b815260040161074b906126ec565b61093881611a22565b6117026117e4565b6001600160a01b0316611713611169565b6001600160a01b0316146117395760405162461bcd60e51b815260040161074b906129d8565b601054610100900460ff16156117615760405162461bcd60e51b815260040161074b90612955565b80516117749060119060208401906120a4565b50506010805461ff001916610100179055565b60006001600160e01b031982166380ac58cd60e01b14806117b857506001600160e01b03198216635b5e139f60e01b145b8061068a575061068a82611bd1565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181d82610f40565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611861826117c7565b61187d5760405162461bcd60e51b815260040161074b906127e4565b600061188883610f40565b9050806001600160a01b0316846001600160a01b031614806118c35750836001600160a01b03166118b884610724565b6001600160a01b0316145b806118d357506118d3818561165e565b949350505050565b826001600160a01b03166118ee82610f40565b6001600160a01b0316146119145760405162461bcd60e51b815260040161074b90612a0d565b6001600160a01b03821661193a5760405162461bcd60e51b815260040161074b90612769565b611945838383611bea565b6119506000826117e8565b6001600160a01b0383166000908152600360205260408120805460019290611979908490612cb4565b90915550506001600160a01b03821660009081526003602052604081208054600192906119a7908490612c88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f3c828260405180602001604052806000815250611c73565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a7f8484846118db565b611a8b84848484611ca6565b6114985760405162461bcd60e51b815260040161074b9061269a565b6060600f80546106a190612cf7565b606081611adb57506040805180820190915260018152600360fc1b602082015261068d565b8160005b8115611b055780611aef81612d32565b9150611afe9050600a83612ca0565b9150611adf565b60008167ffffffffffffffff811115611b2e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b58576020820181803683370190505b5090505b84156118d357611b6d600183612cb4565b9150611b7a600a86612d4d565b611b85906030612c88565b60f81b818381518110611ba857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611bca600a86612ca0565b9450611b5c565b6001600160e01b031981166301ffc9a760e01b14919050565b611bf5838383610803565b6001600160a01b038316611c1157611c0c81611dc1565b611c34565b816001600160a01b0316836001600160a01b031614611c3457611c348382611e05565b6001600160a01b038216611c5057611c4b81611ea2565b610803565b826001600160a01b0316826001600160a01b031614610803576108038282611f7b565b611c7d8383611fbf565b611c8a6000848484611ca6565b6108035760405162461bcd60e51b815260040161074b9061269a565b6000611cba846001600160a01b031661209e565b15611db657836001600160a01b031663150b7a02611cd66117e4565b8786866040518563ffffffff1660e01b8152600401611cf8949392919061258b565b602060405180830381600087803b158015611d1257600080fd5b505af1925050508015611d42575060408051601f3d908101601f19168201909252611d3f91810190612480565b60015b611d9c573d808015611d70576040519150601f19603f3d011682016040523d82523d6000602084013e611d75565b606091505b508051611d945760405162461bcd60e51b815260040161074b9061269a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118d3565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611e128461107b565b611e1c9190612cb4565b600083815260076020526040902054909150808214611e6f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eb490600190612cb4565b60008381526009602052604081205460088054939450909284908110611eea57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611f1957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f868361107b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fe55760405162461bcd60e51b815260040161074b90612920565b611fee816117c7565b1561200b5760405162461bcd60e51b815260040161074b90612732565b61201760008383611bea565b6001600160a01b0382166000908152600360205260408120805460019290612040908490612c88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546120b090612cf7565b90600052602060002090601f0160209004810192826120d25760008555612118565b82601f106120eb57805160ff1916838001178555612118565b82800160010185558215612118579182015b828111156121185782518255916020019190600101906120fd565b50612124929150612128565b5090565b5b808211156121245760008155600101612129565b600067ffffffffffffffff83111561215757612157612d8d565b61216a601f8401601f1916602001612c3a565b905082815283838301111561217e57600080fd5b828260208301376000602084830101529392505050565b8035801515811461068d57600080fd5b6000602082840312156121b6578081fd5b813561151a81612da3565b6000602082840312156121d2578081fd5b815161151a81612da3565b600080604083850312156121ef578081fd5b82356121fa81612da3565b9150602083013561220a81612da3565b809150509250929050565b600080600060608486031215612229578081fd5b833561223481612da3565b9250602084013561224481612da3565b929592945050506040919091013590565b6000806000806080858703121561226a578081fd5b843561227581612da3565b9350602085013561228581612da3565b925060408501359150606085013567ffffffffffffffff8111156122a7578182fd5b8501601f810187136122b7578182fd5b6122c68782356020840161213d565b91505092959194509250565b600080604083850312156122e4578182fd5b82356122ef81612da3565b91506122fd60208401612195565b90509250929050565b60008060408385031215612318578182fd5b823561232381612da3565b946020939093013593505050565b60006020808385031215612343578182fd5b823567ffffffffffffffff811115612359578283fd5b8301601f81018513612369578283fd5b803561237c61237782612c64565b612c3a565b8181528381019083850185840285018601891015612398578687fd5b8694505b838510156123ba57803583526001949094019391850191850161239c565b50979650505050505050565b600060208083850312156123d8578182fd5b825167ffffffffffffffff8111156123ee578283fd5b8301601f810185136123fe578283fd5b805161240c61237782612c64565b8181528381019083850185840285018601891015612428578687fd5b8694505b838510156123ba57805183526001949094019391850191850161242c565b60006020828403121561245b578081fd5b61151a82612195565b600060208284031215612475578081fd5b813561151a81612db8565b600060208284031215612491578081fd5b815161151a81612db8565b6000602082840312156124ad578081fd5b813567ffffffffffffffff8111156124c3578182fd5b8201601f810184136124d3578182fd5b6118d38482356020840161213d565b6000602082840312156124f3578081fd5b5035919050565b6000806040838503121561250c578182fd5b823591506122fd60208401612195565b60008151808452612534816020860160208601612ccb565b601f01601f19169290920160200192915050565b6000835161255a818460208801612ccb565b83519083019061256e818360208801612ccb565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125be9083018461251c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612600578351835292840192918401916001016125e4565b50909695505050505050565b901515815260200190565b60006020825261151a602083018461251c565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601f908201527f50726f76656e616e636520686173206265656e2073657420616c726561647900604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601690820152754e656564206174206c65617374203220746f6b656e7360501b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526027908201527f4e65656420746f20737570706c7920616e206576656e206e756d626572206f6660408201526620746f6b656e7360c81b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612c5c57612c5c612d8d565b604052919050565b600067ffffffffffffffff821115612c7e57612c7e612d8d565b5060209081020190565b60008219821115612c9b57612c9b612d61565b500190565b600082612caf57612caf612d77565b500490565b600082821015612cc657612cc6612d61565b500390565b60005b83811015612ce6578181015183820152602001612cce565b838111156114985750506000910152565b600281046001821680612d0b57607f821691505b60208210811415612d2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d4657612d46612d61565b5060010190565b600082612d5c57612d5c612d77565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093857600080fd5b6001600160e01b03198116811461093857600080fdfea26469706673582212200559ccd0b0c13153467778e800b0a46064a5d4b7395d70940c02ce4b8de2c4b264736f6c63430008000033

Deployed Bytecode Sourcemap

46266:4585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40043:224;;;;;;;;;;-1:-1:-1;40043:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27935:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29494:221::-;;;;;;;;;;-1:-1:-1;29494:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29017:411::-;;;;;;;;;;-1:-1:-1;29017:411:0;;;;;:::i;:::-;;:::i;:::-;;46758:29;;;;;;;;;;;;;:::i;40683:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30384:339::-;;;;;;;;;;-1:-1:-1;30384:339:0;;;;;:::i;:::-;;:::i;50279:121::-;;;;;;:::i;:::-;;:::i;40351:256::-;;;;;;;;;;-1:-1:-1;40351:256:0;;;;;:::i;:::-;;:::i;47893:115::-;;;;;;;;;;-1:-1:-1;47893:115:0;;;;;:::i;:::-;;:::i;30794:185::-;;;;;;;;;;-1:-1:-1;30794:185:0;;;;;:::i;:::-;;:::i;49092:342::-;;;;;;;;;;-1:-1:-1;49092:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40873:233::-;;;;;;;;;;-1:-1:-1;40873:233:0;;;;;:::i;:::-;;:::i;47006:875::-;;;;;;;;;;-1:-1:-1;47006:875:0;;;;;:::i;:::-;;:::i;49809:104::-;;;;;;;;;;-1:-1:-1;49809:104:0;;;;;:::i;:::-;;:::i;27629:239::-;;;;;;;;;;-1:-1:-1;27629:239:0;;;;;:::i;:::-;;:::i;46678:31::-;;;;;;;;;;;;;:::i;48163:357::-;;;;;;;;;;-1:-1:-1;48163:357:0;;;;;:::i;:::-;;:::i;27359:208::-;;;;;;;;;;-1:-1:-1;27359:208:0;;;;;:::i;:::-;;:::i;7634:94::-;;;;;;;;;;;;;:::i;48020:131::-;;;;;;;;;;-1:-1:-1;48020:131:0;;;;;:::i;:::-;;:::i;6983:87::-;;;;;;;;;;;;;:::i;50412:99::-;;;;;;;;;;-1:-1:-1;50412:99:0;;;;;:::i;:::-;;:::i;28104:104::-;;;;;;;;;;;;;:::i;29787:295::-;;;;;;;;;;-1:-1:-1;29787:295:0;;;;;:::i;:::-;;:::i;48532:548::-;;;;;;;;;;-1:-1:-1;48532:548:0;;;;;:::i;:::-;;:::i;31050:328::-;;;;;;;;;;-1:-1:-1;31050:328:0;;;;;:::i;:::-;;:::i;28279:334::-;;;;;;;;;;-1:-1:-1;28279:334:0;;;;;:::i;:::-;;:::i;49446:233::-;;;;;;;;;;-1:-1:-1;49446:233:0;;;;;:::i;:::-;;:::i;50183:88::-;;;;;;;;;;;;;:::i;49925:104::-;;;;;;;;;;;;;:::i;50041:130::-;;;;;;;;;;-1:-1:-1;50041:130:0;;;;;:::i;:::-;;:::i;50523:99::-;;;;;;;;;;;;;:::i;30153:164::-;;;;;;;;;;-1:-1:-1;30153:164:0;;;;;:::i;:::-;;:::i;7883:192::-;;;;;;;;;;-1:-1:-1;7883:192:0;;;;;:::i;:::-;;:::i;50634:214::-;;;;;;;;;;-1:-1:-1;50634:214:0;;;;;:::i;:::-;;:::i;40043:224::-;40145:4;-1:-1:-1;;;;;;40169:50:0;;-1:-1:-1;;;40169:50:0;;:90;;;40223:36;40247:11;40223:23;:36::i;:::-;40162:97;;40043:224;;;;:::o;27935:100::-;27989:13;28022:5;28015:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27935:100;:::o;29494:221::-;29570:7;29598:16;29606:7;29598;:16::i;:::-;29590:73;;;;-1:-1:-1;;;29590:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;29683:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29683:24:0;;29494:221::o;29017:411::-;29098:13;29114:23;29129:7;29114:14;:23::i;:::-;29098:39;;29162:5;-1:-1:-1;;;;;29156:11:0;:2;-1:-1:-1;;;;;29156:11:0;;;29148:57;;;;-1:-1:-1;;;29148:57:0;;;;;;;:::i;:::-;29256:5;-1:-1:-1;;;;;29240:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29240:21:0;;:62;;;;29265:37;29282:5;29289:12;:10;:12::i;29265:37::-;29218:168;;;;-1:-1:-1;;;29218:168:0;;;;;;;:::i;:::-;29399:21;29408:2;29412:7;29399:8;:21::i;:::-;29017:411;;;:::o;46758:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40683:113::-;40771:10;:17;40683:113;:::o;30384:339::-;30579:41;30598:12;:10;:12::i;:::-;30612:7;30579:18;:41::i;:::-;30571:103;;;;-1:-1:-1;;;30571:103:0;;;;;;;:::i;:::-;30687:28;30697:4;30703:2;30707:7;30687:9;:28::i;50279:121::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;50359:32:::1;::::0;50367:10:::1;::::0;50359:32;::::1;;;::::0;50384:6;;50359:32:::1;::::0;;;50384:6;50367:10;50359:32;::::1;;;;;;50351:41;;;::::0;::::1;;50279:121:::0;:::o;40351:256::-;40448:7;40484:23;40501:5;40484:16;:23::i;:::-;40476:5;:31;40468:87;;;;-1:-1:-1;;;40468:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40573:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40351:256::o;47893:115::-;47953:4;47976:24;;;:11;:24;;;;;;;;;47893:115::o;30794:185::-;30932:39;30949:4;30955:2;30959:7;30932:39;;;;;;;;;;;;:16;:39::i;49092:342::-;49153:16;49182:18;49203:17;49213:6;49203:9;:17::i;:::-;49182:38;;49231:25;49273:10;49259:25;;;;;;-1:-1:-1;;;49259:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49259:25:0;;49231:53;;49299:9;49295:106;49314:10;49310:1;:14;49295:106;;;49359:30;49379:6;49387:1;49359:19;:30::i;:::-;49345:8;49354:1;49345:11;;;;;;-1:-1:-1;;;49345:11:0;;;;;;;;;;;;;;;;;;:44;49326:3;;;;:::i;:::-;;;;49295:106;;;-1:-1:-1;49418:8:0;49092:342;-1:-1:-1;;;49092:342:0:o;40873:233::-;40948:7;40984:30;:28;:30::i;:::-;40976:5;:38;40968:95;;;;-1:-1:-1;;;40968:95:0;;;;;;;:::i;:::-;41081:10;41092:5;41081:17;;;;;;-1:-1:-1;;;41081:17:0;;;;;;;;;;;;;;;;;41074:24;;40873:233;;;:::o;47006:875::-;2131:1;2727:7;;:19;;2719:63;;;;-1:-1:-1;;;2719:63:0;;;;;;;:::i;:::-;2131:1;2860:7;:18;47093:11:::1;::::0;::::1;;47084:37;;;;-1:-1:-1::0;;;47084:37:0::1;;;;;;;:::i;:::-;47156:1;47140:6;:13;:17;47132:52;;;;-1:-1:-1::0;;;47132:52:0::1;;;;;;;:::i;:::-;47219:1;47203:6;:13;:17;;;;:::i;:::-;:22:::0;47195:74:::1;;;;-1:-1:-1::0;;;47195:74:0::1;;;;;;;:::i;:::-;47285:9;47280:594;47302:6;:13;47298:1;:17;47280:594;;;47355:6:::0;47362:3:::1;:1:::0;47364::::1;47362:3;:::i;:::-;47355:11;;;;;;-1:-1:-1::0;;;47355:11:0::1;;;;;;;;;;;;;;;47342:6;47349:1;47342:9;;;;;;-1:-1:-1::0;;;47342:9:0::1;;;;;;;;;;;;;;;:24;;:68;;;;;47388:11;:22;47400:6;47407:1;47400:9;;;;;;-1:-1:-1::0;;;47400:9:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;47388:22;;;::::1;::::0;;;;;;-1:-1:-1;47388:22:0;;::::1;;47387:23;47342:68;:115;;;;-1:-1:-1::0;47433:11:0::1;:24;47445:6:::0;47452:3:::1;:1:::0;47454::::1;47452:3;:::i;:::-;47445:11;;;;;;-1:-1:-1::0;;;47445:11:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;47433:24;;;::::1;::::0;;;;;;-1:-1:-1;47433:24:0;;::::1;;47432:25;47342:115;:209;;;;-1:-1:-1::0;47490:25:0::1;::::0;47526:9;;47541:10:::1;::::0;-1:-1:-1;;;;;47490:25:0::1;::::0;47478:46:::1;::::0;47526:6;;47533:1;;47526:9;::::1;;;-1:-1:-1::0;;;47526:9:0::1;;;;;;;;;;;;;;;47478:59;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47478:73:0::1;;47342:209;:305;;;;-1:-1:-1::0;47584:25:0::1;::::0;47637:10:::1;::::0;-1:-1:-1;;;;;47584:25:0::1;47572:46;47620:6:::0;47627:3:::1;:1:::0;47584:25;47627:3:::1;:::i;:::-;47620:11;;;;;;-1:-1:-1::0;;;47620:11:0::1;;;;;;;;;;;;;;;47572:61;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47572:75:0::1;;47342:305;47338:525;;;47697:4;47672:11;:22;47684:6;47691:1;47684:9;;;;;;-1:-1:-1::0;;;47684:9:0::1;;;;;;;;;;;;;;;47672:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47751:4;47724:11;:24;47736:6;47743:1;47745;47743:3;;;;:::i;:::-;47736:11;;;;;;-1:-1:-1::0;;;47736:11:0::1;;;;;;;;;;;;;;;47724:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;47778:8;;:11;;;;;;;;;:::i;:::-;;;;;;47812:34;47823:10;47836:8;;47812:9;:34::i;:::-;47319:3;:1:::0;47321::::1;47319:3;:::i;:::-;47317:5;;47280:594;;;-1:-1:-1::0;;2087:1:0;3039:7;:22;47006:875::o;49809:104::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;49882:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49809:104:::0;:::o;27629:239::-;27701:7;27737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27737:16:0;27772:19;27764:73;;;;-1:-1:-1;;;27764:73:0;;;;;;;:::i;46678:31::-;;;;;;:::o;48163:357::-;48293:25;;48281:62;;-1:-1:-1;;;48281:62:0;;48234:7;;;;-1:-1:-1;;;;;48293:25:0;;;;48281:52;;:62;;48335:6;;48281:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48281:62:0;;;;;;;;;;;;:::i;:::-;48253:90;;48354:13;48387:9;48382:108;48404:8;:15;48400:1;:19;48382:108;;;48445:11;:24;48457:8;48466:1;48457:11;;;;;;-1:-1:-1;;;48457:11:0;;;;;;;;;;;;;;;;;;;;48445:24;;;;;;;;;;-1:-1:-1;48445:24:0;;;;48440:38;;48471:7;;;;:::i;:::-;;;;48440:38;48421:3;;;;:::i;:::-;;;;48382:108;;27359:208;27431:7;-1:-1:-1;;;;;27459:19:0;;27451:74;;;;-1:-1:-1;;;27451:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;27543:16:0;;;;;:9;:16;;;;;;;27359:208::o;7634:94::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;7699:21:::1;7717:1;7699:9;:21::i;:::-;7634:94::o:0;48020:131::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;48107:24:::1;::::0;;;:11:::1;:24;::::0;;;;;:36;;-1:-1:-1;;48107:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48020:131::o;6983:87::-;7056:6;;-1:-1:-1;;;;;7056:6:0;6983:87;:::o;50412:99::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;50485:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;28104:104::-:0;28160:13;28193:7;28186:14;;;;;:::i;29787:295::-;29902:12;:10;:12::i;:::-;-1:-1:-1;;;;;29890:24:0;:8;-1:-1:-1;;;;;29890:24:0;;;29882:62;;;;-1:-1:-1;;;29882:62:0;;;;;;;:::i;:::-;30002:8;29957:18;:32;29976:12;:10;:12::i;:::-;-1:-1:-1;;;;;29957:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29957:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29957:53:0;;;;;;;;;;;30041:12;:10;:12::i;:::-;-1:-1:-1;;;;;30026:48:0;;30065:8;30026:48;;;;;;:::i;:::-;;;;;;;;29787:295;;:::o;48532:548::-;48676:25;;48664:62;;-1:-1:-1;;;48664:62:0;;48608:16;;48636:25;;-1:-1:-1;;;;;48676:25:0;;;;48664:52;;:62;;48718:6;;48664:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48664:62:0;;;;;;;;;;;;:::i;:::-;48636:90;;48737:31;48785:32;48810:6;48785:24;:32::i;:::-;48771:47;;;;;;-1:-1:-1;;;48771:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48771:47:0;;48737:81;;48829:9;48858;48853:188;48875:8;:15;48871:1;:19;48853:188;;;48916:11;:24;48928:8;48937:1;48928:11;;;;;;-1:-1:-1;;;48928:11:0;;;;;;;;;;;;;;;;;;;;48916:24;;;;;;;;;;-1:-1:-1;48916:24:0;;;;48911:119;;48981:8;48990:1;48981:11;;;;;;-1:-1:-1;;;48981:11:0;;;;;;;;;;;;;;;48961:14;48976:1;48961:17;;;;;;-1:-1:-1;;;48961:17:0;;;;;;;;;;;;;;;;;;:31;49011:3;;;;:::i;:::-;;;;48911:119;48892:3;;;;:::i;:::-;;;;48853:188;;;-1:-1:-1;49058:14:0;;48532:548;-1:-1:-1;;;;48532:548:0:o;31050:328::-;31225:41;31244:12;:10;:12::i;:::-;31258:7;31225:18;:41::i;:::-;31217:103;;;;-1:-1:-1;;;31217:103:0;;;;;;;:::i;:::-;31331:39;31345:4;31351:2;31355:7;31364:5;31331:13;:39::i;:::-;31050:328;;;;:::o;28279:334::-;28352:13;28386:16;28394:7;28386;:16::i;:::-;28378:76;;;;-1:-1:-1;;;28378:76:0;;;;;;;:::i;:::-;28467:21;28491:10;:8;:10::i;:::-;28467:34;;28543:1;28525:7;28519:21;:25;:86;;;;;;;;;;;;;;;;;28571:7;28580:18;:7;:16;:18::i;:::-;28554:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28519:86;28512:93;28279:334;-1:-1:-1;;;28279:334:0:o;49446:233::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;49506:11:::1;:17:::0;;-1:-1:-1;;49506:17:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;49534:138:::1;;49563:30;::::0;::::1;::::0;;;::::1;49534:138;;;49631:29;::::0;::::1;::::0;;;::::1;49446:233:::0;:::o;50183:88::-;50253:10;;50183:88;:::o;49925:104::-;49973:7;50013:8;;50000:10;;:21;;;;:::i;:::-;49993:28;;49925:104;:::o;50041:130::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;50127:25:::1;:36:::0;;-1:-1:-1;;;;;;50127:36:0::1;-1:-1:-1::0;;;;;50127:36:0;;;::::1;::::0;;;::::1;::::0;;50041:130::o;50523:99::-;50569:13;50602:12;50595:19;;;;;:::i;30153:164::-;-1:-1:-1;;;;;30274:25:0;;;30250:4;30274:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30153:164::o;7883:192::-;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7972:22:0;::::1;7964:73;;;;-1:-1:-1::0;;;7964:73:0::1;;;;;;;:::i;:::-;8048:19;8058:8;8048:9;:19::i;50634:214::-:0;7214:12;:10;:12::i;:::-;-1:-1:-1;;;;;7203:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7203:23:0;;7195:68;;;;-1:-1:-1;;;7195:68:0;;;;;;;:::i;:::-;50723:14:::1;::::0;::::1;::::0;::::1;;;50722:15;50714:59;;;;-1:-1:-1::0;;;50714:59:0::1;;;;;;;:::i;:::-;50784:24:::0;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;50819:14:0::1;:21:::0;;-1:-1:-1;;50819:21:0::1;;;::::0;;50634:214::o;26990:305::-;27092:4;-1:-1:-1;;;;;;27129:40:0;;-1:-1:-1;;;27129:40:0;;:105;;-1:-1:-1;;;;;;;27186:48:0;;-1:-1:-1;;;27186:48:0;27129:105;:158;;;;27251:36;27275:11;27251:23;:36::i;32888:127::-;32953:4;32977:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32977:16:0;:30;;;32888:127::o;5771:98::-;5851:10;5771:98;:::o;36870:174::-;36945:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36945:29:0;-1:-1:-1;;;;;36945:29:0;;;;;;;;:24;;36999:23;36945:24;36999:14;:23::i;:::-;-1:-1:-1;;;;;36990:46:0;;;;;;;;;;;36870:174;;:::o;33182:348::-;33275:4;33300:16;33308:7;33300;:16::i;:::-;33292:73;;;;-1:-1:-1;;;33292:73:0;;;;;;;:::i;:::-;33376:13;33392:23;33407:7;33392:14;:23::i;:::-;33376:39;;33445:5;-1:-1:-1;;;;;33434:16:0;:7;-1:-1:-1;;;;;33434:16:0;;:51;;;;33478:7;-1:-1:-1;;;;;33454:31:0;:20;33466:7;33454:11;:20::i;:::-;-1:-1:-1;;;;;33454:31:0;;33434:51;:87;;;;33489:32;33506:5;33513:7;33489:16;:32::i;:::-;33426:96;33182:348;-1:-1:-1;;;;33182:348:0:o;36174:578::-;36333:4;-1:-1:-1;;;;;36306:31:0;:23;36321:7;36306:14;:23::i;:::-;-1:-1:-1;;;;;36306:31:0;;36298:85;;;;-1:-1:-1;;;36298:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36402:16:0;;36394:65;;;;-1:-1:-1;;;36394:65:0;;;;;;;:::i;:::-;36472:39;36493:4;36499:2;36503:7;36472:20;:39::i;:::-;36576:29;36593:1;36597:7;36576:8;:29::i;:::-;-1:-1:-1;;;;;36618:15:0;;;;;;:9;:15;;;;;:20;;36637:1;;36618:15;:20;;36637:1;;36618:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36649:13:0;;;;;;:9;:13;;;;;:18;;36666:1;;36649:13;:18;;36666:1;;36649:18;:::i;:::-;;;;-1:-1:-1;;36678:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36678:21:0;-1:-1:-1;;;;;36678:21:0;;;;;;;;;36717:27;;36678:16;;36717:27;;;;;;;36174:578;;;:::o;33872:110::-;33948:26;33958:2;33962:7;33948:26;;;;;;;;;;;;:9;:26::i;8083:173::-;8158:6;;;-1:-1:-1;;;;;8175:17:0;;;-1:-1:-1;;;;;;8175:17:0;;;;;;;8208:40;;8158:6;;;8175:17;8158:6;;8208:40;;8139:16;;8208:40;8083:173;;:::o;32260:315::-;32417:28;32427:4;32433:2;32437:7;32417:9;:28::i;:::-;32464:48;32487:4;32493:2;32497:7;32506:5;32464:22;:48::i;:::-;32456:111;;;;-1:-1:-1;;;32456:111:0;;;;;;;:::i;49687:114::-;49747:13;49780;49773:20;;;;;:::i;3387:723::-;3443:13;3664:10;3660:53;;-1:-1:-1;3691:10:0;;;;;;;;;;;;-1:-1:-1;;;3691:10:0;;;;;;3660:53;3738:5;3723:12;3779:78;3786:9;;3779:78;;3812:8;;;;:::i;:::-;;-1:-1:-1;3835:10:0;;-1:-1:-1;3843:2:0;3835:10;;:::i;:::-;;;3779:78;;;3867:19;3899:6;3889:17;;;;;;-1:-1:-1;;;3889:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3889:17:0;;3867:39;;3917:154;3924:10;;3917:154;;3951:11;3961:1;3951:11;;:::i;:::-;;-1:-1:-1;4020:10:0;4028:2;4020:5;:10;:::i;:::-;4007:24;;:2;:24;:::i;:::-;3994:39;;3977:6;3984;3977:14;;;;;;-1:-1:-1;;;3977:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3977:56:0;;;;;;;;-1:-1:-1;4048:11:0;4057:2;4048:11;;:::i;:::-;;;3917:154;;18969:157;-1:-1:-1;;;;;;19078:40:0;;-1:-1:-1;;;19078:40:0;18969:157;;;:::o;41719:589::-;41863:45;41890:4;41896:2;41900:7;41863:26;:45::i;:::-;-1:-1:-1;;;;;41925:18:0;;41921:187;;41960:40;41992:7;41960:31;:40::i;:::-;41921:187;;;42030:2;-1:-1:-1;;;;;42022:10:0;:4;-1:-1:-1;;;;;42022:10:0;;42018:90;;42049:47;42082:4;42088:7;42049:32;:47::i;:::-;-1:-1:-1;;;;;42122:16:0;;42118:183;;42155:45;42192:7;42155:36;:45::i;:::-;42118:183;;;42228:4;-1:-1:-1;;;;;42222:10:0;:2;-1:-1:-1;;;;;42222:10:0;;42218:83;;42249:40;42277:2;42281:7;42249:27;:40::i;34209:321::-;34339:18;34345:2;34349:7;34339:5;:18::i;:::-;34390:54;34421:1;34425:2;34429:7;34438:5;34390:22;:54::i;:::-;34368:154;;;;-1:-1:-1;;;34368:154:0;;;;;;;:::i;37609:799::-;37764:4;37785:15;:2;-1:-1:-1;;;;;37785:13:0;;:15::i;:::-;37781:620;;;37837:2;-1:-1:-1;;;;;37821:36:0;;37858:12;:10;:12::i;:::-;37872:4;37878:7;37887:5;37821:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37821:72:0;;;;;;;;-1:-1:-1;;37821:72:0;;;;;;;;;;;;:::i;:::-;;;37817:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38063:13:0;;38059:272;;38106:60;;-1:-1:-1;;;38106:60:0;;;;;;;:::i;38059:272::-;38281:6;38275:13;38266:6;38262:2;38258:15;38251:38;37817:529;-1:-1:-1;;;;;;37944:51:0;-1:-1:-1;;;37944:51:0;;-1:-1:-1;37937:58:0;;37781:620;-1:-1:-1;38385:4:0;37609:799;;;;;;:::o;43031:164::-;43135:10;:17;;43108:24;;;;:15;:24;;;;;:44;;;43163:24;;;;;;;;;;;;43031:164::o;43822:988::-;44088:22;44138:1;44113:22;44130:4;44113:16;:22::i;:::-;:26;;;;:::i;:::-;44150:18;44171:26;;;:17;:26;;;;;;44088:51;;-1:-1:-1;44304:28:0;;;44300:328;;-1:-1:-1;;;;;44371:18:0;;44349:19;44371:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44422:30;;;;;;:44;;;44539:30;;:17;:30;;;;;:43;;;44300:328;-1:-1:-1;44724:26:0;;;;:17;:26;;;;;;;;44717:33;;;-1:-1:-1;;;;;44768:18:0;;;;;:12;:18;;;;;:34;;;;;;;44761:41;43822:988::o;45105:1079::-;45383:10;:17;45358:22;;45383:21;;45403:1;;45383:21;:::i;:::-;45415:18;45436:24;;;:15;:24;;;;;;45809:10;:26;;45358:46;;-1:-1:-1;45436:24:0;;45358:46;;45809:26;;;;-1:-1:-1;;;45809:26:0;;;;;;;;;;;;;;;;;45787:48;;45873:11;45848:10;45859;45848:22;;;;;;-1:-1:-1;;;45848:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45953:28;;;:15;:28;;;;;;;:41;;;46125:24;;;;;46118:31;46160:10;:16;;;;;-1:-1:-1;;;46160:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45105:1079;;;;:::o;42609:221::-;42694:14;42711:20;42728:2;42711:16;:20::i;:::-;-1:-1:-1;;;;;42742:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42787:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42609:221:0:o;34866:382::-;-1:-1:-1;;;;;34946:16:0;;34938:61;;;;-1:-1:-1;;;34938:61:0;;;;;;;:::i;:::-;35019:16;35027:7;35019;:16::i;:::-;35018:17;35010:58;;;;-1:-1:-1;;;35010:58:0;;;;;;;:::i;:::-;35081:45;35110:1;35114:2;35118:7;35081:20;:45::i;:::-;-1:-1:-1;;;;;35139:13:0;;;;;;:9;:13;;;;;:18;;35156:1;;35139:13;:18;;35156:1;;35139:18;:::i;:::-;;;;-1:-1:-1;;35168:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35168:21:0;-1:-1:-1;;;;;35168:21:0;;;;;;;;35207:33;;35168:16;;;35207:33;;35168:16;;35207:33;34866:382;;:::o;9029:387::-;9352:20;9400:8;;;9029:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:162::-;495:20;;551:13;;544:21;534:32;;524:2;;580:1;577;570:12;595:259;;707:2;695:9;686:7;682:23;678:32;675:2;;;728:6;720;713:22;675:2;772:9;759:23;791:33;818:5;791:33;:::i;859:263::-;;982:2;970:9;961:7;957:23;953:32;950:2;;;1003:6;995;988:22;950:2;1040:9;1034:16;1059:33;1086:5;1059:33;:::i;1127:402::-;;;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:33;1367:5;1340:33;:::i;:::-;1392:5;-1:-1:-1;1449:2:1;1434:18;;1421:32;1462:35;1421:32;1462:35;:::i;:::-;1516:7;1506:17;;;1214:315;;;;;:::o;1534:470::-;;;;1680:2;1668:9;1659:7;1655:23;1651:32;1648:2;;;1701:6;1693;1686:22;1648:2;1745:9;1732:23;1764:33;1791:5;1764:33;:::i;:::-;1816:5;-1:-1:-1;1873:2:1;1858:18;;1845:32;1886:35;1845:32;1886:35;:::i;:::-;1638:366;;1940:7;;-1:-1:-1;;;1994:2:1;1979:18;;;;1966:32;;1638:366::o;2009:830::-;;;;;2181:3;2169:9;2160:7;2156:23;2152:33;2149:2;;;2203:6;2195;2188:22;2149:2;2247:9;2234:23;2266:33;2293:5;2266:33;:::i;:::-;2318:5;-1:-1:-1;2375:2:1;2360:18;;2347:32;2388:35;2347:32;2388:35;:::i;:::-;2442:7;-1:-1:-1;2496:2:1;2481:18;;2468:32;;-1:-1:-1;2551:2:1;2536:18;;2523:32;2578:18;2567:30;;2564:2;;;2615:6;2607;2600:22;2564:2;2643:22;;2696:4;2688:13;;2684:27;-1:-1:-1;2674:2:1;;2730:6;2722;2715:22;2674:2;2758:75;2825:7;2820:2;2807:16;2802:2;2798;2794:11;2758:75;:::i;:::-;2748:85;;;2139:700;;;;;;;:::o;2844:329::-;;;2970:2;2958:9;2949:7;2945:23;2941:32;2938:2;;;2991:6;2983;2976:22;2938:2;3035:9;3022:23;3054:33;3081:5;3054:33;:::i;:::-;3106:5;-1:-1:-1;3130:37:1;3163:2;3148:18;;3130:37;:::i;:::-;3120:47;;2928:245;;;;;:::o;3178:327::-;;;3307:2;3295:9;3286:7;3282:23;3278:32;3275:2;;;3328:6;3320;3313:22;3275:2;3372:9;3359:23;3391:33;3418:5;3391:33;:::i;:::-;3443:5;3495:2;3480:18;;;;3467:32;;-1:-1:-1;;;3265:240:1:o;3510:953::-;;3625:2;3668;3656:9;3647:7;3643:23;3639:32;3636:2;;;3689:6;3681;3674:22;3636:2;3734:9;3721:23;3767:18;3759:6;3756:30;3753:2;;;3804:6;3796;3789:22;3753:2;3832:22;;3885:4;3877:13;;3873:27;-1:-1:-1;3863:2:1;;3919:6;3911;3904:22;3863:2;3960;3947:16;3983:65;3998:49;4044:2;3998:49;:::i;:::-;3983:65;:::i;:::-;4082:15;;;4113:12;;;;4145:11;;;4183;;;4175:20;;4171:29;;4168:42;-1:-1:-1;4165:2:1;;;4228:6;4220;4213:22;4165:2;4255:6;4246:15;;4270:163;4284:2;4281:1;4278:9;4270:163;;;4341:17;;4329:30;;4302:1;4295:9;;;;;4379:12;;;;4411;;4270:163;;;-1:-1:-1;4452:5:1;3605:858;-1:-1:-1;;;;;;;3605:858:1:o;4468:943::-;;4594:2;4637;4625:9;4616:7;4612:23;4608:32;4605:2;;;4658:6;4650;4643:22;4605:2;4696:9;4690:16;4729:18;4721:6;4718:30;4715:2;;;4766:6;4758;4751:22;4715:2;4794:22;;4847:4;4839:13;;4835:27;-1:-1:-1;4825:2:1;;4881:6;4873;4866:22;4825:2;4915;4909:9;4938:65;4953:49;4999:2;4953:49;:::i;4938:65::-;5037:15;;;5068:12;;;;5100:11;;;5138;;;5130:20;;5126:29;;5123:42;-1:-1:-1;5120:2:1;;;5183:6;5175;5168:22;5120:2;5210:6;5201:15;;5225:156;5239:2;5236:1;5233:9;5225:156;;;5296:10;;5284:23;;5257:1;5250:9;;;;;5327:12;;;;5359;;5225:156;;5416:192;;5525:2;5513:9;5504:7;5500:23;5496:32;5493:2;;;5546:6;5538;5531:22;5493:2;5574:28;5592:9;5574:28;:::i;5613:257::-;;5724:2;5712:9;5703:7;5699:23;5695:32;5692:2;;;5745:6;5737;5730:22;5692:2;5789:9;5776:23;5808:32;5834:5;5808:32;:::i;5875:261::-;;5997:2;5985:9;5976:7;5972:23;5968:32;5965:2;;;6018:6;6010;6003:22;5965:2;6055:9;6049:16;6074:32;6100:5;6074:32;:::i;6141:482::-;;6263:2;6251:9;6242:7;6238:23;6234:32;6231:2;;;6284:6;6276;6269:22;6231:2;6329:9;6316:23;6362:18;6354:6;6351:30;6348:2;;;6399:6;6391;6384:22;6348:2;6427:22;;6480:4;6472:13;;6468:27;-1:-1:-1;6458:2:1;;6514:6;6506;6499:22;6458:2;6542:75;6609:7;6604:2;6591:16;6586:2;6582;6578:11;6542:75;:::i;6628:190::-;;6740:2;6728:9;6719:7;6715:23;6711:32;6708:2;;;6761:6;6753;6746:22;6708:2;-1:-1:-1;6789:23:1;;6698:120;-1:-1:-1;6698:120:1:o;6823:260::-;;;6949:2;6937:9;6928:7;6924:23;6920:32;6917:2;;;6970:6;6962;6955:22;6917:2;7011:9;6998:23;6988:33;;7040:37;7073:2;7062:9;7058:18;7040:37;:::i;7088:259::-;;7169:5;7163:12;7196:6;7191:3;7184:19;7212:63;7268:6;7261:4;7256:3;7252:14;7245:4;7238:5;7234:16;7212:63;:::i;:::-;7329:2;7308:15;-1:-1:-1;;7304:29:1;7295:39;;;;7336:4;7291:50;;7139:208;-1:-1:-1;;7139:208:1:o;7352:470::-;;7569:6;7563:13;7585:53;7631:6;7626:3;7619:4;7611:6;7607:17;7585:53;:::i;:::-;7701:13;;7660:16;;;;7723:57;7701:13;7660:16;7757:4;7745:17;;7723:57;:::i;:::-;7796:20;;7539:283;-1:-1:-1;;;;7539:283:1:o;7827:203::-;-1:-1:-1;;;;;7991:32:1;;;;7973:51;;7961:2;7946:18;;7928:102::o;8035:490::-;-1:-1:-1;;;;;8304:15:1;;;8286:34;;8356:15;;8351:2;8336:18;;8329:43;8403:2;8388:18;;8381:34;;;8451:3;8446:2;8431:18;;8424:31;;;8035:490;;8472:47;;8499:19;;8491:6;8472:47;:::i;:::-;8464:55;8238:287;-1:-1:-1;;;;;;8238:287:1:o;8530:635::-;8701:2;8753:21;;;8823:13;;8726:18;;;8845:22;;;8530:635;;8701:2;8924:15;;;;8898:2;8883:18;;;8530:635;8970:169;8984:6;8981:1;8978:13;8970:169;;;9045:13;;9033:26;;9114:15;;;;9079:12;;;;9006:1;8999:9;8970:169;;;-1:-1:-1;9156:3:1;;8681:484;-1:-1:-1;;;;;;8681:484:1:o;9170:187::-;9335:14;;9328:22;9310:41;;9298:2;9283:18;;9265:92::o;9362:221::-;;9511:2;9500:9;9493:21;9531:46;9573:2;9562:9;9558:18;9550:6;9531:46;:::i;9588:335::-;9790:2;9772:21;;;9829:2;9809:18;;;9802:30;-1:-1:-1;;;9863:2:1;9848:18;;9841:41;9914:2;9899:18;;9762:161::o;9928:407::-;10130:2;10112:21;;;10169:2;10149:18;;;10142:30;10208:34;10203:2;10188:18;;10181:62;-1:-1:-1;;;10274:2:1;10259:18;;10252:41;10325:3;10310:19;;10102:233::o;10340:414::-;10542:2;10524:21;;;10581:2;10561:18;;;10554:30;10620:34;10615:2;10600:18;;10593:62;-1:-1:-1;;;10686:2:1;10671:18;;10664:48;10744:3;10729:19;;10514:240::o;10759:402::-;10961:2;10943:21;;;11000:2;10980:18;;;10973:30;11039:34;11034:2;11019:18;;11012:62;-1:-1:-1;;;11105:2:1;11090:18;;11083:36;11151:3;11136:19;;10933:228::o;11166:352::-;11368:2;11350:21;;;11407:2;11387:18;;;11380:30;11446;11441:2;11426:18;;11419:58;11509:2;11494:18;;11340:178::o;11523:400::-;11725:2;11707:21;;;11764:2;11744:18;;;11737:30;11803:34;11798:2;11783:18;;11776:62;-1:-1:-1;;;11869:2:1;11854:18;;11847:34;11913:3;11898:19;;11697:226::o;11928:349::-;12130:2;12112:21;;;12169:2;12149:18;;;12142:30;12208:27;12203:2;12188:18;;12181:55;12268:2;12253:18;;12102:175::o;12282:408::-;12484:2;12466:21;;;12523:2;12503:18;;;12496:30;12562:34;12557:2;12542:18;;12535:62;-1:-1:-1;;;12628:2:1;12613:18;;12606:42;12680:3;12665:19;;12456:234::o;12695:420::-;12897:2;12879:21;;;12936:2;12916:18;;;12909:30;12975:34;12970:2;12955:18;;12948:62;13046:26;13041:2;13026:18;;13019:54;13105:3;13090:19;;12869:246::o;13120:406::-;13322:2;13304:21;;;13361:2;13341:18;;;13334:30;13400:34;13395:2;13380:18;;13373:62;-1:-1:-1;;;13466:2:1;13451:18;;13444:40;13516:3;13501:19;;13294:232::o;13531:405::-;13733:2;13715:21;;;13772:2;13752:18;;;13745:30;13811:34;13806:2;13791:18;;13784:62;-1:-1:-1;;;13877:2:1;13862:18;;13855:39;13926:3;13911:19;;13705:231::o;13941:356::-;14143:2;14125:21;;;14162:18;;;14155:30;14221:34;14216:2;14201:18;;14194:62;14288:2;14273:18;;14115:182::o;14302:355::-;14504:2;14486:21;;;14543:2;14523:18;;;14516:30;14582:33;14577:2;14562:18;;14555:61;14648:2;14633:18;;14476:181::o;14662:408::-;14864:2;14846:21;;;14903:2;14883:18;;;14876:30;14942:34;14937:2;14922:18;;14915:62;-1:-1:-1;;;15008:2:1;14993:18;;14986:42;15060:3;15045:19;;14836:234::o;15075:356::-;15277:2;15259:21;;;15296:18;;;15289:30;15355:34;15350:2;15335:18;;15328:62;15422:2;15407:18;;15249:182::o;15436:405::-;15638:2;15620:21;;;15677:2;15657:18;;;15650:30;15716:34;15711:2;15696:18;;15689:62;-1:-1:-1;;;15782:2:1;15767:18;;15760:39;15831:3;15816:19;;15610:231::o;15846:411::-;16048:2;16030:21;;;16087:2;16067:18;;;16060:30;16126:34;16121:2;16106:18;;16099:62;-1:-1:-1;;;16192:2:1;16177:18;;16170:45;16247:3;16232:19;;16020:237::o;16262:397::-;16464:2;16446:21;;;16503:2;16483:18;;;16476:30;16542:34;16537:2;16522:18;;16515:62;-1:-1:-1;;;16608:2:1;16593:18;;16586:31;16649:3;16634:19;;16436:223::o;16664:413::-;16866:2;16848:21;;;16905:2;16885:18;;;16878:30;16944:34;16939:2;16924:18;;16917:62;-1:-1:-1;;;17010:2:1;16995:18;;16988:47;17067:3;17052:19;;16838:239::o;17082:408::-;17284:2;17266:21;;;17323:2;17303:18;;;17296:30;17362:34;17357:2;17342:18;;17335:62;-1:-1:-1;;;17428:2:1;17413:18;;17406:42;17480:3;17465:19;;17256:234::o;17495:346::-;17697:2;17679:21;;;17736:2;17716:18;;;17709:30;-1:-1:-1;;;17770:2:1;17755:18;;17748:52;17832:2;17817:18;;17669:172::o;17846:355::-;18048:2;18030:21;;;18087:2;18067:18;;;18060:30;18126:33;18121:2;18106:18;;18099:61;18192:2;18177:18;;18020:181::o;18206:403::-;18408:2;18390:21;;;18447:2;18427:18;;;18420:30;18486:34;18481:2;18466:18;;18459:62;-1:-1:-1;;;18552:2:1;18537:18;;18530:37;18599:3;18584:19;;18380:229::o;18614:177::-;18760:25;;;18748:2;18733:18;;18715:76::o;18796:251::-;18866:2;18860:9;18896:17;;;18943:18;18928:34;;18964:22;;;18925:62;18922:2;;;18990:18;;:::i;:::-;19026:2;19019:22;18840:207;;-1:-1:-1;18840:207:1:o;19052:192::-;;19151:18;19143:6;19140:30;19137:2;;;19173:18;;:::i;:::-;-1:-1:-1;19233:4:1;19214:17;;;19210:28;;19127:117::o;19249:128::-;;19320:1;19316:6;19313:1;19310:13;19307:2;;;19326:18;;:::i;:::-;-1:-1:-1;19362:9:1;;19297:80::o;19382:120::-;;19448:1;19438:2;;19453:18;;:::i;:::-;-1:-1:-1;19487:9:1;;19428:74::o;19507:125::-;;19575:1;19572;19569:8;19566:2;;;19580:18;;:::i;:::-;-1:-1:-1;19617:9:1;;19556:76::o;19637:258::-;19709:1;19719:113;19733:6;19730:1;19727:13;19719:113;;;19809:11;;;19803:18;19790:11;;;19783:39;19755:2;19748:10;19719:113;;;19850:6;19847:1;19844:13;19841:2;;;-1:-1:-1;;19885:1:1;19867:16;;19860:27;19690:205::o;19900:380::-;19985:1;19975:12;;20032:1;20022:12;;;20043:2;;20097:4;20089:6;20085:17;20075:27;;20043:2;20150;20142:6;20139:14;20119:18;20116:38;20113:2;;;20196:10;20191:3;20187:20;20184:1;20177:31;20231:4;20228:1;20221:15;20259:4;20256:1;20249:15;20113:2;;19955:325;;;:::o;20285:135::-;;-1:-1:-1;;20345:17:1;;20342:2;;;20365:18;;:::i;:::-;-1:-1:-1;20412:1:1;20401:13;;20332:88::o;20425:112::-;;20483:1;20473:2;;20488:18;;:::i;:::-;-1:-1:-1;20522:9:1;;20463:74::o;20542:127::-;20603:10;20598:3;20594:20;20591:1;20584:31;20634:4;20631:1;20624:15;20658:4;20655:1;20648:15;20674:127;20735:10;20730:3;20726:20;20723:1;20716:31;20766:4;20763:1;20756:15;20790:4;20787:1;20780:15;20806:127;20867:10;20862:3;20858:20;20855:1;20848:31;20898:4;20895:1;20888:15;20922:4;20919:1;20912:15;20938:133;-1:-1:-1;;;;;21015:31:1;;21005:42;;20995:2;;21061:1;21058;21051:12;21076:133;-1:-1:-1;;;;;;21152:32:1;;21142:43;;21132:2;;21199:1;21196;21189:12

Swarm Source

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