ETH Price: $3,354.65 (-2.76%)
Gas: 3 Gwei

Token

Punkisodes Wen LunchBox (PNKL)
 

Overview

Max Total Supply

0 PNKL

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
herefordecades.eth
Balance
1 PNKL
0xA98220f6dC5DFcA27ff19605a0a6D3E1dDE4CFE8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WenLunchBox

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-13
*/

pragma solidity ^0.8.12;


// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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);
}

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
/**
 * @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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev 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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @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);
}

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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;
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


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

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

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

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

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

/*
__________              __   .__                 .___             
\______   \__ __  ____ |  | _|__| __________   __| _/____   ______
 |     ___/  |  \/    \|  |/ /  |/  ___/  _ \ / __ |/ __ \ /  ___/
 |    |   |  |  /   |  \    <|  |\___ (  <_> ) /_/ \  ___/ \___ \ 
 |____|   |____/|___|  /__|_ \__/____  >____/\____ |\___  >____  >
                     \/     \/       \/           \/    \/     \/ 
*/
interface IPunksData {
    function punkImageSvg(uint16 index) external view returns (string memory svg);
}

interface ICryptoPunks {
    function punkIndexToAddress(uint256) external view returns (address);
}

contract WenLunchBox is ERC721, Ownable {

    address punkContractAddress;
    address punkImagesContractAddress;
    uint256 immutable MAX_SUPPLY;
    uint256 counter = 0;
    string constant LUNCHBOX_IMAGE = '<path d="M23 2h6m-9 1h3m6 0h3M16 4h4m12 0h2M13 5h3m18 0h3M10 6h3m24 0h2M7 7h3m29 0h2M4 8h3m34 0h2M2 9h2m39 0h2M1 10h1m43 0h3M1 11h1m46 0h2M1 12h2m47 0h2M1 13h1m1 0h1m48 0h2M1 14h1m2 0h1m49 0h2M1 15h1m3 0h1m50 0h2M2 16h1m3 0h2m50 0h2M3 17h2m3 0h1m51 0h1M3 18h1m1 0h1m3 0h1m50 0h1M3 19h1m2 0h1m3 0h1m49 0h1M3 20h1m3 0h1m3 0h2m46 0h2M3 21h1m4 0h1m4 0h1m43 0h2m1 0h1M3 22h1m5 0h2m3 0h1m40 0h2m3 0h1M3 23h1m7 0h1m3 0h2m36 0h2m5 0h1M4 24h1m7 0h1m4 0h1m33 0h2m7 0h1M5 25h1m7 0h2m3 0h1m30 0h2m8 0h1M6 26h1m8 0h1m3 0h2m26 0h2m9 0h1M7 27h1m8 0h1m4 0h1m23 0h2m9 0h3M8 28h1m8 0h1m4 0h1m20 0h2m9 0h2m2 0h1M9 29h2m7 0h2m3 0h2m16 0h2m9 0h2m4 0h1m-48 1h1m8 0h1m4 0h1m13 0h2m9 0h2m6 0h1m-47 1h1m8 0h1m4 0h2m9 0h2m9 0h2m8 0h1m-46 1h1m8 0h1m5 0h9m9 0h2m10 0h1m-45 1h1m8 0h2m19 0h2m12 0h1m-44 1h2m8 0h1m16 0h2m13 0h1m-41 1h1m8 0h1m13 0h2m13 0h2m-39 1h1m8 0h2m8 0h3m13 0h2m-36 1h1m9 0h8m14 0h2m-33 1h2m28 0h1m-29 1h1m25 0h2m-27 1h1m22 0h2m-24 1h1m19 0h2m-21 1h1m17 0h1m-18 1h2m13 0h2m-15 1h1m10 0h2m-12 1h2m6 0h2m-8 1h6" stroke="#000"/><path d="m23 3h6m-9 1h1m-5 1h1m-4 1h1m-4 1h1m-9 3h1m-1 1h1m1 1h1m2 2h1m0 1h1m47 16h1m-1 1h1m-9 3h1m-3 1h1" stroke="#cfc4ae"/><path d="M21 4h1m9 0h1M17 5h2m14 0h1M14 6h1m2 0h1m3 0h1m14 0h1M24 7h1m13 0h1M7 8h1m3 0h1m3 0h1m24 0h1M4 9h1m14 0h1M7 10h1m5 0h1M3 11h1m5 0h1m-5 1h1m4 0h1m-6 1h2m3 3h1m0 1h1m0 1h1m42 13h1m-3 1h3m-5 1h5m-7 1h6m-8 1h1m1 0h4m-6 1h4m-7 1h5m-7 1h1m1 0h4m-7 1h1m1 0h1m1 0h1m-5 1h1m1 0h1m-5 1h1m2 0h1m-3 1h1" stroke="#bfb8a7"/><path d="M22 4h9M19 5h14M15 6h2m1 0h3m1 0h14M11 7h13m1 0h13M8 8h3m1 0h3m1 0h17m1 0h1m3 0h1M5 9h14m1 0h10m1 0h1m1 0h1m1 0h3m1 0h1m2 0h1M3 10h4m1 0h5m1 0h17m1 0h1m1 0h1M4 11h5m1 0h18m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1M3 12h1m2 0h4m1 0h16m1 0h1m1 0h1m1 0h1M7 13h16m1 0h1m2 0h1m1 0h1m1 0h1m3 0h1M6 14h1m1 0h13m1 0h1m1 0h3m1 0h1m4 0h1M7 15h1m1 0h10m1 0h2m1 0h1m5 0h1M9 16h1m1 0h6m1 0h2m1 0h1m1 0h1m1 0h1m1 0h1m-18 1h1m1 0h3m1 0h3m2 0h1m2 0h1m-12 1h1m1 0h1m1 0h1m1 0h1m2 0h1m3 0h1m-14 1h3m2 0h1m1 0h1m-6 1h3m-2 1h1m1 1h1m37 8h1m-3 1h1m-3 1h1m-3 1h1m-24 1h1m17 2h1m-3 1h1" stroke="#b2a898"/><path d="M33 8h1m1 0h3m1 0h1M30 9h1m1 0h1m1 0h1m3 0h1m1 0h2m-11 1h1m1 0h1m1 0h9m-16 1h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h1m1 0h6m-19 1h1m1 0h1m1 0h1m1 0h16m-26 1h1m1 0h2m1 0h1m1 0h1m1 0h3m1 0h8m1 0h1m1 0h1m2 0h1m-30 1h1m1 0h1m3 0h1m1 0h4m1 0h9m1 0h1m1 0h1m2 0h1m-31 1h1m2 0h1m1 0h5m1 0h11m1 0h2m1 0h1m1 0h1m-31 1h1m2 0h1m1 0h1m1 0h1m1 0h1m1 0h10m1 0h1m1 0h1m-27 1h1m3 0h2m1 0h2m1 0h11m1 0h2m1 0h1m2 0h1m-30 1h1m1 0h1m1 0h1m1 0h2m1 0h3m1 0h5m1 0h1m1 0h1m3 0h1m-24 1h2m1 0h1m1 0h5m1 0h3m1 0h3m1 0h1m1 0h1m-20 1h14m2 0h1m1 0h1m-20 1h11m1 0h1m1 0h1m1 0h1m4 0h1m-22 1h1m1 0h4m1 0h2m1 0h1m2 0h1m-12 1h6m1 0h1m1 0h1m2 0h1m-12 1h4m1 0h1m3 0h1m-8 1h1m1 0h1m2 0h1m-4 1h1m0 1h1m23 0h1m1 1h1m-3 1h1m-8 1h1m4 0h1m-8 1h1m4 0h1m-9 1h2m4 0h1m-16 1h1m1 0h1m1 0h4m1 0h2m2 0h1m-12 1h1m1 0h1m3 0h1m2 0h2m-12 1h8m1 0h1m0 4h1m-11 1h3m3 0h2" stroke="#9c9d9d"/><path d="M44 10h1m1 1h2m1 1h1m1 1h1m1 1h1m1 1h1M5 21h2m-2 1h3m-3 1h5m-1 1h2m-5 1h3m1 0h2m-5 1h2m1 0h3m-5 1h2m2 0h1m-3 1h2m1 0h2m-4 1h1m1 0h1m1 0h1m-2 1h3m-4 1h1m2 0h2m-3 1h1m2 0h1m-3 1h2m1 0h1m-3 1h2m1 0h2m-4 1h2m1 0h1m15 0h1m-19 1h2m1 0h2m-3 1h1m2 0h1m-3 1h4m15 0h1m-19 1h1m1 0h2m-3 1h1m2 0h1m9 0h1m4 0h1m-17 1h2m12 0h1m-14 1h2m10 0h1" stroke="#9fa7b1"/><path d="m2 13h1m-1 2h1m1 0h1m1 0h1m3 3h1m0 1h1m-4 1h1m0 1h1m4 0h1m0 1h1m41 0h1m-41 1h1m0 1h1m40 0h1m-2 1h1m-2 1h1m-3 1h1m-3 1h1m-27 7h1m1 1h1" stroke="#5f6266"/><path d="m4 13h1m39 3h1m2 1h1m-16 1h1m3 0h1m4 0h1m-16 1h1m3 0h1m8 0h1m-26 1h1m27 1h1m-20 1h1m4 0h1m4 0h1m1 0h1m-18 1h1m6 0h1m-12 1h1m13 1h1m23 0h1m-22 1h1m18 0h2m-5 1h2m1 0h1m1 0h2m-35 1h1m25 0h6m1 0h1m-33 1h2m21 0h6m1 0h1m5 0h1m-35 1h1m20 0h4m1 0h1m4 0h2m-32 1h1m15 0h1m1 0h4m1 0h1m5 0h2m-30 1h4m11 0h4m1 0h1m4 0h2m-26 1h3m1 0h1m1 0h1m4 0h1m2 0h2m1 0h1m5 0h1m-21 1h1m4 0h2m2 0h1m8 0h1m1 0h1m-21 1h1m15 0h1m1 0h1m-14 1h2m7 0h3m-6 1h2m1 0h1m-5 1h1m1 0h1m-10 1h1m1 0h1m1 0h1m1 0h1m-6 1h1m1 0h1" stroke="#959089"/><path d="M44 13h1m1 0h1m1 0h2m-7 1h1m1 0h1m1 0h2m1 0h3m-12 1h1m2 0h1m1 0h1m1 0h7m-17 1h1m1 0h1m1 0h2m1 0h13m-22 1h1m2 0h1m1 0h2m1 0h3m1 0h6m1 0h4m-25 1h1m2 0h2m1 0h1m1 0h14m1 0h2m-25 1h1m1 0h1m1 0h1m1 0h10m1 0h1m1 0h5m-26 1h2m1 0h1m1 0h10m1 0h6m1 0h2m-29 1h1m1 0h1m1 0h1m1 0h4m1 0h3m1 0h8m1 0h3m-29 1h1m2 0h1m1 0h2m1 0h1m1 0h9m1 0h2m1 0h4m-26 1h1m1 0h2m1 0h11m1 0h5M6 24h3m15 0h1m1 0h3m1 0h10m1 0h5m1 0h1M9 25h1m11 0h1m1 0h1m1 0h2m2 0h9m1 0h3m1 0h4M9 26h1m13 0h1m1 0h6m1 0h4m1 0h8m-35 1h2m1 0h1m10 0h1m1 0h8m1 0h4m1 0h1m1 0h2m-32 1h1m13 0h6m1 0h4m1 0h3m-29 1h1m1 0h1m1 0h1m10 0h13m-27 1h1m3 0h1m13 0h4m1 0h1m-23 1h2m2 0h1m-3 1h2m1 0h1m-2 1h1m1 0h1m-2 1h1m9 0h1m1 0h1m3 0h1m2 0h1m-19 1h1m1 0h1m-2 1h1m0 1h2m0 2h1m2 0h1m4 0h1m1 0h1m3 0h1m-14 1h2m6 0h1" stroke="#8a94a1"/><path d="m2 14h2m-1 2h3m0 1h2m-2 1h3m-2 1h1m1 0h1m0 1h1m2 0h1m-3 1h2m46 0h1m-48 1h1m3 0h1m41 0h2m-48 1h1m1 0h1m40 0h5m-47 1h1m1 0h1m37 0h1m2 0h2m-38 1h1m34 0h1m0 1h1m-34 1h1m-6 1h1m32 1h1m-3 1h1m-31 1h1m27 0h1m-25 1h1m21 0h1m-3 1h1m-21 1h1m17 0h1m-18 1h1m5 1h1m-5 1h1m0 1h1" stroke="#737477"/><path d="m5 14h1m2 2h1m0 1h1m1 1h1m0 1h1m3 5h1m2 0h1m34 0h2m2 0h1m-43 1h2m33 0h1m1 0h2m1 0h2m-42 1h1m1 0h1m3 0h1m26 0h1m2 0h4m-39 1h4m33 0h1m-35 1h2m0 1h1m-2 1h1m1 0h2m16 0h1m13 0h1m-34 1h1m1 0h2m25 1h1m-3 1h1m-24 1h1m20 0h1m-9 1h1m5 0h1m-15 1h1m4 0h1m4 1h1" stroke="#88837a"/><path d="M3 15h1m1 2h1m48 0h1m1 1h1M4 19h1m3 0h1m41 0h1m1 0h1M4 20h1m4 0h1m37 0h1m6 0h1M4 21h1m5 0h1m4 0h1m35 0h1M4 22h1m6 0h1m1 0h1m31 0h1m2 0h1m-36 1h1m29 0h1m5 0h1m-10 1h1m5 0h1m-32 1h1m22 0h1m3 0h1m-30 1h1m3 0h1m18 0h1m-23 1h1m19 0h1m4 0h1m1 0h1m9 0h1m-37 1h1m9 0h1m6 0h1m4 0h1m-12 1h1m28 0h1m-38 1h1m9 0h3m4 0h1m15 1h1m-32 1h1m0 1h1m25 0h1m8 0h1m-35 1h1m22 0h1m-23 1h1m19 0h1m9 0h1m-30 1h2m6 0h1m2 0h1m5 0h1m9 0h1m-27 1h1m1 0h1m21 0h1m-24 1h1m1 0h1m8 0h1m1 0h1m8 0h1m-21 1h3m5 0h1m9 0h1m-3 1h1m-4 2h1m-14 1h1m10 0h1m-10 1h1m6 0h1" stroke="#7e8590"/><path d="M59 17h1M4 18h1m54 0h1M5 19h1m52 0h2M6 20h1m50 0h2M7 21h1m47 0h2M8 22h1m44 0h2M4 23h1m5 0h1m39 0h3m-42 1h1m36 0h3m-39 1h1m6 0h1m27 0h2m-35 1h1m6 0h1m23 0h2m-32 1h1m6 0h1m21 0h1M9 28h1m6 0h1m6 0h2m16 0h2m13 0h2m-41 1h1m7 0h1m14 0h1m13 0h1m2 0h1m-39 1h1m6 0h2m9 0h2m13 0h1m4 0h1m-38 1h1m7 0h9m13 0h1m6 0h1m-37 1h1m26 0h1m8 0h1m-43 1h1m6 0h1m23 0h1m10 0h1m-34 1h1m19 0h1m10 0h2m-32 1h1m16 0h1m11 0h1m-29 1h1m13 0h1m11 0h1m-33 1h1m7 0h1m8 0h2m11 0h1m-22 1h8m12 0h1m-3 1h1m-3 1h1m-3 1h1m-18 1h1m15 0h1m-3 1h1m-12 1h1m8 0h1m-8 1h6" stroke="#40565f"/><path d="m5 20h1m-1 4h1m6 6h1m1 2h1m28 6h1m-4 1h1m1 0h1m1 0h1m-17 1h1m9 0h3m-16 1h1m2 0h2m1 0h5m2 0h1m2 0h1m-13 1h3m1 0h1m1 0h4m-10 1h10m-8 1h5" stroke="#b4b5b8"/><path d="m30 41h1m5 0h2m-6 1h1m1 0h1m1 2h1" stroke="#c2c3c4"/>';
    
    mapping(uint256=>uint256) public tokenIdToPunkMapping;
    mapping(uint256=>bool) public claimedPunks;

    constructor(address _punkContractAddress, address _punkImagesAddress, uint256 _maxSupply) ERC721("Punkisodes Wen LunchBox", "PNKL") Ownable() {
    	setPunkContractAddresses(_punkContractAddress, _punkImagesAddress);
        MAX_SUPPLY = _maxSupply;
    }

    function setPunkContractAddresses(address _punkContractAddress, address _punkImagesAddress) public onlyOwner {
        punkContractAddress = _punkContractAddress;
        punkImagesContractAddress = _punkImagesAddress;
    }

    function isPunkOwner(address expectedOwner, uint256 punkId) public view returns (bool) {
	     return expectedOwner == ICryptoPunks(punkContractAddress).punkIndexToAddress(punkId);
    }
    
    function getPunkImage(uint16 punkId) public view returns (string memory) {
	     return IPunksData(punkImagesContractAddress).punkImageSvg(punkId);
    }

    function mint(uint256 punkId) external {
        require(counter<MAX_SUPPLY, "tooo late");
        require(isPunkOwner(msg.sender, punkId), "not ur punk");
        require(!claimedPunks[punkId],"u greedie b*st*rd");
        uint256 tokenId = counter;
        counter++;
        tokenIdToPunkMapping[tokenId] = punkId;
        claimedPunks[punkId] = true;
        _safeMint(msg.sender, tokenId);
    }

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

        return
            string(
                abi.encodePacked(
                    'data:application/json;base64,',
                    base64Encode(
                        bytes(abi.encodePacked(
                                '{"name": "Wen lunchbox? nr ', Strings.toString(tokenId), '",'  ,
                                '"attributes": [{"trait_type" : "punk","value":"',Strings.toString(tokenIdToPunkMapping[tokenId]),'"}]',
                                ', "description":"','Wen lunchbox? for punk nr ', Strings.toString(tokenIdToPunkMapping[tokenId]),'.  Not affiliated with LarvaLabs!'
                                '", "image": "',
                                'data:image/svg+xml;base64,',
                                base64Encode(
                                        bytes(
                                            abi.encodePacked(
                                                '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -0.5 62 50" shape-rendering="crispEdges" style="background-color:4F8294">',
                                                LUNCHBOX_IMAGE,
                                                '<g transform="translate(6 13) skewX(55) skewY(-15) scale(1.8,0.7)" opacity="0.8">',
                                                stripSvgTag(75, 6, getPunkImage(uint16(tokenIdToPunkMapping[tokenId]))),
                                                '</g>',
                                                '</svg>'
                                            )
                                        )
                                    ),
                                '"}'
                            )
                        )
                    )
                )
            );
    }

    function drain() public onlyOwner {
	    payable(owner()).transfer(address(this).balance);
    }

    function link(uint tokenId, uint256 punkId) public payable {
        require(msg.sender==ownerOf(tokenId), "not ur lunchbox");
        require(isPunkOwner(msg.sender, punkId), "not ur punk");
        require(!claimedPunks[punkId], "already ur");
        require(msg.value >= 3.690 ether, "must pay 3.690 eth at minimum");

        //unclaim current punk
        claimedPunks[tokenIdToPunkMapping[tokenId]] = false;
        //link new punk
        tokenIdToPunkMapping[tokenId] = punkId;
        //claim again
        claimedPunks[punkId] = true;
    }


    /** 
     * @dev walletofOwner
     * @return tokens id owned by the given address
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function walletOfOwner(address queryAddress) external view returns (uint256[] memory){
        uint256 ownerTokenCount = balanceOf(queryAddress);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        //index starting at 0
        uint256 currentTokenId = 0;
        uint256 ownedTokenIndex = 0;

        while ( ownedTokenIndex < ownerTokenCount && currentTokenId <= counter/*.current()*/ ) {
            if (ownerOf(currentTokenId) == queryAddress) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                unchecked{ ownedTokenIndex++;}
            }
            unchecked{ currentTokenId++;}
        }
        return ownedTokenIds;
    }

    function stringLen(string memory s) public pure returns (uint256) {
        return bytes(s).length;
    }

    function stripSvgTag(uint256 begin, uint256 last,string memory text) public pure returns (string memory) {
        uint256 end = stringLen(text);
        //last = 6 = strip </svg> from end
        bytes memory a = new bytes(end-begin+1-last);
        for(uint i=0;i<=end-begin-last;i++){
            a[i] = bytes(text)[i+begin-1];
        }
        return string(a);    
    }

    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    // [MIT License]
    // @author Brecht Devos <[email protected]>
    function base64Encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        uint256 encodedLen = 4 * ((len + 2) / 3);

        bytes memory result = new bytes(encodedLen + 32);
        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_punkContractAddress","type":"address"},{"internalType":"address","name":"_punkImagesAddress","type":"address"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedPunks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"punkId","type":"uint16"}],"name":"getPunkImage","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"expectedOwner","type":"address"},{"internalType":"uint256","name":"punkId","type":"uint256"}],"name":"isPunkOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"punkId","type":"uint256"}],"name":"link","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"punkId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_punkContractAddress","type":"address"},{"internalType":"address","name":"_punkImagesAddress","type":"address"}],"name":"setPunkContractAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"s","type":"string"}],"name":"stringLen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"begin","type":"uint256"},{"internalType":"uint256","name":"last","type":"uint256"},{"internalType":"string","name":"text","type":"string"}],"name":"stripSvgTag","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"","type":"uint256"}],"name":"tokenIdToPunkMapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"queryAddress","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60a060405260006009553480156200001657600080fd5b5060405162004934380380620049348339810160408190526200003991620001ed565b6040518060400160405280601781526020017f50756e6b69736f6465732057656e204c756e6368426f7800000000000000000081525060405180604001604052806004815260200163141392d360e21b81525081600090816200009d9190620002d3565b506001620000ac8282620002d3565b505050620000c9620000c3620000e160201b60201c565b620000e5565b620000d5838362000137565b608052506200039f9050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001416200016f565b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b6006546001600160a01b03163314620001ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b80516001600160a01b0381168114620001e857600080fd5b919050565b6000806000606084860312156200020357600080fd5b6200020e84620001d0565b92506200021e60208501620001d0565b9150604084015190509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025957607f821691505b6020821081036200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ce57600081815260208120601f850160051c81016020861015620002a95750805b601f850160051c820191505b81811015620002ca57828155600101620002b5565b5050505b505050565b81516001600160401b03811115620002ef57620002ef6200022e565b620003078162000300845462000244565b8462000280565b602080601f8311600181146200033f5760008415620003265750858301515b600019600386901b1c1916600185901b178555620002ca565b600085815260208120601f198616915b8281101562000370578886015182559484019460019091019084016200034f565b50858210156200038f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051614579620003bb6000396000610e3801526145796000f3fe6080604052600436106101ac5760003560e01c806386cf48e7116100ec578063c87b56dd1161008a578063d898508111610064578063d8985081146104ca578063e985e9c5146104ea578063f2fde38b14610533578063f73bfcd21461055357600080fd5b8063c87b56dd1461045d578063d098e9661461047d578063d69054211461049d57600080fd5b80639890220b116100c65780639890220b146103e8578063a0712d68146103fd578063a22cb4651461041d578063b88d4fde1461043d57600080fd5b806386cf48e7146103a25780638da5cb5b146103b557806395d89b41146103d357600080fd5b806342842e0e116101595780636352211e116101335780636352211e1461031f57806370a082311461033f578063715018a61461036d5780637567ba6a1461038257600080fd5b806342842e0e146102b2578063438b6300146102d2578063471100f1146102ff57600080fd5b8063095ea7b31161018a578063095ea7b3146102405780630c6945e41461026257806323b872dd1461029257600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc36600461204a565b610572565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb610657565b6040516101dd91906120dc565b34801561021457600080fd5b506102286102233660046120ef565b6106e9565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b36600461211d565b610710565b005b34801561026e57600080fd5b506101d161027d3660046120ef565b600b6020526000908152604090205460ff1681565b34801561029e57600080fd5b506102606102ad366004612149565b610846565b3480156102be57600080fd5b506102606102cd366004612149565b6108cd565b3480156102de57600080fd5b506102f26102ed36600461218a565b6108e8565b6040516101dd91906121a7565b34801561030b57600080fd5b506101fb61031a3660046121eb565b6109b0565b34801561032b57600080fd5b5061022861033a3660046120ef565b610a5c565b34801561034b57600080fd5b5061035f61035a36600461218a565b610ac1565b6040519081526020016101dd565b34801561037957600080fd5b50610260610b5b565b34801561038e57600080fd5b506101d161039d36600461211d565b610b6f565b6102606103b036600461220f565b610c12565b3480156103c157600080fd5b506006546001600160a01b0316610228565b3480156103df57600080fd5b506101fb610de3565b3480156103f457600080fd5b50610260610df2565b34801561040957600080fd5b506102606104183660046120ef565b610e36565b34801561042957600080fd5b50610260610438366004612231565b610fc8565b34801561044957600080fd5b50610260610458366004612371565b610fd3565b34801561046957600080fd5b506101fb6104783660046120ef565b611061565b34801561048957600080fd5b506102606104983660046123f1565b6111ca565b3480156104a957600080fd5b5061035f6104b83660046120ef565b600a6020526000908152604090205481565b3480156104d657600080fd5b506101fb6104e536600461243f565b611218565b3480156104f657600080fd5b506101d16105053660046123f1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053f57600080fd5b5061026061054e36600461218a565b61133a565b34801561055f57600080fd5b5061035f61056e36600461248f565b5190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061060557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061065157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610666906124c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610692906124c4565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f4826113c7565b506000908152600460205260409020546001600160a01b031690565b600061071b82610a5c565b9050806001600160a01b0316836001600160a01b0316036107a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806107c557506107c58133610505565b6108375760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016107a0565b610841838361142b565b505050565b61085033826114b1565b6108c25760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107a0565b610841838383611530565b61084183838360405180602001604052806000815250610fd3565b606060006108f583610ac1565b905060008167ffffffffffffffff8111156109125761091261226f565b60405190808252806020026020018201604052801561093b578160200160208202803683370190505b5090506000805b838110801561095357506009548211155b156109a657856001600160a01b031661096b83610a5c565b6001600160a01b03160361099b578183828151811061098c5761098c612517565b60209081029190910101526001015b600190910190610942565b5090949350505050565b6008546040517f74beb04700000000000000000000000000000000000000000000000000000000815261ffff831660048201526060916001600160a01b0316906374beb04790602401600060405180830381865afa158015610a16573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526106519190810190612546565b6000818152600260205260408120546001600160a01b0316806106515760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107a0565b60006001600160a01b038216610b3f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016107a0565b506001600160a01b031660009081526003602052604090205490565b610b63611715565b610b6d600061176f565b565b6007546040517f58178168000000000000000000000000000000000000000000000000000000008152600481018390526000916001600160a01b031690635817816890602401602060405180830381865afa158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf691906125bd565b6001600160a01b0316836001600160a01b031614905092915050565b610c1b82610a5c565b6001600160a01b0316336001600160a01b031614610c7b5760405162461bcd60e51b815260206004820152600f60248201527f6e6f74207572206c756e6368626f78000000000000000000000000000000000060448201526064016107a0565b610c853382610b6f565b610cd15760405162461bcd60e51b815260206004820152600b60248201527f6e6f742075722070756e6b00000000000000000000000000000000000000000060448201526064016107a0565b6000818152600b602052604090205460ff1615610d305760405162461bcd60e51b815260206004820152600a60248201527f616c72656164792075720000000000000000000000000000000000000000000060448201526064016107a0565b673335837315310000341015610d885760405162461bcd60e51b815260206004820152601d60248201527f6d7573742070617920332e36393020657468206174206d696e696d756d00000060448201526064016107a0565b6000918252600a6020908152604080842080548552600b90925280842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0090811690915591839055918352912080549091166001179055565b606060018054610666906124c4565b610dfa611715565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e33573d6000803e3d6000fd5b50565b7f000000000000000000000000000000000000000000000000000000000000000060095410610ea75760405162461bcd60e51b815260206004820152600960248201527f746f6f6f206c617465000000000000000000000000000000000000000000000060448201526064016107a0565b610eb13382610b6f565b610efd5760405162461bcd60e51b815260206004820152600b60248201527f6e6f742075722070756e6b00000000000000000000000000000000000000000060448201526064016107a0565b6000818152600b602052604090205460ff1615610f5c5760405162461bcd60e51b815260206004820152601160248201527f75206772656564696520622a73742a726400000000000000000000000000000060448201526064016107a0565b600980549081906000610f6e83612609565b90915550506000818152600a60209081526040808320859055848352600b909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610fc433826117d9565b5050565b610fc43383836117f3565b610fdd33836114b1565b61104f5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107a0565b61105b848484846118df565b50505050565b6000818152600260205260409020546060906001600160a01b03166110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107a0565b6111a46110fa83611968565b6000848152600a602052604090205461111290611968565b6000858152600a602052604090205461112a90611968565b611191604051806119e001604052806119af8152602001612b956119af913961116c604b60066104e5600a60008d8152602001908152602001600020546109b0565b60405160200161117d92919061265d565b604051602081830303815290604052611a9d565b60405160200161117d94939291906127ec565b6040516020016111b491906129fc565b6040516020818303038152906040529050919050565b6111d2611715565b600780546001600160a01b039384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560088054929093169116179055565b60606000611224835190565b90506000846112338784612a41565b61123e906001612a54565b6112489190612a41565b67ffffffffffffffff8111156112605761126061226f565b6040519080825280601f01601f19166020018201604052801561128a576020820181803683370190505b50905060005b8561129b8885612a41565b6112a59190612a41565b8111611330578460016112b88984612a54565b6112c29190612a41565b815181106112d2576112d2612517565b602001015160f81c60f81b8282815181106112ef576112ef612517565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061132881612609565b915050611290565b5095945050505050565b611342611715565b6001600160a01b0381166113be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107a0565b610e338161176f565b6000818152600260205260409020546001600160a01b0316610e335760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107a0565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061147882610a5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114bd83610a5c565b9050806001600160a01b0316846001600160a01b0316148061150457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806115285750836001600160a01b031661151d846106e9565b6001600160a01b0316145b949350505050565b826001600160a01b031661154382610a5c565b6001600160a01b0316146115bf5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016107a0565b6001600160a01b03821661163a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107a0565b61164560008261142b565b6001600160a01b038316600090815260036020526040812080546001929061166e908490612a41565b90915550506001600160a01b038216600090815260036020526040812080546001929061169c908490612a54565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610b6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fc4828260405180602001604052806000815250611c7a565b816001600160a01b0316836001600160a01b0316036118545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a0565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118ea848484611530565b6118f684848484611d03565b61105b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a0565b6060816000036119ab57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156119d557806119bf81612609565b91506119ce9050600a83612a96565b91506119af565b60008167ffffffffffffffff8111156119f0576119f061226f565b6040519080825280601f01601f191660200182016040528015611a1a576020820181803683370190505b5090505b841561152857611a2f600183612a41565b9150611a3c600a86612aaa565b611a47906030612a54565b60f81b818381518110611a5c57611a5c612517565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a96600a86612a96565b9450611a1e565b80516060906000819003611ac1575050604080516020810190915260008152919050565b60006003611ad0836002612a54565b611ada9190612a96565b611ae5906004612abe565b90506000611af4826020612a54565b67ffffffffffffffff811115611b0c57611b0c61226f565b6040519080825280601f01601f191660200182016040528015611b36576020820181803683370190505b5090506000604051806060016040528060408152602001612b55604091399050600181016020830160005b86811015611bc2576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611b61565b506003860660018114611bdc5760028114611c2657611c6c565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152611c6c565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b505050918152949350505050565b611c848383611ec2565b611c916000848484611d03565b6108415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a0565b60006001600160a01b0384163b15611eb7576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d60903390899088908890600401612afb565b6020604051808303816000875af1925050508015611db9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611db691810190612b37565b60015b611e6c573d808015611de7576040519150601f19603f3d011682016040523d82523d6000602084013e611dec565b606091505b508051600003611e645760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a0565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611528565b506001949350505050565b6001600160a01b038216611f185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a0565b6000818152600260205260409020546001600160a01b031615611f7d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a0565b6001600160a01b0382166000908152600360205260408120805460019290611fa6908490612a54565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e3357600080fd5b60006020828403121561205c57600080fd5b81356120678161201c565b9392505050565b60005b83811015612089578181015183820152602001612071565b50506000910152565b600081518084526120aa81602086016020860161206e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006120676020830184612092565b60006020828403121561210157600080fd5b5035919050565b6001600160a01b0381168114610e3357600080fd5b6000806040838503121561213057600080fd5b823561213b81612108565b946020939093013593505050565b60008060006060848603121561215e57600080fd5b833561216981612108565b9250602084013561217981612108565b929592945050506040919091013590565b60006020828403121561219c57600080fd5b813561206781612108565b6020808252825182820181905260009190848201906040850190845b818110156121df578351835292840192918401916001016121c3565b50909695505050505050565b6000602082840312156121fd57600080fd5b813561ffff8116811461206757600080fd5b6000806040838503121561222257600080fd5b50508035926020909101359150565b6000806040838503121561224457600080fd5b823561224f81612108565b91506020830135801515811461226457600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156122e5576122e561226f565b604052919050565b600067ffffffffffffffff8211156123075761230761226f565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b6000612346612341846122ed565b61229e565b905082815283838301111561235a57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561238757600080fd5b843561239281612108565b935060208501356123a281612108565b925060408501359150606085013567ffffffffffffffff8111156123c557600080fd5b8501601f810187136123d657600080fd5b6123e587823560208401612333565b91505092959194509250565b6000806040838503121561240457600080fd5b823561240f81612108565b9150602083013561226481612108565b600082601f83011261243057600080fd5b61206783833560208501612333565b60008060006060848603121561245457600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561247957600080fd5b6124858682870161241f565b9150509250925092565b6000602082840312156124a157600080fd5b813567ffffffffffffffff8111156124b857600080fd5b6115288482850161241f565b600181811c908216806124d857607f821691505b602082108103612511577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561255857600080fd5b815167ffffffffffffffff81111561256f57600080fd5b8201601f8101841361258057600080fd5b805161258e612341826122ed565b8181528560208385010111156125a357600080fd5b6125b482602083016020860161206e565b95945050505050565b6000602082840312156125cf57600080fd5b815161206781612108565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361263a5761263a6125da565b5060010190565b6000815161265381856020860161206e565b9290920192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076696577426f783d2230202d302e3520363220353022207360208201527f686170652d72656e646572696e673d226372697370456467657322207374796c60408201527f653d226261636b67726f756e642d636f6c6f723a344638323934223e0000000060608201526000835161270781607c85016020880161206e565b7f3c67207472616e73666f726d3d227472616e736c61746528362031332920736b607c918401918201527f6577582835352920736b657759282d313529207363616c6528312e382c302e37609c8201527f2922206f7061636974793d22302e38223e00000000000000000000000000000060bc82015283516127908160cd84016020880161206e565b7f3c2f673e0000000000000000000000000000000000000000000000000000000060cd92909101918201527f3c2f7376673e000000000000000000000000000000000000000000000000000060d182015260d701949350505050565b7f7b226e616d65223a202257656e206c756e6368626f783f206e7220000000000081526000855161282481601b850160208a0161206e565b7f222c000000000000000000000000000000000000000000000000000000000000601b918401918201527f2261747472696275746573223a205b7b2274726169745f7479706522203a2022601d8201527f70756e6b222c2276616c7565223a220000000000000000000000000000000000603d82015285516128ad81604c840160208a0161206e565b7f227d5d0000000000000000000000000000000000000000000000000000000000604c92909101918201527f2c20226465736372697074696f6e223a22000000000000000000000000000000604f8201527f57656e206c756e6368626f783f20666f722070756e6b206e72200000000000006060820152845161293781607a84016020890161206e565b6129f06129c76129c1612998607a858701017f2e20204e6f7420616666696c69617465642077697468204c617276614c61627381527f21222c2022696d616765223a20220000000000000000000000000000000000006020820152602e0190565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152601a0190565b87612641565b7f227d000000000000000000000000000000000000000000000000000000000000815260020190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612a3481601d85016020870161206e565b91909101601d0192915050565b81810381811115610651576106516125da565b80820180821115610651576106516125da565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612aa557612aa5612a67565b500490565b600082612ab957612ab9612a67565b500690565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612af657612af66125da565b500290565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b2d6080830184612092565b9695505050505050565b600060208284031215612b4957600080fd5b81516120678161201c56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7061746820643d224d3233203268366d2d39203168336d36203068334d3136203468346d3132203068324d3133203568336d3138203068334d3130203668336d3234203068324d37203768336d3239203068324d34203868336d3334203068324d32203968326d3339203068324d3120313068316d3433203068334d3120313168316d3436203068324d3120313268326d3437203068324d3120313368316d31203068316d3438203068324d3120313468316d32203068316d3439203068324d3120313568316d33203068316d3530203068324d3220313668316d33203068326d3530203068324d3320313768326d33203068316d3531203068314d3320313868316d31203068316d33203068316d3530203068314d3320313968316d32203068316d33203068316d3439203068314d3320323068316d33203068316d33203068326d3436203068324d3320323168316d34203068316d34203068316d3433203068326d31203068314d3320323268316d35203068326d33203068316d3430203068326d33203068314d3320323368316d37203068316d33203068326d3336203068326d35203068314d3420323468316d37203068316d34203068316d3333203068326d37203068314d3520323568316d37203068326d33203068316d3330203068326d38203068314d3620323668316d38203068316d33203068326d3236203068326d39203068314d3720323768316d38203068316d34203068316d3233203068326d39203068334d3820323868316d38203068316d34203068316d3230203068326d39203068326d32203068314d3920323968326d37203068326d33203068326d3136203068326d39203068326d34203068316d2d3438203168316d38203068316d34203068316d3133203068326d39203068326d36203068316d2d3437203168316d38203068316d34203068326d39203068326d39203068326d38203068316d2d3436203168316d38203068316d35203068396d39203068326d3130203068316d2d3435203168316d38203068326d3139203068326d3132203068316d2d3434203168326d38203068316d3136203068326d3133203068316d2d3431203168316d38203068316d3133203068326d3133203068326d2d3339203168316d38203068326d38203068336d3133203068326d2d3336203168316d39203068386d3134203068326d2d3333203168326d3238203068316d2d3239203168316d3235203068326d2d3237203168316d3232203068326d2d3234203168316d3139203068326d2d3231203168316d3137203068316d2d3138203168326d3133203068326d2d3135203168316d3130203068326d2d3132203168326d36203068326d2d382031683622207374726f6b653d2223303030222f3e3c7061746820643d226d3233203368366d2d39203168316d2d35203168316d2d34203168316d2d34203168316d2d39203368316d2d31203168316d31203168316d32203268316d30203168316d343720313668316d2d31203168316d2d39203368316d2d332031683122207374726f6b653d2223636663346165222f3e3c7061746820643d224d3231203468316d39203068314d3137203568326d3134203068314d3134203668316d32203068316d33203068316d3134203068314d3234203768316d3133203068314d37203868316d33203068316d33203068316d3234203068314d34203968316d3134203068314d3720313068316d35203068314d3320313168316d35203068316d2d35203168316d34203068316d2d36203168326d33203368316d30203168316d30203168316d343220313368316d2d33203168336d2d35203168356d2d37203168366d2d38203168316d31203068346d2d36203168346d2d37203168356d2d37203168316d31203068346d2d37203168316d31203068316d31203068316d2d35203168316d31203068316d2d35203168316d32203068316d2d332031683122207374726f6b653d2223626662386137222f3e3c7061746820643d224d3232203468394d313920356831344d3135203668326d31203068336d3120306831344d313120376831336d3120306831334d38203868336d31203068336d3120306831376d31203068316d33203068314d3520396831346d3120306831306d31203068316d31203068316d31203068336d31203068316d32203068314d3320313068346d31203068356d3120306831376d31203068316d31203068314d3420313168356d3120306831386d31203068316d31203068316d31203068316d31203068316d31203068316d31203068314d3320313268316d32203068346d3120306831366d31203068316d31203068316d31203068314d372031336831366d31203068316d32203068316d31203068316d31203068316d33203068314d3620313468316d3120306831336d31203068316d31203068336d31203068316d34203068314d3720313568316d3120306831306d31203068326d31203068316d35203068314d3920313668316d31203068366d31203068326d31203068316d31203068316d31203068316d31203068316d2d3138203168316d31203068336d31203068336d32203068316d32203068316d2d3132203168316d31203068316d31203068316d31203068316d32203068316d33203068316d2d3134203168336d32203068316d31203068316d2d36203168336d2d32203168316d31203168316d3337203868316d2d33203168316d2d33203168316d2d33203168316d2d3234203168316d3137203268316d2d332031683122207374726f6b653d2223623261383938222f3e3c7061746820643d224d3333203868316d31203068336d31203068314d3330203968316d31203068316d31203068316d33203068316d31203068326d2d3131203168316d31203068316d31203068396d2d3136203168316d31203068316d31203068316d31203068316d31203068316d31203068316d31203068366d2d3139203168316d31203068316d31203068316d3120306831366d2d3236203168316d31203068326d31203068316d31203068316d31203068336d31203068386d31203068316d31203068316d32203068316d2d3330203168316d31203068316d33203068316d31203068346d31203068396d31203068316d31203068316d32203068316d2d3331203168316d32203068316d31203068356d3120306831316d31203068326d31203068316d31203068316d2d3331203168316d32203068316d31203068316d31203068316d31203068316d3120306831306d31203068316d31203068316d2d3237203168316d33203068326d31203068326d3120306831316d31203068326d31203068316d32203068316d2d3330203168316d31203068316d31203068316d31203068326d31203068336d31203068356d31203068316d31203068316d33203068316d2d3234203168326d31203068316d31203068356d31203068336d31203068336d31203068316d31203068316d2d323020316831346d32203068316d31203068316d2d323020316831316d31203068316d31203068316d31203068316d34203068316d2d3232203168316d31203068346d31203068326d31203068316d32203068316d2d3132203168366d31203068316d31203068316d32203068316d2d3132203168346d31203068316d33203068316d2d38203168316d31203068316d32203068316d2d34203168316d30203168316d3233203068316d31203168316d2d33203168316d2d38203168316d34203068316d2d38203168316d34203068316d2d39203168326d34203068316d2d3136203168316d31203068316d31203068346d31203068326d32203068316d2d3132203168316d31203068316d33203068316d32203068326d2d3132203168386d31203068316d30203468316d2d3131203168336d332030683222207374726f6b653d2223396339643964222f3e3c7061746820643d224d343420313068316d31203168326d31203168316d31203168316d31203168316d31203168314d3520323168326d2d32203168336d2d33203168356d2d31203168326d2d35203168336d31203068326d2d35203168326d31203068336d2d35203168326d32203068316d2d33203168326d31203068326d2d34203168316d31203068316d31203068316d2d32203168336d2d34203168316d32203068326d2d33203168316d32203068316d2d33203168326d31203068316d2d33203168326d31203068326d2d34203168326d31203068316d3135203068316d2d3139203168326d31203068326d2d33203168316d32203068316d2d33203168346d3135203068316d2d3139203168316d31203068326d2d33203168316d32203068316d39203068316d34203068316d2d3137203168326d3132203068316d2d3134203168326d31302030683122207374726f6b653d2223396661376231222f3e3c7061746820643d226d3220313368316d2d31203268316d31203068316d31203068316d33203368316d30203168316d2d34203168316d30203168316d34203068316d30203168316d3431203068316d2d3431203168316d30203168316d3430203068316d2d32203168316d2d32203168316d2d33203168316d2d33203168316d2d3237203768316d312031683122207374726f6b653d2223356636323636222f3e3c7061746820643d226d3420313368316d3339203368316d32203168316d2d3136203168316d33203068316d34203068316d2d3136203168316d33203068316d38203068316d2d3236203168316d3237203168316d2d3230203168316d34203068316d34203068316d31203068316d2d3138203168316d36203068316d2d3132203168316d3133203168316d3233203068316d2d3232203168316d3138203068326d2d35203168326d31203068316d31203068326d2d3335203168316d3235203068366d31203068316d2d3333203168326d3231203068366d31203068316d35203068316d2d3335203168316d3230203068346d31203068316d34203068326d2d3332203168316d3135203068316d31203068346d31203068316d35203068326d2d3330203168346d3131203068346d31203068316d34203068326d2d3236203168336d31203068316d31203068316d34203068316d32203068326d31203068316d35203068316d2d3231203168316d34203068326d32203068316d38203068316d31203068316d2d3231203168316d3135203068316d31203068316d2d3134203168326d37203068336d2d36203168326d31203068316d2d35203168316d31203068316d2d3130203168316d31203068316d31203068316d31203068316d2d36203168316d312030683122207374726f6b653d2223393539303839222f3e3c7061746820643d224d343420313368316d31203068316d31203068326d2d37203168316d31203068316d31203068326d31203068336d2d3132203168316d32203068316d31203068316d31203068376d2d3137203168316d31203068316d31203068326d3120306831336d2d3232203168316d32203068316d31203068326d31203068336d31203068366d31203068346d2d3235203168316d32203068326d31203068316d3120306831346d31203068326d2d3235203168316d31203068316d31203068316d3120306831306d31203068316d31203068356d2d3236203168326d31203068316d3120306831306d31203068366d31203068326d2d3239203168316d31203068316d31203068316d31203068346d31203068336d31203068386d31203068336d2d3239203168316d32203068316d31203068326d31203068316d31203068396d31203068326d31203068346d2d3236203168316d31203068326d3120306831316d31203068354d3620323468336d3135203068316d31203068336d3120306831306d31203068356d31203068314d3920323568316d3131203068316d31203068316d31203068326d32203068396d31203068336d31203068344d3920323668316d3133203068316d31203068366d31203068346d31203068386d2d3335203168326d31203068316d3130203068316d31203068386d31203068346d31203068316d31203068326d2d3332203168316d3133203068366d31203068346d31203068336d2d3239203168316d31203068316d31203068316d313020306831336d2d3237203168316d33203068316d3133203068346d31203068316d2d3233203168326d32203068316d2d33203168326d31203068316d2d32203168316d31203068316d2d32203168316d39203068316d31203068316d33203068316d32203068316d2d3139203168316d31203068316d2d32203168316d30203168326d30203268316d32203068316d34203068316d31203068316d33203068316d2d3134203168326d362030683122207374726f6b653d2223386139346131222f3e3c7061746820643d226d3220313468326d2d31203268336d30203168326d2d32203168336d2d32203168316d31203068316d30203168316d32203068316d2d33203168326d3436203068316d2d3438203168316d33203068316d3431203068326d2d3438203168316d31203068316d3430203068356d2d3437203168316d31203068316d3337203068316d32203068326d2d3338203168316d3334203068316d30203168316d2d3334203168316d2d36203168316d3332203168316d2d33203168316d2d3331203168316d3237203068316d2d3235203168316d3231203068316d2d33203168316d2d3231203168316d3137203068316d2d3138203168316d35203168316d2d35203168316d302031683122207374726f6b653d2223373337343737222f3e3c7061746820643d226d3520313468316d32203268316d30203168316d31203168316d30203168316d33203568316d32203068316d3334203068326d32203068316d2d3433203168326d3333203068316d31203068326d31203068326d2d3432203168316d31203068316d33203068316d3236203068316d32203068346d2d3339203168346d3333203068316d2d3335203168326d30203168316d2d32203168316d31203068326d3136203068316d3133203068316d2d3334203168316d31203068326d3235203168316d2d33203168316d2d3234203168316d3230203068316d2d39203168316d35203068316d2d3135203168316d34203068316d342031683122207374726f6b653d2223383838333761222f3e3c7061746820643d224d3320313568316d31203268316d3438203068316d31203168314d3420313968316d33203068316d3431203068316d31203068314d3420323068316d34203068316d3337203068316d36203068314d3420323168316d35203068316d34203068316d3335203068314d3420323268316d36203068316d31203068316d3331203068316d32203068316d2d3336203168316d3239203068316d35203068316d2d3130203168316d35203068316d2d3332203168316d3232203068316d33203068316d2d3330203168316d33203068316d3138203068316d2d3233203168316d3139203068316d34203068316d31203068316d39203068316d2d3337203168316d39203068316d36203068316d34203068316d2d3132203168316d3238203068316d2d3338203168316d39203068336d34203068316d3135203168316d2d3332203168316d30203168316d3235203068316d38203068316d2d3335203168316d3232203068316d2d3233203168316d3139203068316d39203068316d2d3330203168326d36203068316d32203068316d35203068316d39203068316d2d3237203168316d31203068316d3231203068316d2d3234203168316d31203068316d38203068316d31203068316d38203068316d2d3231203168336d35203068316d39203068316d2d33203168316d2d34203268316d2d3134203168316d3130203068316d2d3130203168316d362030683122207374726f6b653d2223376538353930222f3e3c7061746820643d224d353920313768314d3420313868316d3534203068314d3520313968316d3532203068324d3620323068316d3530203068324d3720323168316d3437203068324d3820323268316d3434203068324d3420323368316d35203068316d3339203068336d2d3432203168316d3336203068336d2d3339203168316d36203068316d3237203068326d2d3335203168316d36203068316d3233203068326d2d3332203168316d36203068316d3231203068314d3920323868316d36203068316d36203068326d3136203068326d3133203068326d2d3431203168316d37203068316d3134203068316d3133203068316d32203068316d2d3339203168316d36203068326d39203068326d3133203068316d34203068316d2d3338203168316d37203068396d3133203068316d36203068316d2d3337203168316d3236203068316d38203068316d2d3433203168316d36203068316d3233203068316d3130203068316d2d3334203168316d3139203068316d3130203068326d2d3332203168316d3136203068316d3131203068316d2d3239203168316d3133203068316d3131203068316d2d3333203168316d37203068316d38203068326d3131203068316d2d3232203168386d3132203068316d2d33203168316d2d33203168316d2d33203168316d2d3138203168316d3135203068316d2d33203168316d2d3132203168316d38203068316d2d382031683622207374726f6b653d2223343035363566222f3e3c7061746820643d226d3520323068316d2d31203468316d36203668316d31203268316d3238203668316d2d34203168316d31203068316d31203068316d2d3137203168316d39203068336d2d3136203168316d32203068326d31203068356d32203068316d32203068316d2d3133203168336d31203068316d31203068346d2d313020316831306d2d382031683522207374726f6b653d2223623462356238222f3e3c7061746820643d226d333020343168316d35203068326d2d36203168316d31203068316d312032683122207374726f6b653d2223633263336334222f3ea2646970667358221220e42253626335976ceb6c5b4beb76cd1617a80042420326d695ec351daded6e1564736f6c63430008100033000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb00000000000000000000000016f5a35647d6f03d5d3da7b35409d65ba03af3b200000000000000000000000000000000000000000000000000000000000000fa

Deployed Bytecode

0x6080604052600436106101ac5760003560e01c806386cf48e7116100ec578063c87b56dd1161008a578063d898508111610064578063d8985081146104ca578063e985e9c5146104ea578063f2fde38b14610533578063f73bfcd21461055357600080fd5b8063c87b56dd1461045d578063d098e9661461047d578063d69054211461049d57600080fd5b80639890220b116100c65780639890220b146103e8578063a0712d68146103fd578063a22cb4651461041d578063b88d4fde1461043d57600080fd5b806386cf48e7146103a25780638da5cb5b146103b557806395d89b41146103d357600080fd5b806342842e0e116101595780636352211e116101335780636352211e1461031f57806370a082311461033f578063715018a61461036d5780637567ba6a1461038257600080fd5b806342842e0e146102b2578063438b6300146102d2578063471100f1146102ff57600080fd5b8063095ea7b31161018a578063095ea7b3146102405780630c6945e41461026257806323b872dd1461029257600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc36600461204a565b610572565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb610657565b6040516101dd91906120dc565b34801561021457600080fd5b506102286102233660046120ef565b6106e9565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b36600461211d565b610710565b005b34801561026e57600080fd5b506101d161027d3660046120ef565b600b6020526000908152604090205460ff1681565b34801561029e57600080fd5b506102606102ad366004612149565b610846565b3480156102be57600080fd5b506102606102cd366004612149565b6108cd565b3480156102de57600080fd5b506102f26102ed36600461218a565b6108e8565b6040516101dd91906121a7565b34801561030b57600080fd5b506101fb61031a3660046121eb565b6109b0565b34801561032b57600080fd5b5061022861033a3660046120ef565b610a5c565b34801561034b57600080fd5b5061035f61035a36600461218a565b610ac1565b6040519081526020016101dd565b34801561037957600080fd5b50610260610b5b565b34801561038e57600080fd5b506101d161039d36600461211d565b610b6f565b6102606103b036600461220f565b610c12565b3480156103c157600080fd5b506006546001600160a01b0316610228565b3480156103df57600080fd5b506101fb610de3565b3480156103f457600080fd5b50610260610df2565b34801561040957600080fd5b506102606104183660046120ef565b610e36565b34801561042957600080fd5b50610260610438366004612231565b610fc8565b34801561044957600080fd5b50610260610458366004612371565b610fd3565b34801561046957600080fd5b506101fb6104783660046120ef565b611061565b34801561048957600080fd5b506102606104983660046123f1565b6111ca565b3480156104a957600080fd5b5061035f6104b83660046120ef565b600a6020526000908152604090205481565b3480156104d657600080fd5b506101fb6104e536600461243f565b611218565b3480156104f657600080fd5b506101d16105053660046123f1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053f57600080fd5b5061026061054e36600461218a565b61133a565b34801561055f57600080fd5b5061035f61056e36600461248f565b5190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061060557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061065157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610666906124c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610692906124c4565b80156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106f4826113c7565b506000908152600460205260409020546001600160a01b031690565b600061071b82610a5c565b9050806001600160a01b0316836001600160a01b0316036107a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806107c557506107c58133610505565b6108375760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016107a0565b610841838361142b565b505050565b61085033826114b1565b6108c25760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107a0565b610841838383611530565b61084183838360405180602001604052806000815250610fd3565b606060006108f583610ac1565b905060008167ffffffffffffffff8111156109125761091261226f565b60405190808252806020026020018201604052801561093b578160200160208202803683370190505b5090506000805b838110801561095357506009548211155b156109a657856001600160a01b031661096b83610a5c565b6001600160a01b03160361099b578183828151811061098c5761098c612517565b60209081029190910101526001015b600190910190610942565b5090949350505050565b6008546040517f74beb04700000000000000000000000000000000000000000000000000000000815261ffff831660048201526060916001600160a01b0316906374beb04790602401600060405180830381865afa158015610a16573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526106519190810190612546565b6000818152600260205260408120546001600160a01b0316806106515760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107a0565b60006001600160a01b038216610b3f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016107a0565b506001600160a01b031660009081526003602052604090205490565b610b63611715565b610b6d600061176f565b565b6007546040517f58178168000000000000000000000000000000000000000000000000000000008152600481018390526000916001600160a01b031690635817816890602401602060405180830381865afa158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf691906125bd565b6001600160a01b0316836001600160a01b031614905092915050565b610c1b82610a5c565b6001600160a01b0316336001600160a01b031614610c7b5760405162461bcd60e51b815260206004820152600f60248201527f6e6f74207572206c756e6368626f78000000000000000000000000000000000060448201526064016107a0565b610c853382610b6f565b610cd15760405162461bcd60e51b815260206004820152600b60248201527f6e6f742075722070756e6b00000000000000000000000000000000000000000060448201526064016107a0565b6000818152600b602052604090205460ff1615610d305760405162461bcd60e51b815260206004820152600a60248201527f616c72656164792075720000000000000000000000000000000000000000000060448201526064016107a0565b673335837315310000341015610d885760405162461bcd60e51b815260206004820152601d60248201527f6d7573742070617920332e36393020657468206174206d696e696d756d00000060448201526064016107a0565b6000918252600a6020908152604080842080548552600b90925280842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0090811690915591839055918352912080549091166001179055565b606060018054610666906124c4565b610dfa611715565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e33573d6000803e3d6000fd5b50565b7f00000000000000000000000000000000000000000000000000000000000000fa60095410610ea75760405162461bcd60e51b815260206004820152600960248201527f746f6f6f206c617465000000000000000000000000000000000000000000000060448201526064016107a0565b610eb13382610b6f565b610efd5760405162461bcd60e51b815260206004820152600b60248201527f6e6f742075722070756e6b00000000000000000000000000000000000000000060448201526064016107a0565b6000818152600b602052604090205460ff1615610f5c5760405162461bcd60e51b815260206004820152601160248201527f75206772656564696520622a73742a726400000000000000000000000000000060448201526064016107a0565b600980549081906000610f6e83612609565b90915550506000818152600a60209081526040808320859055848352600b909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610fc433826117d9565b5050565b610fc43383836117f3565b610fdd33836114b1565b61104f5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f76656400000000000000000000000000000000000060648201526084016107a0565b61105b848484846118df565b50505050565b6000818152600260205260409020546060906001600160a01b03166110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107a0565b6111a46110fa83611968565b6000848152600a602052604090205461111290611968565b6000858152600a602052604090205461112a90611968565b611191604051806119e001604052806119af8152602001612b956119af913961116c604b60066104e5600a60008d8152602001908152602001600020546109b0565b60405160200161117d92919061265d565b604051602081830303815290604052611a9d565b60405160200161117d94939291906127ec565b6040516020016111b491906129fc565b6040516020818303038152906040529050919050565b6111d2611715565b600780546001600160a01b039384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560088054929093169116179055565b60606000611224835190565b90506000846112338784612a41565b61123e906001612a54565b6112489190612a41565b67ffffffffffffffff8111156112605761126061226f565b6040519080825280601f01601f19166020018201604052801561128a576020820181803683370190505b50905060005b8561129b8885612a41565b6112a59190612a41565b8111611330578460016112b88984612a54565b6112c29190612a41565b815181106112d2576112d2612517565b602001015160f81c60f81b8282815181106112ef576112ef612517565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061132881612609565b915050611290565b5095945050505050565b611342611715565b6001600160a01b0381166113be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107a0565b610e338161176f565b6000818152600260205260409020546001600160a01b0316610e335760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016107a0565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061147882610a5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114bd83610a5c565b9050806001600160a01b0316846001600160a01b0316148061150457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806115285750836001600160a01b031661151d846106e9565b6001600160a01b0316145b949350505050565b826001600160a01b031661154382610a5c565b6001600160a01b0316146115bf5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016107a0565b6001600160a01b03821661163a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107a0565b61164560008261142b565b6001600160a01b038316600090815260036020526040812080546001929061166e908490612a41565b90915550506001600160a01b038216600090815260036020526040812080546001929061169c908490612a54565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610b6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b600680546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fc4828260405180602001604052806000815250611c7a565b816001600160a01b0316836001600160a01b0316036118545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a0565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118ea848484611530565b6118f684848484611d03565b61105b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a0565b6060816000036119ab57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156119d557806119bf81612609565b91506119ce9050600a83612a96565b91506119af565b60008167ffffffffffffffff8111156119f0576119f061226f565b6040519080825280601f01601f191660200182016040528015611a1a576020820181803683370190505b5090505b841561152857611a2f600183612a41565b9150611a3c600a86612aaa565b611a47906030612a54565b60f81b818381518110611a5c57611a5c612517565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a96600a86612a96565b9450611a1e565b80516060906000819003611ac1575050604080516020810190915260008152919050565b60006003611ad0836002612a54565b611ada9190612a96565b611ae5906004612abe565b90506000611af4826020612a54565b67ffffffffffffffff811115611b0c57611b0c61226f565b6040519080825280601f01601f191660200182016040528015611b36576020820181803683370190505b5090506000604051806060016040528060408152602001612b55604091399050600181016020830160005b86811015611bc2576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611b61565b506003860660018114611bdc5760028114611c2657611c6c565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152611c6c565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b505050918152949350505050565b611c848383611ec2565b611c916000848484611d03565b6108415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a0565b60006001600160a01b0384163b15611eb7576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d60903390899088908890600401612afb565b6020604051808303816000875af1925050508015611db9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611db691810190612b37565b60015b611e6c573d808015611de7576040519150601f19603f3d011682016040523d82523d6000602084013e611dec565b606091505b508051600003611e645760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107a0565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611528565b506001949350505050565b6001600160a01b038216611f185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a0565b6000818152600260205260409020546001600160a01b031615611f7d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a0565b6001600160a01b0382166000908152600360205260408120805460019290611fa6908490612a54565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e3357600080fd5b60006020828403121561205c57600080fd5b81356120678161201c565b9392505050565b60005b83811015612089578181015183820152602001612071565b50506000910152565b600081518084526120aa81602086016020860161206e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006120676020830184612092565b60006020828403121561210157600080fd5b5035919050565b6001600160a01b0381168114610e3357600080fd5b6000806040838503121561213057600080fd5b823561213b81612108565b946020939093013593505050565b60008060006060848603121561215e57600080fd5b833561216981612108565b9250602084013561217981612108565b929592945050506040919091013590565b60006020828403121561219c57600080fd5b813561206781612108565b6020808252825182820181905260009190848201906040850190845b818110156121df578351835292840192918401916001016121c3565b50909695505050505050565b6000602082840312156121fd57600080fd5b813561ffff8116811461206757600080fd5b6000806040838503121561222257600080fd5b50508035926020909101359150565b6000806040838503121561224457600080fd5b823561224f81612108565b91506020830135801515811461226457600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156122e5576122e561226f565b604052919050565b600067ffffffffffffffff8211156123075761230761226f565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b6000612346612341846122ed565b61229e565b905082815283838301111561235a57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561238757600080fd5b843561239281612108565b935060208501356123a281612108565b925060408501359150606085013567ffffffffffffffff8111156123c557600080fd5b8501601f810187136123d657600080fd5b6123e587823560208401612333565b91505092959194509250565b6000806040838503121561240457600080fd5b823561240f81612108565b9150602083013561226481612108565b600082601f83011261243057600080fd5b61206783833560208501612333565b60008060006060848603121561245457600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561247957600080fd5b6124858682870161241f565b9150509250925092565b6000602082840312156124a157600080fd5b813567ffffffffffffffff8111156124b857600080fd5b6115288482850161241f565b600181811c908216806124d857607f821691505b602082108103612511577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561255857600080fd5b815167ffffffffffffffff81111561256f57600080fd5b8201601f8101841361258057600080fd5b805161258e612341826122ed565b8181528560208385010111156125a357600080fd5b6125b482602083016020860161206e565b95945050505050565b6000602082840312156125cf57600080fd5b815161206781612108565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361263a5761263a6125da565b5060010190565b6000815161265381856020860161206e565b9290920192915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076696577426f783d2230202d302e3520363220353022207360208201527f686170652d72656e646572696e673d226372697370456467657322207374796c60408201527f653d226261636b67726f756e642d636f6c6f723a344638323934223e0000000060608201526000835161270781607c85016020880161206e565b7f3c67207472616e73666f726d3d227472616e736c61746528362031332920736b607c918401918201527f6577582835352920736b657759282d313529207363616c6528312e382c302e37609c8201527f2922206f7061636974793d22302e38223e00000000000000000000000000000060bc82015283516127908160cd84016020880161206e565b7f3c2f673e0000000000000000000000000000000000000000000000000000000060cd92909101918201527f3c2f7376673e000000000000000000000000000000000000000000000000000060d182015260d701949350505050565b7f7b226e616d65223a202257656e206c756e6368626f783f206e7220000000000081526000855161282481601b850160208a0161206e565b7f222c000000000000000000000000000000000000000000000000000000000000601b918401918201527f2261747472696275746573223a205b7b2274726169745f7479706522203a2022601d8201527f70756e6b222c2276616c7565223a220000000000000000000000000000000000603d82015285516128ad81604c840160208a0161206e565b7f227d5d0000000000000000000000000000000000000000000000000000000000604c92909101918201527f2c20226465736372697074696f6e223a22000000000000000000000000000000604f8201527f57656e206c756e6368626f783f20666f722070756e6b206e72200000000000006060820152845161293781607a84016020890161206e565b6129f06129c76129c1612998607a858701017f2e20204e6f7420616666696c69617465642077697468204c617276614c61627381527f21222c2022696d616765223a20220000000000000000000000000000000000006020820152602e0190565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152601a0190565b87612641565b7f227d000000000000000000000000000000000000000000000000000000000000815260020190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612a3481601d85016020870161206e565b91909101601d0192915050565b81810381811115610651576106516125da565b80820180821115610651576106516125da565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612aa557612aa5612a67565b500490565b600082612ab957612ab9612a67565b500690565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612af657612af66125da565b500290565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b2d6080830184612092565b9695505050505050565b600060208284031215612b4957600080fd5b81516120678161201c56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7061746820643d224d3233203268366d2d39203168336d36203068334d3136203468346d3132203068324d3133203568336d3138203068334d3130203668336d3234203068324d37203768336d3239203068324d34203868336d3334203068324d32203968326d3339203068324d3120313068316d3433203068334d3120313168316d3436203068324d3120313268326d3437203068324d3120313368316d31203068316d3438203068324d3120313468316d32203068316d3439203068324d3120313568316d33203068316d3530203068324d3220313668316d33203068326d3530203068324d3320313768326d33203068316d3531203068314d3320313868316d31203068316d33203068316d3530203068314d3320313968316d32203068316d33203068316d3439203068314d3320323068316d33203068316d33203068326d3436203068324d3320323168316d34203068316d34203068316d3433203068326d31203068314d3320323268316d35203068326d33203068316d3430203068326d33203068314d3320323368316d37203068316d33203068326d3336203068326d35203068314d3420323468316d37203068316d34203068316d3333203068326d37203068314d3520323568316d37203068326d33203068316d3330203068326d38203068314d3620323668316d38203068316d33203068326d3236203068326d39203068314d3720323768316d38203068316d34203068316d3233203068326d39203068334d3820323868316d38203068316d34203068316d3230203068326d39203068326d32203068314d3920323968326d37203068326d33203068326d3136203068326d39203068326d34203068316d2d3438203168316d38203068316d34203068316d3133203068326d39203068326d36203068316d2d3437203168316d38203068316d34203068326d39203068326d39203068326d38203068316d2d3436203168316d38203068316d35203068396d39203068326d3130203068316d2d3435203168316d38203068326d3139203068326d3132203068316d2d3434203168326d38203068316d3136203068326d3133203068316d2d3431203168316d38203068316d3133203068326d3133203068326d2d3339203168316d38203068326d38203068336d3133203068326d2d3336203168316d39203068386d3134203068326d2d3333203168326d3238203068316d2d3239203168316d3235203068326d2d3237203168316d3232203068326d2d3234203168316d3139203068326d2d3231203168316d3137203068316d2d3138203168326d3133203068326d2d3135203168316d3130203068326d2d3132203168326d36203068326d2d382031683622207374726f6b653d2223303030222f3e3c7061746820643d226d3233203368366d2d39203168316d2d35203168316d2d34203168316d2d34203168316d2d39203368316d2d31203168316d31203168316d32203268316d30203168316d343720313668316d2d31203168316d2d39203368316d2d332031683122207374726f6b653d2223636663346165222f3e3c7061746820643d224d3231203468316d39203068314d3137203568326d3134203068314d3134203668316d32203068316d33203068316d3134203068314d3234203768316d3133203068314d37203868316d33203068316d33203068316d3234203068314d34203968316d3134203068314d3720313068316d35203068314d3320313168316d35203068316d2d35203168316d34203068316d2d36203168326d33203368316d30203168316d30203168316d343220313368316d2d33203168336d2d35203168356d2d37203168366d2d38203168316d31203068346d2d36203168346d2d37203168356d2d37203168316d31203068346d2d37203168316d31203068316d31203068316d2d35203168316d31203068316d2d35203168316d32203068316d2d332031683122207374726f6b653d2223626662386137222f3e3c7061746820643d224d3232203468394d313920356831344d3135203668326d31203068336d3120306831344d313120376831336d3120306831334d38203868336d31203068336d3120306831376d31203068316d33203068314d3520396831346d3120306831306d31203068316d31203068316d31203068336d31203068316d32203068314d3320313068346d31203068356d3120306831376d31203068316d31203068314d3420313168356d3120306831386d31203068316d31203068316d31203068316d31203068316d31203068316d31203068314d3320313268316d32203068346d3120306831366d31203068316d31203068316d31203068314d372031336831366d31203068316d32203068316d31203068316d31203068316d33203068314d3620313468316d3120306831336d31203068316d31203068336d31203068316d34203068314d3720313568316d3120306831306d31203068326d31203068316d35203068314d3920313668316d31203068366d31203068326d31203068316d31203068316d31203068316d31203068316d2d3138203168316d31203068336d31203068336d32203068316d32203068316d2d3132203168316d31203068316d31203068316d31203068316d32203068316d33203068316d2d3134203168336d32203068316d31203068316d2d36203168336d2d32203168316d31203168316d3337203868316d2d33203168316d2d33203168316d2d33203168316d2d3234203168316d3137203268316d2d332031683122207374726f6b653d2223623261383938222f3e3c7061746820643d224d3333203868316d31203068336d31203068314d3330203968316d31203068316d31203068316d33203068316d31203068326d2d3131203168316d31203068316d31203068396d2d3136203168316d31203068316d31203068316d31203068316d31203068316d31203068316d31203068366d2d3139203168316d31203068316d31203068316d3120306831366d2d3236203168316d31203068326d31203068316d31203068316d31203068336d31203068386d31203068316d31203068316d32203068316d2d3330203168316d31203068316d33203068316d31203068346d31203068396d31203068316d31203068316d32203068316d2d3331203168316d32203068316d31203068356d3120306831316d31203068326d31203068316d31203068316d2d3331203168316d32203068316d31203068316d31203068316d31203068316d3120306831306d31203068316d31203068316d2d3237203168316d33203068326d31203068326d3120306831316d31203068326d31203068316d32203068316d2d3330203168316d31203068316d31203068316d31203068326d31203068336d31203068356d31203068316d31203068316d33203068316d2d3234203168326d31203068316d31203068356d31203068336d31203068336d31203068316d31203068316d2d323020316831346d32203068316d31203068316d2d323020316831316d31203068316d31203068316d31203068316d34203068316d2d3232203168316d31203068346d31203068326d31203068316d32203068316d2d3132203168366d31203068316d31203068316d32203068316d2d3132203168346d31203068316d33203068316d2d38203168316d31203068316d32203068316d2d34203168316d30203168316d3233203068316d31203168316d2d33203168316d2d38203168316d34203068316d2d38203168316d34203068316d2d39203168326d34203068316d2d3136203168316d31203068316d31203068346d31203068326d32203068316d2d3132203168316d31203068316d33203068316d32203068326d2d3132203168386d31203068316d30203468316d2d3131203168336d332030683222207374726f6b653d2223396339643964222f3e3c7061746820643d224d343420313068316d31203168326d31203168316d31203168316d31203168316d31203168314d3520323168326d2d32203168336d2d33203168356d2d31203168326d2d35203168336d31203068326d2d35203168326d31203068336d2d35203168326d32203068316d2d33203168326d31203068326d2d34203168316d31203068316d31203068316d2d32203168336d2d34203168316d32203068326d2d33203168316d32203068316d2d33203168326d31203068316d2d33203168326d31203068326d2d34203168326d31203068316d3135203068316d2d3139203168326d31203068326d2d33203168316d32203068316d2d33203168346d3135203068316d2d3139203168316d31203068326d2d33203168316d32203068316d39203068316d34203068316d2d3137203168326d3132203068316d2d3134203168326d31302030683122207374726f6b653d2223396661376231222f3e3c7061746820643d226d3220313368316d2d31203268316d31203068316d31203068316d33203368316d30203168316d2d34203168316d30203168316d34203068316d30203168316d3431203068316d2d3431203168316d30203168316d3430203068316d2d32203168316d2d32203168316d2d33203168316d2d33203168316d2d3237203768316d312031683122207374726f6b653d2223356636323636222f3e3c7061746820643d226d3420313368316d3339203368316d32203168316d2d3136203168316d33203068316d34203068316d2d3136203168316d33203068316d38203068316d2d3236203168316d3237203168316d2d3230203168316d34203068316d34203068316d31203068316d2d3138203168316d36203068316d2d3132203168316d3133203168316d3233203068316d2d3232203168316d3138203068326d2d35203168326d31203068316d31203068326d2d3335203168316d3235203068366d31203068316d2d3333203168326d3231203068366d31203068316d35203068316d2d3335203168316d3230203068346d31203068316d34203068326d2d3332203168316d3135203068316d31203068346d31203068316d35203068326d2d3330203168346d3131203068346d31203068316d34203068326d2d3236203168336d31203068316d31203068316d34203068316d32203068326d31203068316d35203068316d2d3231203168316d34203068326d32203068316d38203068316d31203068316d2d3231203168316d3135203068316d31203068316d2d3134203168326d37203068336d2d36203168326d31203068316d2d35203168316d31203068316d2d3130203168316d31203068316d31203068316d31203068316d2d36203168316d312030683122207374726f6b653d2223393539303839222f3e3c7061746820643d224d343420313368316d31203068316d31203068326d2d37203168316d31203068316d31203068326d31203068336d2d3132203168316d32203068316d31203068316d31203068376d2d3137203168316d31203068316d31203068326d3120306831336d2d3232203168316d32203068316d31203068326d31203068336d31203068366d31203068346d2d3235203168316d32203068326d31203068316d3120306831346d31203068326d2d3235203168316d31203068316d31203068316d3120306831306d31203068316d31203068356d2d3236203168326d31203068316d3120306831306d31203068366d31203068326d2d3239203168316d31203068316d31203068316d31203068346d31203068336d31203068386d31203068336d2d3239203168316d32203068316d31203068326d31203068316d31203068396d31203068326d31203068346d2d3236203168316d31203068326d3120306831316d31203068354d3620323468336d3135203068316d31203068336d3120306831306d31203068356d31203068314d3920323568316d3131203068316d31203068316d31203068326d32203068396d31203068336d31203068344d3920323668316d3133203068316d31203068366d31203068346d31203068386d2d3335203168326d31203068316d3130203068316d31203068386d31203068346d31203068316d31203068326d2d3332203168316d3133203068366d31203068346d31203068336d2d3239203168316d31203068316d31203068316d313020306831336d2d3237203168316d33203068316d3133203068346d31203068316d2d3233203168326d32203068316d2d33203168326d31203068316d2d32203168316d31203068316d2d32203168316d39203068316d31203068316d33203068316d32203068316d2d3139203168316d31203068316d2d32203168316d30203168326d30203268316d32203068316d34203068316d31203068316d33203068316d2d3134203168326d362030683122207374726f6b653d2223386139346131222f3e3c7061746820643d226d3220313468326d2d31203268336d30203168326d2d32203168336d2d32203168316d31203068316d30203168316d32203068316d2d33203168326d3436203068316d2d3438203168316d33203068316d3431203068326d2d3438203168316d31203068316d3430203068356d2d3437203168316d31203068316d3337203068316d32203068326d2d3338203168316d3334203068316d30203168316d2d3334203168316d2d36203168316d3332203168316d2d33203168316d2d3331203168316d3237203068316d2d3235203168316d3231203068316d2d33203168316d2d3231203168316d3137203068316d2d3138203168316d35203168316d2d35203168316d302031683122207374726f6b653d2223373337343737222f3e3c7061746820643d226d3520313468316d32203268316d30203168316d31203168316d30203168316d33203568316d32203068316d3334203068326d32203068316d2d3433203168326d3333203068316d31203068326d31203068326d2d3432203168316d31203068316d33203068316d3236203068316d32203068346d2d3339203168346d3333203068316d2d3335203168326d30203168316d2d32203168316d31203068326d3136203068316d3133203068316d2d3334203168316d31203068326d3235203168316d2d33203168316d2d3234203168316d3230203068316d2d39203168316d35203068316d2d3135203168316d34203068316d342031683122207374726f6b653d2223383838333761222f3e3c7061746820643d224d3320313568316d31203268316d3438203068316d31203168314d3420313968316d33203068316d3431203068316d31203068314d3420323068316d34203068316d3337203068316d36203068314d3420323168316d35203068316d34203068316d3335203068314d3420323268316d36203068316d31203068316d3331203068316d32203068316d2d3336203168316d3239203068316d35203068316d2d3130203168316d35203068316d2d3332203168316d3232203068316d33203068316d2d3330203168316d33203068316d3138203068316d2d3233203168316d3139203068316d34203068316d31203068316d39203068316d2d3337203168316d39203068316d36203068316d34203068316d2d3132203168316d3238203068316d2d3338203168316d39203068336d34203068316d3135203168316d2d3332203168316d30203168316d3235203068316d38203068316d2d3335203168316d3232203068316d2d3233203168316d3139203068316d39203068316d2d3330203168326d36203068316d32203068316d35203068316d39203068316d2d3237203168316d31203068316d3231203068316d2d3234203168316d31203068316d38203068316d31203068316d38203068316d2d3231203168336d35203068316d39203068316d2d33203168316d2d34203268316d2d3134203168316d3130203068316d2d3130203168316d362030683122207374726f6b653d2223376538353930222f3e3c7061746820643d224d353920313768314d3420313868316d3534203068314d3520313968316d3532203068324d3620323068316d3530203068324d3720323168316d3437203068324d3820323268316d3434203068324d3420323368316d35203068316d3339203068336d2d3432203168316d3336203068336d2d3339203168316d36203068316d3237203068326d2d3335203168316d36203068316d3233203068326d2d3332203168316d36203068316d3231203068314d3920323868316d36203068316d36203068326d3136203068326d3133203068326d2d3431203168316d37203068316d3134203068316d3133203068316d32203068316d2d3339203168316d36203068326d39203068326d3133203068316d34203068316d2d3338203168316d37203068396d3133203068316d36203068316d2d3337203168316d3236203068316d38203068316d2d3433203168316d36203068316d3233203068316d3130203068316d2d3334203168316d3139203068316d3130203068326d2d3332203168316d3136203068316d3131203068316d2d3239203168316d3133203068316d3131203068316d2d3333203168316d37203068316d38203068326d3131203068316d2d3232203168386d3132203068316d2d33203168316d2d33203168316d2d33203168316d2d3138203168316d3135203068316d2d33203168316d2d3132203168316d38203068316d2d382031683622207374726f6b653d2223343035363566222f3e3c7061746820643d226d3520323068316d2d31203468316d36203668316d31203268316d3238203668316d2d34203168316d31203068316d31203068316d2d3137203168316d39203068336d2d3136203168316d32203068326d31203068356d32203068316d32203068316d2d3133203168336d31203068316d31203068346d2d313020316831306d2d382031683522207374726f6b653d2223623462356238222f3e3c7061746820643d226d333020343168316d35203068326d2d36203168316d31203068316d312032683122207374726f6b653d2223633263336334222f3ea2646970667358221220e42253626335976ceb6c5b4beb76cd1617a80042420326d695ec351daded6e1564736f6c63430008100033

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

000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb00000000000000000000000016f5a35647d6f03d5d3da7b35409d65ba03af3b200000000000000000000000000000000000000000000000000000000000000fa

-----Decoded View---------------
Arg [0] : _punkContractAddress (address): 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB
Arg [1] : _punkImagesAddress (address): 0x16F5A35647D6F03D5D3da7b35409D65ba03aF3B2
Arg [2] : _maxSupply (uint256): 250

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb
Arg [1] : 00000000000000000000000016f5a35647d6f03d5d3da7b35409d65ba03af3b2
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000fa


Deployed Bytecode Sourcemap

39046:14094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21236:305;;;;;;;;;;-1:-1:-1;21236:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;21236:305:0;;;;;;;;22163:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23676:171::-;;;;;;;;;;-1:-1:-1;23676:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1824:55:1;;;1806:74;;1794:2;1779:18;23676:171:0;1660:226:1;23193:417:0;;;;;;;;;;-1:-1:-1;23193:417:0;;;;;:::i;:::-;;:::i;:::-;;45913:42;;;;;;;;;;-1:-1:-1;45913:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24376:336;;;;;;;;;;-1:-1:-1;24376:336:0;;;;;:::i;:::-;;:::i;24783:185::-;;;;;;;;;;-1:-1:-1;24783:185:0;;;;;:::i;:::-;;:::i;50206:707::-;;;;;;;;;;-1:-1:-1;50206:707:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46665:155::-;;;;;;;;;;-1:-1:-1;46665:155:0;;;;;:::i;:::-;;:::i;21874:222::-;;;;;;;;;;-1:-1:-1;21874:222:0;;;;;:::i;:::-;;:::i;21605:207::-;;;;;;;;;;-1:-1:-1;21605:207:0;;;;;:::i;:::-;;:::i;:::-;;;4143:25:1;;;4131:2;4116:18;21605:207:0;3997:177:1;36213:103:0;;;;;;;;;;;;;:::i;46465:188::-;;;;;;;;;;-1:-1:-1;46465:188:0;;;;;:::i;:::-;;:::i;49318:563::-;;;;;;:::i;:::-;;:::i;35565:87::-;;;;;;;;;;-1:-1:-1;35638:6:0;;-1:-1:-1;;;;;35638:6:0;35565:87;;22332:104;;;;;;;;;;;;;:::i;49212:98::-;;;;;;;;;;;;;:::i;46828:409::-;;;;;;;;;;-1:-1:-1;46828:409:0;;;;;:::i;:::-;;:::i;23919:155::-;;;;;;;;;;-1:-1:-1;23919:155:0;;;;;:::i;:::-;;:::i;25039:323::-;;;;;;;;;;-1:-1:-1;25039:323:0;;;;;:::i;:::-;;:::i;47245:1959::-;;;;;;;;;;-1:-1:-1;47245:1959:0;;;;;:::i;:::-;;:::i;46230:227::-;;;;;;;;;;-1:-1:-1;46230:227:0;;;;;:::i;:::-;;:::i;45853:53::-;;;;;;;;;;-1:-1:-1;45853:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;51036:384;;;;;;;;;;-1:-1:-1;51036:384:0;;;;;:::i;:::-;;:::i;24145:164::-;;;;;;;;;;-1:-1:-1;24145:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24266:25:0;;;24242:4;24266:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24145:164;36471:201;;;;;;;;;;-1:-1:-1;36471:201:0;;;;;:::i;:::-;;:::i;50921:107::-;;;;;;;;;;-1:-1:-1;50921:107:0;;;;;:::i;:::-;51005:15;;50921:107;21236:305;21338:4;21375:40;;;21390:25;21375:40;;:105;;-1:-1:-1;21432:48:0;;;21447:33;21432:48;21375:105;:158;;;-1:-1:-1;19894:25:0;19879:40;;;;21497:36;21355:178;21236:305;-1:-1:-1;;21236:305:0:o;22163:100::-;22217:13;22250:5;22243:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22163:100;:::o;23676:171::-;23752:7;23772:23;23787:7;23772:14;:23::i;:::-;-1:-1:-1;23815:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23815:24:0;;23676:171::o;23193:417::-;23274:13;23290:23;23305:7;23290:14;:23::i;:::-;23274:39;;23338:5;-1:-1:-1;;;;;23332:11:0;:2;-1:-1:-1;;;;;23332:11:0;;23324:57;;;;-1:-1:-1;;;23324:57:0;;8824:2:1;23324:57:0;;;8806:21:1;8863:2;8843:18;;;8836:30;8902:34;8882:18;;;8875:62;8973:3;8953:18;;;8946:31;8994:19;;23324:57:0;;;;;;;;;16459:10;-1:-1:-1;;;;;23416:21:0;;;;:62;;-1:-1:-1;23441:37:0;23458:5;16459:10;24145:164;:::i;23441:37::-;23394:174;;;;-1:-1:-1;;;23394:174:0;;9226:2:1;23394:174:0;;;9208:21:1;9265:2;9245:18;;;9238:30;9304:34;9284:18;;;9277:62;9375:32;9355:18;;;9348:60;9425:19;;23394:174:0;9024:426:1;23394:174:0;23581:21;23590:2;23594:7;23581:8;:21::i;:::-;23263:347;23193:417;;:::o;24376:336::-;24571:41;16459:10;24604:7;24571:18;:41::i;:::-;24563:100;;;;-1:-1:-1;;;24563:100:0;;9657:2:1;24563:100:0;;;9639:21:1;9696:2;9676:18;;;9669:30;9735:34;9715:18;;;9708:62;9806:16;9786:18;;;9779:44;9840:19;;24563:100:0;9455:410:1;24563:100:0;24676:28;24686:4;24692:2;24696:7;24676:9;:28::i;24783:185::-;24921:39;24938:4;24944:2;24948:7;24921:39;;;;;;;;;;;;:16;:39::i;50206:707::-;50274:16;50302:23;50328;50338:12;50328:9;:23::i;:::-;50302:49;;50362:30;50409:15;50395:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50395:30:0;;50362:63;;50467:22;50504:23;50544:331;50570:15;50552;:33;:62;;;;;50607:7;;50589:14;:25;;50552:62;50544:331;;;50677:12;-1:-1:-1;;;;;50650:39:0;:23;50658:14;50650:7;:23::i;:::-;-1:-1:-1;;;;;50650:39:0;;50646:175;;50743:14;50710:13;50724:15;50710:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;50787:17;;50646:175;50846:16;;;;;50544:331;;;-1:-1:-1;50892:13:0;;50206:707;-1:-1:-1;;;;50206:707:0:o;46665:155::-;46765:25;;46754:58;;;;;10233:6:1;10221:19;;46754:58:0;;;10203:38:1;46723:13:0;;-1:-1:-1;;;;;46765:25:0;;46754:50;;10176:18:1;;46754:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21874:222::-;21946:7;21982:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21982:16:0;;22009:56;;;;-1:-1:-1;;;22009:56:0;;11107:2:1;22009:56:0;;;11089:21:1;11146:2;11126:18;;;11119:30;11185:26;11165:18;;;11158:54;11229:18;;22009:56:0;10905:348:1;21605:207:0;21677:7;-1:-1:-1;;;;;21705:19:0;;21697:73;;;;-1:-1:-1;;;21697:73:0;;11460:2:1;21697:73:0;;;11442:21:1;11499:2;11479:18;;;11472:30;11538:34;11518:18;;;11511:62;11609:11;11589:18;;;11582:39;11638:19;;21697:73:0;11258:405:1;21697:73:0;-1:-1:-1;;;;;;21788:16:0;;;;;:9;:16;;;;;;;21605:207::o;36213:103::-;35451:13;:11;:13::i;:::-;36278:30:::1;36305:1;36278:18;:30::i;:::-;36213:103::o:0;46465:188::-;46598:19;;46585:60;;;;;;;;4143:25:1;;;46546:4:0;;-1:-1:-1;;;;;46598:19:0;;46585:52;;4116:18:1;;46585:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46568:77:0;:13;-1:-1:-1;;;;;46568:77:0;;46561:84;;46465:188;;;;:::o;49318:563::-;49408:16;49416:7;49408;:16::i;:::-;-1:-1:-1;;;;;49396:28:0;:10;-1:-1:-1;;;;;49396:28:0;;49388:56;;;;-1:-1:-1;;;49388:56:0;;12126:2:1;49388:56:0;;;12108:21:1;12165:2;12145:18;;;12138:30;12204:17;12184:18;;;12177:45;12239:18;;49388:56:0;11924:339:1;49388:56:0;49463:31;49475:10;49487:6;49463:11;:31::i;:::-;49455:55;;;;-1:-1:-1;;;49455:55:0;;12470:2:1;49455:55:0;;;12452:21:1;12509:2;12489:18;;;12482:30;12548:13;12528:18;;;12521:41;12579:18;;49455:55:0;12268:335:1;49455:55:0;49530:20;;;;:12;:20;;;;;;;;49529:21;49521:44;;;;-1:-1:-1;;;49521:44:0;;12810:2:1;49521:44:0;;;12792:21:1;12849:2;12829:18;;;12822:30;12888:12;12868:18;;;12861:40;12918:18;;49521:44:0;12608:334:1;49521:44:0;49597:11;49584:9;:24;;49576:66;;;;-1:-1:-1;;;49576:66:0;;13149:2:1;49576:66:0;;;13131:21:1;13188:2;13168:18;;;13161:30;13227:31;13207:18;;;13200:59;13276:18;;49576:66:0;12947:353:1;49576:66:0;49733:5;49700:29;;;:20;:29;;;;;;;;;;49687:43;;:12;:43;;;;;;:51;;;;;;;;;49774:38;;;;49846:20;;;;;:27;;;;;-1:-1:-1;49846:27:0;;;49318:563::o;22332:104::-;22388:13;22421:7;22414:14;;;;;:::i;49212:98::-;35451:13;:11;:13::i;:::-;35638:6;;49254:48:::1;::::0;-1:-1:-1;;;;;35638:6:0;;;;49280:21:::1;49254:48:::0;::::1;;;::::0;::::1;::::0;;;49280:21;35638:6;49254:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49212:98::o:0;46828:409::-;46894:10;46886:7;;:18;46878:40;;;;-1:-1:-1;;;46878:40:0;;13507:2:1;46878:40:0;;;13489:21:1;13546:1;13526:18;;;13519:29;13584:11;13564:18;;;13557:39;13613:18;;46878:40:0;13305:332:1;46878:40:0;46937:31;46949:10;46961:6;46937:11;:31::i;:::-;46929:55;;;;-1:-1:-1;;;46929:55:0;;12470:2:1;46929:55:0;;;12452:21:1;12509:2;12489:18;;;12482:30;12548:13;12528:18;;;12521:41;12579:18;;46929:55:0;12268:335:1;46929:55:0;47004:20;;;;:12;:20;;;;;;;;47003:21;46995:50;;;;-1:-1:-1;;;46995:50:0;;13844:2:1;46995:50:0;;;13826:21:1;13883:2;13863:18;;;13856:30;13922:19;13902:18;;;13895:47;13959:18;;46995:50:0;13642:341:1;46995:50:0;47074:7;;;;;;47056:15;47092:9;47074:7;47092:9;:::i;:::-;;;;-1:-1:-1;;47112:29:0;;;;:20;:29;;;;;;;;:38;;;47161:20;;;:12;:20;;;;;:27;;;;47184:4;47161:27;;;47199:30;47209:10;47133:7;47199:9;:30::i;:::-;46867:370;46828:409;:::o;23919:155::-;24014:52;16459:10;24047:8;24057;24014:18;:52::i;25039:323::-;25213:41;16459:10;25246:7;25213:18;:41::i;:::-;25205:100;;;;-1:-1:-1;;;25205:100:0;;9657:2:1;25205:100:0;;;9639:21:1;9696:2;9676:18;;;9669:30;9735:34;9715:18;;;9708:62;9806:16;9786:18;;;9779:44;9840:19;;25205:100:0;9455:410:1;25205:100:0;25316:38;25330:4;25336:2;25340:7;25349:4;25316:13;:38::i;:::-;25039:323;;;;:::o;47245:1959::-;26934:4;26958:16;;;:7;:16;;;;;;47310:13;;-1:-1:-1;;;;;26958:16:0;47336:76;;;;-1:-1:-1;;;47336:76:0;;14579:2:1;47336:76:0;;;14561:21:1;14618:2;14598:18;;;14591:30;14657:34;14637:18;;;14630:62;14728:17;14708:18;;;14701:45;14763:19;;47336:76:0;14377:411:1;47336:76:0;47563:1599;47690:25;47707:7;47690:16;:25::i;:::-;47825:29;;;;:20;:29;;;;;;47808:47;;:16;:47::i;:::-;47963:29;;;;:20;:29;;;;;;47946:47;;:16;:47::i;:::-;48176:866;48527:14;;;;;;;;;;;;;;;;;48726:71;48738:2;48742:1;48745:51;48765:20;:29;48786:7;48765:29;;;;;;;;;;;;48745:12;:51::i;48726:71::-;48283:677;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48176:12;:866::i;:::-;47608:1504;;;;;;;;;;;:::i;47563:1599::-;47470:1711;;;;;;;;:::i;:::-;;;;;;;;;;;;;47425:1771;;47245:1959;;;:::o;46230:227::-;35451:13;:11;:13::i;:::-;46350:19:::1;:42:::0;;-1:-1:-1;;;;;46350:42:0;;::::1;::::0;;;::::1;;::::0;;;46403:25:::1;:46:::0;;;;;::::1;::::0;::::1;;::::0;;46230:227::o;51036:384::-;51126:13;51152:11;51166:15;51176:4;51005:15;;50921:107;51166:15;51152:29;-1:-1:-1;51236:14:0;51275:4;51263:9;51267:5;51152:29;51263:9;:::i;:::-;:11;;51273:1;51263:11;:::i;:::-;:16;;;;:::i;:::-;51253:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51253:27:0;;51236:44;;51295:6;51291:91;51317:4;51307:9;51311:5;51307:3;:9;:::i;:::-;:14;;;;:::i;:::-;51304:1;:17;51291:91;;51354:4;51368:1;51360:7;51362:5;51360:1;:7;:::i;:::-;:9;;;;:::i;:::-;51348:22;;;;;;;;:::i;:::-;;;;;;;;;51341:1;51343;51341:4;;;;;;;;:::i;:::-;;;;:29;;;;;;;;;;-1:-1:-1;51322:3:0;;;;:::i;:::-;;;;51291:91;;;-1:-1:-1;51406:1:0;51036:384;-1:-1:-1;;;;;51036:384:0:o;36471:201::-;35451:13;:11;:13::i;:::-;-1:-1:-1;;;;;36560:22:0;::::1;36552:73;;;::::0;-1:-1:-1;;;36552:73:0;;20590:2:1;36552:73:0::1;::::0;::::1;20572:21:1::0;20629:2;20609:18;;;20602:30;20668:34;20648:18;;;20641:62;20739:8;20719:18;;;20712:36;20765:19;;36552:73:0::1;20388:402:1::0;36552:73:0::1;36636:28;36655:8;36636:18;:28::i;31651:135::-:0;26934:4;26958:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26958:16:0;31725:53;;;;-1:-1:-1;;;31725:53:0;;11107:2:1;31725:53:0;;;11089:21:1;11146:2;11126:18;;;11119:30;11185:26;11165:18;;;11158:54;11229:18;;31725:53:0;10905:348:1;30930:174:0;31005:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;31005:29:0;;;;;;;;:24;;31059:23;31005:24;31059:14;:23::i;:::-;-1:-1:-1;;;;;31050:46:0;;;;;;;;;;;30930:174;;:::o;27163:264::-;27256:4;27273:13;27289:23;27304:7;27289:14;:23::i;:::-;27273:39;;27342:5;-1:-1:-1;;;;;27331:16:0;:7;-1:-1:-1;;;;;27331:16:0;;:52;;;-1:-1:-1;;;;;;24266:25:0;;;24242:4;24266:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27351:32;27331:87;;;;27411:7;-1:-1:-1;;;;;27387:31:0;:20;27399:7;27387:11;:20::i;:::-;-1:-1:-1;;;;;27387:31:0;;27331:87;27323:96;27163:264;-1:-1:-1;;;;27163:264:0:o;30186:625::-;30345:4;-1:-1:-1;;;;;30318:31:0;:23;30333:7;30318:14;:23::i;:::-;-1:-1:-1;;;;;30318:31:0;;30310:81;;;;-1:-1:-1;;;30310:81:0;;20997:2:1;30310:81:0;;;20979:21:1;21036:2;21016:18;;;21009:30;21075:34;21055:18;;;21048:62;21146:7;21126:18;;;21119:35;21171:19;;30310:81:0;20795:401:1;30310:81:0;-1:-1:-1;;;;;30410:16:0;;30402:65;;;;-1:-1:-1;;;30402:65:0;;21403:2:1;30402:65:0;;;21385:21:1;21442:2;21422:18;;;21415:30;21481:34;21461:18;;;21454:62;21552:6;21532:18;;;21525:34;21576:19;;30402:65:0;21201:400:1;30402:65:0;30584:29;30601:1;30605:7;30584:8;:29::i;:::-;-1:-1:-1;;;;;30626:15:0;;;;;;:9;:15;;;;;:20;;30645:1;;30626:15;:20;;30645:1;;30626:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30657:13:0;;;;;;:9;:13;;;;;:18;;30674:1;;30657:13;:18;;30674:1;;30657:18;:::i;:::-;;;;-1:-1:-1;;30686:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;30686:21:0;;;;;;;;;30725:27;;30686:16;;30725:27;;;;;;;23263:347;23193:417;;:::o;35730:132::-;35638:6;;-1:-1:-1;;;;;35638:6:0;16459:10;35794:23;35786:68;;;;-1:-1:-1;;;35786:68:0;;21808:2:1;35786:68:0;;;21790:21:1;;;21827:18;;;21820:30;21886:34;21866:18;;;21859:62;21938:18;;35786:68:0;21606:356:1;36832:191:0;36925:6;;;-1:-1:-1;;;;;36942:17:0;;;;;;;;;;;36975:40;;36925:6;;;36942:17;36925:6;;36975:40;;36906:16;;36975:40;36895:128;36832:191;:::o;27769:110::-;27845:26;27855:2;27859:7;27845:26;;;;;;;;;;;;:9;:26::i;31247:315::-;31402:8;-1:-1:-1;;;;;31393:17:0;:5;-1:-1:-1;;;;;31393:17:0;;31385:55;;;;-1:-1:-1;;;31385:55:0;;22169:2:1;31385:55:0;;;22151:21:1;22208:2;22188:18;;;22181:30;22247:27;22227:18;;;22220:55;22292:18;;31385:55:0;21967:349:1;31385:55:0;-1:-1:-1;;;;;31451:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;31513:41;;586::1;;;31513::0;;559:18:1;31513:41:0;;;;;;;31247:315;;;:::o;26243:313::-;26399:28;26409:4;26415:2;26419:7;26399:9;:28::i;:::-;26446:47;26469:4;26475:2;26479:7;26488:4;26446:22;:47::i;:::-;26438:110;;;;-1:-1:-1;;;26438:110:0;;22523:2:1;26438:110:0;;;22505:21:1;22562:2;22542:18;;;22535:30;22601:34;22581:18;;;22574:62;22672:20;22652:18;;;22645:48;22710:19;;26438:110:0;22321:414:1;16938:723:0;16994:13;17215:5;17224:1;17215:10;17211:53;;-1:-1:-1;;17242:10:0;;;;;;;;;;;;;;;;;;16938:723::o;17211:53::-;17289:5;17274:12;17330:78;17337:9;;17330:78;;17363:8;;;;:::i;:::-;;-1:-1:-1;17386:10:0;;-1:-1:-1;17394:2:0;17386:10;;:::i;:::-;;;17330:78;;;17418:19;17450:6;17440:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17440:17:0;;17418:39;;17468:154;17475:10;;17468:154;;17502:11;17512:1;17502:11;;:::i;:::-;;-1:-1:-1;17571:10:0;17579:2;17571:5;:10;:::i;:::-;17558:24;;:2;:24;:::i;:::-;17545:39;;17528:6;17535;17528:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;17599:11:0;17608:2;17599:11;;:::i;:::-;;;17468:154;;51608:1527;51712:11;;51672:13;;51698:11;51738:8;;;51734:23;;-1:-1:-1;;51748:9:0;;;;;;;;;-1:-1:-1;51748:9:0;;;51608:1527;-1:-1:-1;51608:1527:0:o;51734:23::-;51770:18;51808:1;51797:7;:3;51803:1;51797:7;:::i;:::-;51796:13;;;;:::i;:::-;51791:19;;:1;:19;:::i;:::-;51770:40;-1:-1:-1;51823:19:0;51855:15;51770:40;51868:2;51855:15;:::i;:::-;51845:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51845:26:0;;51823:48;;51882:18;51903:5;;;;;;;;;;;;;;;;;51882:26;;51972:1;51965:5;51961:13;52017:2;52009:6;52005:15;52068:1;52036:777;52091:3;52088:1;52085:10;52036:777;;;52146:1;52189:12;;;;;52183:19;52284:4;52272:2;52268:14;;;;;52250:40;;52244:47;52393:2;52389:14;;;52385:25;;52371:40;;52365:47;52522:1;52518:13;;;52514:24;;52500:39;;52494:46;52642:16;;;;52628:31;;52622:38;52320:1;52316:11;;;52414:4;52361:58;;;52352:68;52445:11;;52490:57;;;52481:67;;;;52573:11;;52618:49;;52609:59;52697:3;52693:13;52726:22;;52796:1;52781:17;;;;52139:9;52036:777;;;52040:44;52845:1;52840:3;52836:11;52866:1;52861:84;;;;52964:1;52959:82;;;;52829:212;;52861:84;52913:16;52894:17;;;52887:43;52861:84;;52959:82;53011:14;52992:17;;;52985:41;52829:212;-1:-1:-1;;;53057:26:0;;;53064:6;51608:1527;-1:-1:-1;;;;51608:1527:0:o;28106:319::-;28235:18;28241:2;28245:7;28235:5;:18::i;:::-;28286:53;28317:1;28321:2;28325:7;28334:4;28286:22;:53::i;:::-;28264:153;;;;-1:-1:-1;;;28264:153:0;;22523:2:1;28264:153:0;;;22505:21:1;22562:2;22542:18;;;22535:30;22601:34;22581:18;;;22574:62;22672:20;22652:18;;;22645:48;22710:19;;28264:153:0;22321:414:1;32350:853:0;32504:4;-1:-1:-1;;;;;32525:13:0;;8758:19;:23;32521:675;;32561:71;;;;;-1:-1:-1;;;;;32561:36:0;;;;;:71;;16459:10;;32612:4;;32618:7;;32627:4;;32561:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32561:71:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32557:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32802:6;:13;32819:1;32802:18;32798:328;;32845:60;;-1:-1:-1;;;32845:60:0;;22523:2:1;32845:60:0;;;22505:21:1;22562:2;22542:18;;;22535:30;22601:34;22581:18;;;22574:62;22672:20;22652:18;;;22645:48;22710:19;;32845:60:0;22321:414:1;32798:328:0;33076:6;33070:13;33061:6;33057:2;33053:15;33046:38;32557:584;32683:51;;32693:41;32683:51;;-1:-1:-1;32676:58:0;;32521:675;-1:-1:-1;33180:4:0;32350:853;;;;;;:::o;28761:439::-;-1:-1:-1;;;;;28841:16:0;;28833:61;;;;-1:-1:-1;;;28833:61:0;;24388:2:1;28833:61:0;;;24370:21:1;;;24407:18;;;24400:30;24466:34;24446:18;;;24439:62;24518:18;;28833:61:0;24186:356:1;28833:61:0;26934:4;26958:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26958:16:0;:30;28905:58;;;;-1:-1:-1;;;28905:58:0;;24749:2:1;28905:58:0;;;24731:21:1;24788:2;24768:18;;;24761:30;24827;24807:18;;;24800:58;24875:18;;28905:58:0;24547:352:1;28905:58:0;-1:-1:-1;;;;;29034:13:0;;;;;;:9;:13;;;;;:18;;29051:1;;29034:13;:18;;29051:1;;29034:18;:::i;:::-;;;;-1:-1:-1;;29063:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;29063:21:0;;;;;;;;29102:33;;29063:16;;;29102:33;;29063:16;;29102:33;46867:370;46828:409;:::o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:341::-;946:3;984:5;978:12;1011:6;1006:3;999:19;1027:76;1096:6;1089:4;1084:3;1080:14;1073:4;1066:5;1062:16;1027:76;:::i;:::-;1148:2;1136:15;1153:66;1132:88;1123:98;;;;1223:4;1119:109;;893:341;-1:-1:-1;;893:341:1:o;1239:231::-;1388:2;1377:9;1370:21;1351:4;1408:56;1460:2;1449:9;1445:18;1437:6;1408:56;:::i;1475:180::-;1534:6;1587:2;1575:9;1566:7;1562:23;1558:32;1555:52;;;1603:1;1600;1593:12;1555:52;-1:-1:-1;1626:23:1;;1475:180;-1:-1:-1;1475:180:1:o;1891:154::-;-1:-1:-1;;;;;1970:5:1;1966:54;1959:5;1956:65;1946:93;;2035:1;2032;2025:12;2050:315;2118:6;2126;2179:2;2167:9;2158:7;2154:23;2150:32;2147:52;;;2195:1;2192;2185:12;2147:52;2234:9;2221:23;2253:31;2278:5;2253:31;:::i;:::-;2303:5;2355:2;2340:18;;;;2327:32;;-1:-1:-1;;;2050:315:1:o;2370:456::-;2447:6;2455;2463;2516:2;2504:9;2495:7;2491:23;2487:32;2484:52;;;2532:1;2529;2522:12;2484:52;2571:9;2558:23;2590:31;2615:5;2590:31;:::i;:::-;2640:5;-1:-1:-1;2697:2:1;2682:18;;2669:32;2710:33;2669:32;2710:33;:::i;:::-;2370:456;;2762:7;;-1:-1:-1;;;2816:2:1;2801:18;;;;2788:32;;2370:456::o;2831:247::-;2890:6;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2998:9;2985:23;3017:31;3042:5;3017:31;:::i;3083:632::-;3254:2;3306:21;;;3376:13;;3279:18;;;3398:22;;;3225:4;;3254:2;3477:15;;;;3451:2;3436:18;;;3225:4;3520:169;3534:6;3531:1;3528:13;3520:169;;;3595:13;;3583:26;;3664:15;;;;3629:12;;;;3556:1;3549:9;3520:169;;;-1:-1:-1;3706:3:1;;3083:632;-1:-1:-1;;;;;;3083:632:1:o;3720:272::-;3778:6;3831:2;3819:9;3810:7;3806:23;3802:32;3799:52;;;3847:1;3844;3837:12;3799:52;3886:9;3873:23;3936:6;3929:5;3925:18;3918:5;3915:29;3905:57;;3958:1;3955;3948:12;4179:248;4247:6;4255;4308:2;4296:9;4287:7;4283:23;4279:32;4276:52;;;4324:1;4321;4314:12;4276:52;-1:-1:-1;;4347:23:1;;;4417:2;4402:18;;;4389:32;;-1:-1:-1;4179:248:1:o;4432:416::-;4497:6;4505;4558:2;4546:9;4537:7;4533:23;4529:32;4526:52;;;4574:1;4571;4564:12;4526:52;4613:9;4600:23;4632:31;4657:5;4632:31;:::i;:::-;4682:5;-1:-1:-1;4739:2:1;4724:18;;4711:32;4781:15;;4774:23;4762:36;;4752:64;;4812:1;4809;4802:12;4752:64;4835:7;4825:17;;;4432:416;;;;;:::o;4853:184::-;4905:77;4902:1;4895:88;5002:4;4999:1;4992:15;5026:4;5023:1;5016:15;5042:334;5113:2;5107:9;5169:2;5159:13;;5174:66;5155:86;5143:99;;5272:18;5257:34;;5293:22;;;5254:62;5251:88;;;5319:18;;:::i;:::-;5355:2;5348:22;5042:334;;-1:-1:-1;5042:334:1:o;5381:245::-;5429:4;5462:18;5454:6;5451:30;5448:56;;;5484:18;;:::i;:::-;-1:-1:-1;5541:2:1;5529:15;5546:66;5525:88;5615:4;5521:99;;5381:245::o;5631:336::-;5695:5;5724:52;5740:35;5768:6;5740:35;:::i;:::-;5724:52;:::i;:::-;5715:61;;5799:6;5792:5;5785:21;5839:3;5830:6;5825:3;5821:16;5818:25;5815:45;;;5856:1;5853;5846:12;5815:45;5905:6;5900:3;5893:4;5886:5;5882:16;5869:43;5959:1;5952:4;5943:6;5936:5;5932:18;5928:29;5921:40;5631:336;;;;;:::o;5972:794::-;6067:6;6075;6083;6091;6144:3;6132:9;6123:7;6119:23;6115:33;6112:53;;;6161:1;6158;6151:12;6112:53;6200:9;6187:23;6219:31;6244:5;6219:31;:::i;:::-;6269:5;-1:-1:-1;6326:2:1;6311:18;;6298:32;6339:33;6298:32;6339:33;:::i;:::-;6391:7;-1:-1:-1;6445:2:1;6430:18;;6417:32;;-1:-1:-1;6500:2:1;6485:18;;6472:32;6527:18;6516:30;;6513:50;;;6559:1;6556;6549:12;6513:50;6582:22;;6635:4;6627:13;;6623:27;-1:-1:-1;6613:55:1;;6664:1;6661;6654:12;6613:55;6687:73;6752:7;6747:2;6734:16;6729:2;6725;6721:11;6687:73;:::i;:::-;6677:83;;;5972:794;;;;;;;:::o;6771:388::-;6839:6;6847;6900:2;6888:9;6879:7;6875:23;6871:32;6868:52;;;6916:1;6913;6906:12;6868:52;6955:9;6942:23;6974:31;6999:5;6974:31;:::i;:::-;7024:5;-1:-1:-1;7081:2:1;7066:18;;7053:32;7094:33;7053:32;7094:33;:::i;7164:221::-;7207:5;7260:3;7253:4;7245:6;7241:17;7237:27;7227:55;;7278:1;7275;7268:12;7227:55;7300:79;7375:3;7366:6;7353:20;7346:4;7338:6;7334:17;7300:79;:::i;7390:458::-;7477:6;7485;7493;7546:2;7534:9;7525:7;7521:23;7517:32;7514:52;;;7562:1;7559;7552:12;7514:52;7598:9;7585:23;7575:33;;7655:2;7644:9;7640:18;7627:32;7617:42;;7710:2;7699:9;7695:18;7682:32;7737:18;7729:6;7726:30;7723:50;;;7769:1;7766;7759:12;7723:50;7792;7834:7;7825:6;7814:9;7810:22;7792:50;:::i;:::-;7782:60;;;7390:458;;;;;:::o;7853:322::-;7922:6;7975:2;7963:9;7954:7;7950:23;7946:32;7943:52;;;7991:1;7988;7981:12;7943:52;8031:9;8018:23;8064:18;8056:6;8053:30;8050:50;;;8096:1;8093;8086:12;8050:50;8119;8161:7;8152:6;8141:9;8137:22;8119:50;:::i;8180:437::-;8259:1;8255:12;;;;8302;;;8323:61;;8377:4;8369:6;8365:17;8355:27;;8323:61;8430:2;8422:6;8419:14;8399:18;8396:38;8393:218;;8467:77;8464:1;8457:88;8568:4;8565:1;8558:15;8596:4;8593:1;8586:15;8393:218;;8180:437;;;:::o;9870:184::-;9922:77;9919:1;9912:88;10019:4;10016:1;10009:15;10043:4;10040:1;10033:15;10252:648;10332:6;10385:2;10373:9;10364:7;10360:23;10356:32;10353:52;;;10401:1;10398;10391:12;10353:52;10434:9;10428:16;10467:18;10459:6;10456:30;10453:50;;;10499:1;10496;10489:12;10453:50;10522:22;;10575:4;10567:13;;10563:27;-1:-1:-1;10553:55:1;;10604:1;10601;10594:12;10553:55;10633:2;10627:9;10658:48;10674:31;10702:2;10674:31;:::i;10658:48::-;10729:2;10722:5;10715:17;10769:7;10764:2;10759;10755;10751:11;10747:20;10744:33;10741:53;;;10790:1;10787;10780:12;10741:53;10803:67;10867:2;10862;10855:5;10851:14;10846:2;10842;10838:11;10803:67;:::i;:::-;10889:5;10252:648;-1:-1:-1;;;;;10252:648:1:o;11668:251::-;11738:6;11791:2;11779:9;11770:7;11766:23;11762:32;11759:52;;;11807:1;11804;11797:12;11759:52;11839:9;11833:16;11858:31;11883:5;11858:31;:::i;13988:184::-;14040:77;14037:1;14030:88;14137:4;14134:1;14127:15;14161:4;14158:1;14151:15;14177:195;14216:3;14247:66;14240:5;14237:77;14234:103;;14317:18;;:::i;:::-;-1:-1:-1;14364:1:1;14353:13;;14177:195::o;14793:198::-;14835:3;14873:5;14867:12;14888:65;14946:6;14941:3;14934:4;14927:5;14923:16;14888:65;:::i;:::-;14969:16;;;;;14793:198;-1:-1:-1;;14793:198:1:o;14996:1652::-;15609:66;15604:3;15597:79;15706:66;15701:2;15696:3;15692:12;15685:88;15803:66;15798:2;15793:3;15789:12;15782:88;15900:66;15895:2;15890:3;15886:12;15879:88;15579:3;15996:6;15990:13;16012:74;16079:6;16073:3;16068;16064:13;16059:2;16051:6;16047:15;16012:74;:::i;:::-;16151:66;16145:3;16105:16;;;16137:12;;;16130:88;16248:34;16242:3;16234:12;;16227:56;16313:66;16307:3;16299:12;;16292:88;16405:13;;16427:75;16405:13;16487:3;16479:12;;16474:2;16462:15;;16427:75;:::i;:::-;16568:6;16562:3;16521:17;;;;16554:12;;;16547:28;16605:8;16599:3;16591:12;;16584:30;16638:3;16630:12;;14996:1652;-1:-1:-1;;;;14996:1652:1:o;17228:2426::-;18442:66;18437:3;18430:79;18412:3;18538:6;18532:13;18554:75;18622:6;18617:2;18612:3;18608:12;18601:4;18593:6;18589:17;18554:75;:::i;:::-;18693:66;18688:2;18648:16;;;18680:11;;;18673:87;18789:66;18784:2;18776:11;;18769:87;18885:66;18880:2;18872:11;;18865:87;18977:13;;18999:76;18977:13;19061:2;19053:11;;19046:4;19034:17;;18999:76;:::i;:::-;19140:66;19135:2;19094:17;;;;19127:11;;;19120:87;19236:66;19231:2;19223:11;;19216:87;19332:28;19327:2;19319:11;;19312:49;19386:13;;19408:77;19386:13;19470:3;19462:12;;19455:4;19443:17;;19408:77;:::i;:::-;19501:147;19531:116;19557:89;19587:58;19640:3;19629:8;19625:2;19621:17;19617:27;16730:34;16718:47;;16795:66;16790:2;16781:12;;16774:88;16887:2;16878:12;;16653:243;19587:58;16978:28;16966:41;;17032:2;17023:12;;16901:140;19557:89;19549:6;19531:116;:::i;:::-;17123:66;17111:79;;17215:1;17206:11;;17046:177;19501:147;19494:154;17228:2426;-1:-1:-1;;;;;;;;17228:2426:1:o;19659:461::-;19921:31;19916:3;19909:44;19891:3;19982:6;19976:13;19998:75;20066:6;20061:2;20056:3;20052:12;20045:4;20037:6;20033:17;19998:75;:::i;:::-;20093:16;;;;20111:2;20089:25;;19659:461;-1:-1:-1;;19659:461:1:o;20125:128::-;20192:9;;;20213:11;;;20210:37;;;20227:18;;:::i;20258:125::-;20323:9;;;20344:10;;;20341:36;;;20357:18;;:::i;22740:184::-;22792:77;22789:1;22782:88;22889:4;22886:1;22879:15;22913:4;22910:1;22903:15;22929:120;22969:1;22995;22985:35;;23000:18;;:::i;:::-;-1:-1:-1;23034:9:1;;22929:120::o;23054:112::-;23086:1;23112;23102:35;;23117:18;;:::i;:::-;-1:-1:-1;23151:9:1;;23054:112::o;23171:228::-;23211:7;23337:1;23269:66;23265:74;23262:1;23259:81;23254:1;23247:9;23240:17;23236:105;23233:131;;;23344:18;;:::i;:::-;-1:-1:-1;23384:9:1;;23171:228::o;23404:523::-;23598:4;-1:-1:-1;;;;;23708:2:1;23700:6;23696:15;23685:9;23678:34;23760:2;23752:6;23748:15;23743:2;23732:9;23728:18;23721:43;;23800:6;23795:2;23784:9;23780:18;23773:34;23843:3;23838:2;23827:9;23823:18;23816:31;23864:57;23916:3;23905:9;23901:19;23893:6;23864:57;:::i;:::-;23856:65;23404:523;-1:-1:-1;;;;;;23404:523:1:o;23932:249::-;24001:6;24054:2;24042:9;24033:7;24029:23;24025:32;24022:52;;;24070:1;24067;24060:12;24022:52;24102:9;24096:16;24121:30;24145:5;24121:30;:::i

Swarm Source

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