ETH Price: $3,160.42 (-7.56%)
Gas: 3 Gwei

Token

XANA:PENPENZ x CryptoNinja (PPZ)
 

Overview

Max Total Supply

10,000 PPZ

Holders

1,887

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PPZ
0xc2e421cb65f0d196013aab859b86bcb92965773b
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:
CollectionProxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

// File: contracts\CollectionProxy\IERC1538.sol

pragma solidity ^0.8.0;

/// @title ERC1538 Transparent Contract Standard
/// @dev Required interface
///  Note: the ERC-165 identifier for this interface is 0x61455567
interface IERC1538 {

    /// @dev This emits when one or a set of functions are updated in a transparent contract.
    ///  The message string should give a short description of the change and why
    ///  the change was made.
    event CommitMessage(string message);

    /// @dev This emits for each function that is updated in a transparent contract.
    ///  functionId is the bytes4 of the keccak256 of the function signature.
    ///  oldDelegate is the delegate contract address of the old delegate contract if
    ///  the function is being replaced or removed.
    ///  oldDelegate is the zero value address(0) if a function is being added for the
    ///  first time.
    ///  newDelegate is the delegate contract address of the new delegate contract if
    ///  the function is being added for the first time or if the function is being
    ///  replaced.
    ///  newDelegate is the zero value address(0) if the function is being removed.
    event FunctionUpdate(bytes4 indexed functionId, address indexed oldDelegate, address indexed newDelegate, string functionSignature);

    /// @notice Updates functions in a transparent contract.
    /// @dev If the value of _delegate is zero then the functions specified
    ///  in _functionSignatures are removed.
    ///  If the value of _delegate is a delegate contract address then the functions
    ///  specified in _functionSignatures will be delegated to that address.
    /// @param _delegate The address of a delegate contract to delegate to or zero
    ///        to remove functions.
    /// @param _functionSignatures A list of function signatures listed one after the other
    /// @param _commitMessage A short description of the change and why it is made
    ///        This message is passed to the CommitMessage event.
    function updateContract(address _delegate, string calldata _functionSignatures, string calldata _commitMessage) external;
}

// File: contracts\CollectionProxy\ProxyBaseStorage.sol

pragma solidity ^0.8.0;

///////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @title ProxyBaseStorage
 * @dev Defining base storage for the proxy contract.
 */
///////////////////////////////////////////////////////////////////////////////////////////////////

contract ProxyBaseStorage {

    //////////////////////////////////////////// VARS /////////////////////////////////////////////

    // maps functions to the delegate contracts that execute the functions.
    // funcId => delegate contract
    mapping(bytes4 => address) public delegates;

    // array of function signatures supported by the contract.
    bytes[] public funcSignatures;

    // maps each function signature to its position in the funcSignatures array.
    // signature => index+1
    mapping(bytes => uint256) internal funcSignatureToIndex;

    // proxy address of itself, can be used for cross-delegate calls but also safety checking.
    address proxy;

    ///////////////////////////////////////////////////////////////////////////////////////////////

}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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);
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 {}
}

// File: contracts\OpenseaStandard\IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts\OpenseaStandard\lib\Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: contracts\OpenseaStandard\OperatorFilterer.sol


pragma solidity ^0.8.13;
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts\OpenseaStandard\DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: contracts\NFTLimit.sol

pragma solidity ^0.8.13;
abstract contract NFTLimit is ERC721, DefaultOperatorFilterer {

    mapping(address => bool) public isTransferAllowed;
    mapping(uint256 => bool) public nftLock;

     modifier  onlyTransferAllowed(address from) {
        require(isTransferAllowed[from],"ERC721: transfer not allowed");
        _;
    }

     modifier  isNFTLock(uint256 tokenId) {
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        _;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator)  {
        require(isTransferAllowed[operator],"ERC721: transfer not allowed");
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public  override onlyAllowedOperatorApproval(operator)  {
        require(isTransferAllowed[operator],"ERC721: transfer not allowed");
        super.approve(operator, tokenId);
    }

    


     // OpenSea Enforcer functions
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from)  {
        require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed");
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from)   {
        require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed");
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from)  {
        require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed");
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        super.safeTransferFrom(from, to, tokenId, data);
    }

  
}

// File: contracts\CollectionProxy\CollectionStorage.sol

pragma solidity ^0.8.13;

contract CollectionStorage {

uint256  tokenIds;
uint256 burnCount;
string public baseURI;
mapping(address => bool) public _allowAddress;


 mapping(uint256 => bytes32) internal whiteListRoot;

 uint256 internal MaxSupply;

 uint256 public status;

 uint256 internal mainPrice;

 address internal seller;

 uint256 internal royalty;

uint256 public bundleId;
 uint256 public perPurchaseNFTToMint;

 

 uint256[] rarity;

 struct SaleDetail {
    uint256 startTime;
    uint256 endTime;
    uint256 price;
 }

 mapping (uint256=>SaleDetail) internal _saleDetails;
 mapping(address => mapping(uint256 => uint256)) internal userBought;
 mapping(uint256 => bool) internal isReserveWhitelist;
 mapping(uint256 => uint256) public reservedNFT;

}

// File: contracts\CollectionProxy\Ownable.sol



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

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

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

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

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

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

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

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

// File: contracts\CollectionProxy\CollectionProxy.sol

pragma solidity ^0.8.13;
///////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @title ProxyReceiver Contract
 * @dev Handles forwarding calls to receiver delegates while offering transparency of updates.
 *      Follows ERC-1538 standard.
 *
 *    NOTE: Not recommended for direct use in a production contract, as no security control.
 *          Provided as simple example only.
 */
///////////////////////////////////////////////////////////////////////////////////////////////////

contract CollectionProxy is ProxyBaseStorage, IERC1538, NFTLimit, Ownable, CollectionStorage {
using Strings for uint256;

    constructor(address implementation)ERC721("XANA:PENPENZ x CryptoNinja", "PPZ") {

        proxy = address(this);
        _allowAddress[msg.sender] = true;
        baseURI = "https://testapi.xanalia.com/xanalia/get-nft-meta?tokenId=";
        MaxSupply = 10000;
    
        //Adding ERC1538 updateContract function
        bytes memory signature = "updateContract(address,string,string)";
         constructorRegisterFunction(signature, proxy);
         bytes memory setBaseURISig = "setBaseURI(string)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getUserBoughtCount(address,uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "isWhitelisted(address,bytes32[],uint256,uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "preMint(address,uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setSeed(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "claimCryptoNFT()";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "mint(bytes32[],uint256,uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "burnAdmin(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setWhitelistRoot(bytes32,uint256,bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setAuthor(address)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setMaxSupply(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setStatus(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setTransferAllowed(address,bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setSaleDetails(uint256,uint256,uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setlockStatusNFT(uint256,bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setPerBundleNFTToMint(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "tokenURI(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setPrice(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setRoyalty(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getPrice()";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getMaxSupply()";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getAuthor(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getRoyaltyFee(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getCreator(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "lockNFTBulk(uint256[],bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "unLockGas(uint256[])";
         constructorRegisterFunction(setBaseURISig, implementation);
    }

     function constructorRegisterFunction(bytes memory signature, address proxy) internal {
        bytes4 funcId = bytes4(keccak256(signature));
        delegates[funcId] = proxy;
        funcSignatures.push(signature);
        funcSignatureToIndex[signature] = funcSignatures.length;
       
        emit FunctionUpdate(funcId, address(0), proxy, string(signature));
        
        emit CommitMessage("Added ERC1538 updateContract function at contract creation");
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////

    fallback() external payable {
        if (msg.sig == bytes4(0) && msg.value != uint(0)) { // skipping ethers/BNB received to delegate
            return;
        }
        address delegate = delegates[msg.sig];
        require(delegate != address(0), "Function does not exist.");
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), delegate, ptr, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(ptr, 0, size)
            switch result
            case 0 {revert(ptr, size)}
            default {return (ptr, size)}
        }
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////

    /// @notice Updates functions in a transparent contract.
    /// @dev If the value of _delegate is zero then the functions specified
    ///  in _functionSignatures are removed.
    ///  If the value of _delegate is a delegate contract address then the functions
    ///  specified in _functionSignatures will be delegated to that address.
    /// @param _delegate The address of a delegate contract to delegate to or zero
    /// @param _functionSignatures A list of function signatures listed one after the other
    /// @param _commitMessage A short description of the change and why it is made
    ///        This message is passed to the CommitMessage event.
    function updateContract(address _delegate, string calldata _functionSignatures, string calldata _commitMessage) override onlyOwner external {
        // pos is first used to check the size of the delegate contract.
        // After that pos is the current memory location of _functionSignatures.
        // It is used to move through the characters of _functionSignatures
        uint256 pos;
        if(_delegate != address(0)) {
            assembly {
                pos := extcodesize(_delegate)
            }
            require(pos > 0, "_delegate address is not a contract and is not address(0)");
        }

        // creates a bytes version of _functionSignatures
        bytes memory signatures = bytes(_functionSignatures);
        // stores the position in memory where _functionSignatures ends.
        uint256 signaturesEnd;
        // stores the starting position of a function signature in _functionSignatures
        uint256 start;
        assembly {
            pos := add(signatures,32)
            start := pos
            signaturesEnd := add(pos,mload(signatures))
        }
        // the function id of the current function signature
        bytes4 funcId;
        // the delegate address that is being replaced or address(0) if removing functions
        address oldDelegate;
        // the length of the current function signature in _functionSignatures
        uint256 num;
        // the current character in _functionSignatures
        uint256 char;
        // the position of the current function signature in the funcSignatures array
        uint256 index;
        // the last position in the funcSignatures array
        uint256 lastIndex;
        // parse the _functionSignatures string and handle each function
        for (; pos < signaturesEnd; pos++) {
            assembly {char := byte(0,mload(pos))}
            // 0x29 == )
            if (char == 0x29) {
                pos++;
                num = (pos - start);
                start = pos;
                assembly {
                    mstore(signatures,num)
                }
                funcId = bytes4(keccak256(signatures));
                oldDelegate = delegates[funcId];
                if(_delegate == address(0)) {
                    index = funcSignatureToIndex[signatures];
                    require(index != 0, "Function does not exist.");
                    index--;
                    lastIndex = funcSignatures.length - 1;
                    if (index != lastIndex) {
                        funcSignatures[index] = funcSignatures[lastIndex];
                        funcSignatureToIndex[funcSignatures[lastIndex]] = index + 1;
                    }
                    funcSignatures.pop();
                    delete funcSignatureToIndex[signatures];
                    delete delegates[funcId];
                    emit FunctionUpdate(funcId, oldDelegate, address(0), string(signatures));
                }
                else if (funcSignatureToIndex[signatures] == 0) {
                    require(oldDelegate == address(0), "FuncId clash.");
                    delegates[funcId] = _delegate;
                    funcSignatures.push(signatures);
                    funcSignatureToIndex[signatures] = funcSignatures.length;
                    emit FunctionUpdate(funcId, address(0), _delegate, string(signatures));
                }
                else if (delegates[funcId] != _delegate) {
                    delegates[funcId] = _delegate;
                    emit FunctionUpdate(funcId, oldDelegate, _delegate, string(signatures));

                }
                assembly {signatures := add(signatures,num)}
            }
        }
        emit CommitMessage(_commitMessage);
    }

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

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

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

    ///////////////////////////////////////////////////////////////////////////////////////////////

}

///////////////////////////////////////////////////////////////////////////////////////////////////

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"CommitMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes4","name":"functionId","type":"bytes4"},{"indexed":true,"internalType":"address","name":"oldDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"newDelegate","type":"address"},{"indexed":false,"internalType":"string","name":"functionSignature","type":"string"}],"name":"FunctionUpdate","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_allowAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bundleId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"funcSignatures","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"perPurchaseNFTToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservedNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_delegate","type":"address"},{"internalType":"string","name":"_functionSignatures","type":"string"},{"internalType":"string","name":"_commitMessage","type":"string"}],"name":"updateContract","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200329838038062003298833981016040819052620000349162000a3b565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601a81526020017f58414e413a50454e50454e5a20782043727970746f4e696e6a610000000000008152506040518060400160405280600381526020016228282d60e91b8152508160049081620000ae919062000b12565b506005620000bd828262000b12565b5050506daaeb6d7670e522a718067333cd4e3b15620002055780156200015357604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013457600080fd5b505af115801562000149573d6000803e3d6000fd5b5050505062000205565b6001600160a01b03821615620001a45760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000119565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001eb57600080fd5b505af115801562000200573d6000803e3d6000fd5b505050505b50620002139050336200085e565b600380546001600160a01b0319163017905533600090815260106020908152604091829020805460ff19166001179055815160608101909252603980835290620031c090830139600f9062000269908262000b12565b5061271060128190555060006040518060600160405280602581526020016200321c60259139600354909150620002ab9082906001600160a01b0316620008b0565b6040805180820190915260128152717365744261736555524928737472696e672960701b6020820152620002e08184620008b0565b604051806060016040528060238152602001620031f9602391399050620003088184620008b0565b60405180606001604052806030815260200162003241603091399050620003308184620008b0565b5060408051808201909152601881527f7072654d696e7428616464726573732c75696e743235362900000000000000006020820152620003718184620008b0565b5060408051808201909152601081526f736574536565642875696e743235362960801b6020820152620003a58184620008b0565b5060408051808201909152601081526f636c61696d43727970746f4e4654282960801b6020820152620003d98184620008b0565b5060408051808201909152601f81527f6d696e7428627974657333325b5d2c75696e743235362c75696e74323536290060208201526200041a8184620008b0565b506040805180820190915260128152716275726e41646d696e2875696e743235362960701b6020820152620004508184620008b0565b6040518060600160405280602681526020016200319a602691399050620004788184620008b0565b50604080518082019091526012815271736574417574686f7228616464726573732960701b6020820152620004ae8184620008b0565b5060408051808201909152601581527f7365744d6178537570706c792875696e743235362900000000000000000000006020820152620004ef8184620008b0565b506040805180820190915260128152717365745374617475732875696e743235362960701b6020820152620005258184620008b0565b506040805180820190915260208082527f7365745472616e73666572416c6c6f77656428616464726573732c626f6f6c2990820152620005668184620008b0565b604051806060016040528060278152602001620032716027913990506200058e8184620008b0565b5060408051808201909152601e81527f7365746c6f636b5374617475734e46542875696e743235362c626f6f6c2900006020820152620005cf8184620008b0565b5060408051808201909152601e81527f73657450657242756e646c654e4654546f4d696e742875696e743235362900006020820152620006108184620008b0565b50604080518082019091526011815270746f6b656e5552492875696e743235362960781b6020820152620006458184620008b0565b5060408051808201909152601181527073657450726963652875696e743235362960781b60208201526200067a8184620008b0565b5060408051808201909152601381527f736574526f79616c74792875696e7432353629000000000000000000000000006020820152620006bb8184620008b0565b5060408051808201909152600a8152696765745072696365282960b01b6020820152620006e98184620008b0565b5060408051808201909152600e81526d6765744d6178537570706c79282960901b60208201526200071b8184620008b0565b50604080518082019091526012815271676574417574686f722875696e743235362960701b6020820152620007518184620008b0565b5060408051808201909152601681527f676574526f79616c74794665652875696e7432353629000000000000000000006020820152620007928184620008b0565b5060408051808201909152601381527f67657443726561746f722875696e7432353629000000000000000000000000006020820152620007d38184620008b0565b5060408051808201909152601b81527f6c6f636b4e465442756c6b2875696e743235365b5d2c626f6f6c2900000000006020820152620008148184620008b0565b5060408051808201909152601481527f756e4c6f636b4761732875696e743235365b5d290000000000000000000000006020820152620008558184620008b0565b50505062000c57565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b81516020808401919091206001600160e01b031981166000908152918290526040822080546001600160a01b0319166001600160a01b0385161790556001805480820182559252907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60162000926848262000b12565b506001546040516002906200093d90869062000c04565b908152602001604051809103902081905550816001600160a01b031660006001600160a01b0316826001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f535386604051620009a0919062000c22565b60405180910390a47faa1c0a0a78cec2470f9652e5d29540752e7a64d70f926933cebf13afaeda45de60405162000a2e906020808252603a908201527f4164646564204552433135333820757064617465436f6e74726163742066756e60408201527f6374696f6e20617420636f6e7472616374206372656174696f6e000000000000606082015260800190565b60405180910390a1505050565b60006020828403121562000a4e57600080fd5b81516001600160a01b038116811462000a6657600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a9857607f821691505b60208210810362000ab957634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b0d57600081815260208120601f850160051c8101602086101562000ae85750805b601f850160051c820191505b8181101562000b095782815560010162000af4565b5050505b505050565b81516001600160401b0381111562000b2e5762000b2e62000a6d565b62000b468162000b3f845462000a83565b8462000abf565b602080601f83116001811462000b7e576000841562000b655750858301515b600019600386901b1c1916600185901b17855562000b09565b600085815260208120601f198616915b8281101562000baf5788860151825594840194600190910190840162000b8e565b508582101562000bce5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b8381101562000bfb57818101518382015260200162000be1565b50506000910152565b6000825162000c1881846020870162000bde565b9190910192915050565b602081526000825180602084015262000c4381604085016020870162000bde565b601f01601f19169190910160400192915050565b6125338062000c676000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105b2578063e985e9c5146105d2578063f2fde38b146105f2578063f4e37f1214610612576101b7565b8063a22cb4651461055c578063aa8062ef1461057c578063b88d4fde14610592576101b7565b80638822048e116100c65780638822048e146104c35780638da5cb5b146104f357806395d89b4114610511578063a0a2daf014610526576101b7565b80636c0360eb1461047957806370a082311461048e578063715018a6146104ae576101b7565b806326a6860a11610159578063495d815111610133578063495d8151146103d9578063521b52a41461040957806361455567146104395780636352211e14610459576101b7565b806326a6860a1461037757806341f434341461039757806342842e0e146103b9576101b7565b8063095ea7b311610195578063095ea7b3146102fd5780630994b1ad1461031d578063200d2ed21461034157806323b872dd14610357576101b7565b806301ffc9a71461026e57806306fdde03146102a3578063081812fc146102c5575b6000356001600160e01b0319161580156101d057503415155b156101d757005b600080356001600160e01b0319168152602081905260409020546001600160a01b0316806102475760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b60448201526064015b60405180910390fd5b60405136600082376000803683855af43d806000843e818015610268578184f35b8184fd5b005b34801561027a57600080fd5b5061028e610289366004611bfe565b61063f565b60405190151581526020015b60405180910390f35b3480156102af57600080fd5b506102b8610691565b60405161029a9190611c6b565b3480156102d157600080fd5b506102e56102e0366004611c7e565b610723565b6040516001600160a01b03909116815260200161029a565b34801561030957600080fd5b5061026c610318366004611cb3565b61074a565b34801561032957600080fd5b5061033360185481565b60405190815260200161029a565b34801561034d57600080fd5b5061033360135481565b34801561036357600080fd5b5061026c610372366004611cdd565b61079b565b34801561038357600080fd5b506102b8610392366004611c7e565b610824565b3480156103a357600080fd5b506102e56daaeb6d7670e522a718067333cd4e81565b3480156103c557600080fd5b5061026c6103d4366004611cdd565b6108d0565b3480156103e557600080fd5b5061028e6103f4366004611c7e565b600b6020526000908152604090205460ff1681565b34801561041557600080fd5b5061028e610424366004611d19565b60106020526000908152604090205460ff1681565b34801561044557600080fd5b5061026c610454366004611d7d565b610953565b34801561046557600080fd5b506102e5610474366004611c7e565b610f5e565b34801561048557600080fd5b506102b8610fbe565b34801561049a57600080fd5b506103336104a9366004611d19565b610fcb565b3480156104ba57600080fd5b5061026c611051565b3480156104cf57600080fd5b5061028e6104de366004611d19565b600a6020526000908152604090205460ff1681565b3480156104ff57600080fd5b50600c546001600160a01b03166102e5565b34801561051d57600080fd5b506102b8611087565b34801561053257600080fd5b506102e5610541366004611bfe565b6000602081905290815260409020546001600160a01b031681565b34801561056857600080fd5b5061026c610577366004611e0c565b611096565b34801561058857600080fd5b5061033360175481565b34801561059e57600080fd5b5061026c6105ad366004611e59565b6110e2565b3480156105be57600080fd5b506102b86105cd366004611c7e565b61116d565b3480156105de57600080fd5b5061028e6105ed366004611f35565b611248565b3480156105fe57600080fd5b5061026c61060d366004611d19565b611276565b34801561061e57600080fd5b5061033361062d366004611c7e565b601d6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061067057506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600480546106a090611f68565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc90611f68565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b600061072e82611311565b506000908152600860205260409020546001600160a01b031690565b8161075481611370565b6001600160a01b0383166000908152600a602052604090205460ff1661078c5760405162461bcd60e51b815260040161023e90611fa2565b6107968383611429565b505050565b826001600160a01b03811633146107b5576107b533611370565b336000908152600a602052604090205460ff166107e45760405162461bcd60e51b815260040161023e90611fa2565b6000828152600b602052604090205460ff16156108135760405162461bcd60e51b815260040161023e90611fd9565b61081e848484611539565b50505050565b6001818154811061083457600080fd5b90600052602060002001600091509050805461084f90611f68565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90611f68565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b505050505081565b826001600160a01b03811633146108ea576108ea33611370565b336000908152600a602052604090205460ff166109195760405162461bcd60e51b815260040161023e90611fa2565b6000828152600b602052604090205460ff16156109485760405162461bcd60e51b815260040161023e90611fd9565b61081e84848461156a565b600c546001600160a01b0316331461097d5760405162461bcd60e51b815260040161023e90612008565b60006001600160a01b03861615610a045750843b80610a045760405162461bcd60e51b815260206004820152603960248201527f5f64656c65676174652061646472657373206973206e6f74206120636f6e747260448201527f61637420616e64206973206e6f74206164647265737328302900000000000000606482015260840161023e565b600085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508451602080870198509596508601909401938693509150819050808080805b878a1015610f1457895160001a925082602903610f025789610a7881612053565b9a50610a869050878b61206c565b808a526020808b018290206001600160e01b031981166000908152918290526040909120548c99509097506001600160a01b0390811696509094508f16610ca757600289604051610ad7919061207f565b908152602001604051809103902054915081600003610b335760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b604482015260640161023e565b81610b3d8161209b565b60018054919450610b4f92509061206c565b9050808214610be75760018181548110610b6b57610b6b6120b2565b9060005260206000200160018381548110610b8857610b886120b2565b906000526020600020019081610b9e9190612116565b50610baa8260016121f3565b600260018381548110610bbf57610bbf6120b2565b90600052602060002001604051610bd69190612206565b908152604051908190036020019020555b6001805480610bf857610bf861227c565b600190038181906000526020600020016000610c149190611b9a565b9055600289604051610c26919061207f565b90815260408051602092819003830181206000908190556001600160e01b03198a168082529381905291822080546001600160a01b031916905590916001600160a01b038816917f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f535390610c9a908e90611c6b565b60405180910390a4610efd565b600289604051610cb7919061207f565b908152602001604051809103902054600003610e09576001600160a01b03851615610d145760405162461bcd60e51b815260206004820152600d60248201526c233ab731a4b21031b630b9b41760991b604482015260640161023e565b8e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600189908060018154018082558091505060019003906000526020600020016000909190919091509081610d939190612292565b50600154604051600290610da8908c9061207f565b9081526020016040518091039020819055508e6001600160a01b031660006001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610c9a9190611c6b565b8e6001600160a01b0316600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031614610efd578e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e6001600160a01b0316856001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610ef49190611c6b565b60405180910390a45b978301975b89610f0c81612053565b9a5050610a57565b7faa1c0a0a78cec2470f9652e5d29540752e7a64d70f926933cebf13afaeda45de8c8c604051610f4592919061234a565b60405180910390a1505050505050505050505050505050565b6000818152600660205260408120546001600160a01b03168061068b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161023e565b600f805461084f90611f68565b60006001600160a01b0382166110355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161023e565b506001600160a01b031660009081526007602052604090205490565b600c546001600160a01b0316331461107b5760405162461bcd60e51b815260040161023e90612008565b6110856000611585565b565b6060600580546106a090611f68565b816110a081611370565b6001600160a01b0383166000908152600a602052604090205460ff166110d85760405162461bcd60e51b815260040161023e90611fa2565b61079683836115d7565b836001600160a01b03811633146110fc576110fc33611370565b336000908152600a602052604090205460ff1661112b5760405162461bcd60e51b815260040161023e90611fa2565b6000838152600b602052604090205460ff161561115a5760405162461bcd60e51b815260040161023e90611fd9565b611166858585856115e6565b5050505050565b6000818152600660205260409020546060906001600160a01b03166111ec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161023e565b60006111f6611618565b905060008151116112165760405180602001604052806000815250611241565b8061122084611627565b604051602001611231929190612379565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b031633146112a05760405162461bcd60e51b815260040161023e90612008565b6001600160a01b0381166113055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161023e565b61130e81611585565b50565b6000818152600660205260409020546001600160a01b031661130e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161023e565b6daaeb6d7670e522a718067333cd4e3b1561130e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156113dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140191906123a8565b61130e57604051633b79c77360e21b81526001600160a01b038216600482015260240161023e565b600061143482610f5e565b9050806001600160a01b0316836001600160a01b0316036114a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161023e565b336001600160a01b03821614806114bd57506114bd8133611248565b61152f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161023e565b6107968383611730565b611543338261179e565b61155f5760405162461bcd60e51b815260040161023e906123c5565b6107968383836117fc565b610796838383604051806020016040528060008152506110e2565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115e2338383611998565b5050565b6115f0338361179e565b61160c5760405162461bcd60e51b815260040161023e906123c5565b61081e84848484611a66565b6060600f80546106a090611f68565b60608160000361164e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611678578061166281612053565b91506116719050600a83612429565b9150611652565b60008167ffffffffffffffff81111561169357611693611e43565b6040519080825280601f01601f1916602001820160405280156116bd576020820181803683370190505b5090505b8415611728576116d260018361206c565b91506116df600a8661243d565b6116ea9060306121f3565b60f81b8183815181106116ff576116ff6120b2565b60200101906001600160f81b031916908160001a905350611721600a86612429565b94506116c1565b949350505050565b600081815260086020526040902080546001600160a01b0319166001600160a01b038416908117909155819061176582610f5e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117aa83610f5e565b9050806001600160a01b0316846001600160a01b031614806117d157506117d18185611248565b806117285750836001600160a01b03166117ea84610723565b6001600160a01b031614949350505050565b826001600160a01b031661180f82610f5e565b6001600160a01b0316146118735760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161023e565b6001600160a01b0382166118d55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161023e565b6118e0600082611730565b6001600160a01b038316600090815260076020526040812080546001929061190990849061206c565b90915550506001600160a01b03821660009081526007602052604081208054600192906119379084906121f3565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316036119f95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161023e565b6001600160a01b03838116600081815260096020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a718484846117fc565b611a7d84848484611a99565b61081e5760405162461bcd60e51b815260040161023e90612451565b60006001600160a01b0384163b15611b8f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611add9033908990889088906004016124a3565b6020604051808303816000875af1925050508015611b18575060408051601f3d908101601f19168201909252611b15918101906124e0565b60015b611b75573d808015611b46576040519150601f19603f3d011682016040523d82523d6000602084013e611b4b565b606091505b508051600003611b6d5760405162461bcd60e51b815260040161023e90612451565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611728565b506001949350505050565b508054611ba690611f68565b6000825580601f10611bb6575050565b601f01602090049060005260206000209081019061130e91905b80821115611be45760008155600101611bd0565b5090565b6001600160e01b03198116811461130e57600080fd5b600060208284031215611c1057600080fd5b813561124181611be8565b60005b83811015611c36578181015183820152602001611c1e565b50506000910152565b60008151808452611c57816020860160208601611c1b565b601f01601f19169290920160200192915050565b6020815260006112416020830184611c3f565b600060208284031215611c9057600080fd5b5035919050565b80356001600160a01b0381168114611cae57600080fd5b919050565b60008060408385031215611cc657600080fd5b611ccf83611c97565b946020939093013593505050565b600080600060608486031215611cf257600080fd5b611cfb84611c97565b9250611d0960208501611c97565b9150604084013590509250925092565b600060208284031215611d2b57600080fd5b61124182611c97565b60008083601f840112611d4657600080fd5b50813567ffffffffffffffff811115611d5e57600080fd5b602083019150836020828501011115611d7657600080fd5b9250929050565b600080600080600060608688031215611d9557600080fd5b611d9e86611c97565b9450602086013567ffffffffffffffff80821115611dbb57600080fd5b611dc789838a01611d34565b90965094506040880135915080821115611de057600080fd5b50611ded88828901611d34565b969995985093965092949392505050565b801515811461130e57600080fd5b60008060408385031215611e1f57600080fd5b611e2883611c97565b91506020830135611e3881611dfe565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611e6f57600080fd5b611e7885611c97565b9350611e8660208601611c97565b925060408501359150606085013567ffffffffffffffff80821115611eaa57600080fd5b818701915087601f830112611ebe57600080fd5b813581811115611ed057611ed0611e43565b604051601f8201601f19908116603f01168101908382118183101715611ef857611ef8611e43565b816040528281528a6020848701011115611f1157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f4857600080fd5b611f5183611c97565b9150611f5f60208401611c97565b90509250929050565b600181811c90821680611f7c57607f821691505b602082108103611f9c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f4552433732313a207472616e73666572206e6f7420616c6c6f77656400000000604082015260600190565b602080825260159082015274115490cdcc8c4e88139195081a5cc81b1bd8dad959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016120655761206561203d565b5060010190565b8181038181111561068b5761068b61203d565b60008251612091818460208701611c1b565b9190910192915050565b6000816120aa576120aa61203d565b506000190190565b634e487b7160e01b600052603260045260246000fd5b601f82111561079657600081815260208120601f850160051c810160208610156120ef5750805b601f850160051c820191505b8181101561210e578281556001016120fb565b505050505050565b818103612121575050565b61212b8254611f68565b67ffffffffffffffff81111561214357612143611e43565b612157816121518454611f68565b846120c8565b6000601f82116001811461218b57600083156121735750848201545b600019600385901b1c1916600184901b178455611166565b600085815260209020601f19841690600086815260209020845b838110156121c557828601548255600195860195909101906020016121a5565b50858310156121e35781850154600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561068b5761068b61203d565b600080835461221481611f68565b6001828116801561222c576001811461224157612270565b60ff1984168752821515830287019450612270565b8760005260208060002060005b858110156122675781548a82015290840190820161224e565b50505082870194505b50929695505050505050565b634e487b7160e01b600052603160045260246000fd5b815167ffffffffffffffff8111156122ac576122ac611e43565b6122ba816121518454611f68565b602080601f8311600181146122ef57600084156122d75750858301515b600019600386901b1c1916600185901b17855561210e565b600085815260208120601f198616915b8281101561231e578886015182559484019460019091019084016122ff565b50858210156121e357939096015160001960f8600387901b161c19169092555050600190811b01905550565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6000835161238b818460208801611c1b565b83519083019061239f818360208801611c1b565b01949350505050565b6000602082840312156123ba57600080fd5b815161124181611dfe565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261243857612438612413565b500490565b60008261244c5761244c612413565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d690830184611c3f565b9695505050505050565b6000602082840312156124f257600080fd5b815161124181611be856fea2646970667358221220677760740648f0856d1a27358a4fe84a56f20f5f82c3e58dfd7e375c30d856c364736f6c6343000811003373657457686974656c697374526f6f7428627974657333322c75696e743235362c626f6f6c2968747470733a2f2f746573746170692e78616e616c69612e636f6d2f78616e616c69612f6765742d6e66742d6d6574613f746f6b656e49643d67657455736572426f75676874436f756e7428616464726573732c75696e7432353629757064617465436f6e747261637428616464726573732c737472696e672c737472696e6729697357686974656c697374656428616464726573732c627974657333325b5d2c75696e743235362c75696e743235362973657453616c6544657461696c732875696e743235362c75696e743235362c75696e74323536290000000000000000000000004037ed5862ae2edb416052a3747e2e5e23d236e5

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105b2578063e985e9c5146105d2578063f2fde38b146105f2578063f4e37f1214610612576101b7565b8063a22cb4651461055c578063aa8062ef1461057c578063b88d4fde14610592576101b7565b80638822048e116100c65780638822048e146104c35780638da5cb5b146104f357806395d89b4114610511578063a0a2daf014610526576101b7565b80636c0360eb1461047957806370a082311461048e578063715018a6146104ae576101b7565b806326a6860a11610159578063495d815111610133578063495d8151146103d9578063521b52a41461040957806361455567146104395780636352211e14610459576101b7565b806326a6860a1461037757806341f434341461039757806342842e0e146103b9576101b7565b8063095ea7b311610195578063095ea7b3146102fd5780630994b1ad1461031d578063200d2ed21461034157806323b872dd14610357576101b7565b806301ffc9a71461026e57806306fdde03146102a3578063081812fc146102c5575b6000356001600160e01b0319161580156101d057503415155b156101d757005b600080356001600160e01b0319168152602081905260409020546001600160a01b0316806102475760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b60448201526064015b60405180910390fd5b60405136600082376000803683855af43d806000843e818015610268578184f35b8184fd5b005b34801561027a57600080fd5b5061028e610289366004611bfe565b61063f565b60405190151581526020015b60405180910390f35b3480156102af57600080fd5b506102b8610691565b60405161029a9190611c6b565b3480156102d157600080fd5b506102e56102e0366004611c7e565b610723565b6040516001600160a01b03909116815260200161029a565b34801561030957600080fd5b5061026c610318366004611cb3565b61074a565b34801561032957600080fd5b5061033360185481565b60405190815260200161029a565b34801561034d57600080fd5b5061033360135481565b34801561036357600080fd5b5061026c610372366004611cdd565b61079b565b34801561038357600080fd5b506102b8610392366004611c7e565b610824565b3480156103a357600080fd5b506102e56daaeb6d7670e522a718067333cd4e81565b3480156103c557600080fd5b5061026c6103d4366004611cdd565b6108d0565b3480156103e557600080fd5b5061028e6103f4366004611c7e565b600b6020526000908152604090205460ff1681565b34801561041557600080fd5b5061028e610424366004611d19565b60106020526000908152604090205460ff1681565b34801561044557600080fd5b5061026c610454366004611d7d565b610953565b34801561046557600080fd5b506102e5610474366004611c7e565b610f5e565b34801561048557600080fd5b506102b8610fbe565b34801561049a57600080fd5b506103336104a9366004611d19565b610fcb565b3480156104ba57600080fd5b5061026c611051565b3480156104cf57600080fd5b5061028e6104de366004611d19565b600a6020526000908152604090205460ff1681565b3480156104ff57600080fd5b50600c546001600160a01b03166102e5565b34801561051d57600080fd5b506102b8611087565b34801561053257600080fd5b506102e5610541366004611bfe565b6000602081905290815260409020546001600160a01b031681565b34801561056857600080fd5b5061026c610577366004611e0c565b611096565b34801561058857600080fd5b5061033360175481565b34801561059e57600080fd5b5061026c6105ad366004611e59565b6110e2565b3480156105be57600080fd5b506102b86105cd366004611c7e565b61116d565b3480156105de57600080fd5b5061028e6105ed366004611f35565b611248565b3480156105fe57600080fd5b5061026c61060d366004611d19565b611276565b34801561061e57600080fd5b5061033361062d366004611c7e565b601d6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061067057506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600480546106a090611f68565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc90611f68565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b600061072e82611311565b506000908152600860205260409020546001600160a01b031690565b8161075481611370565b6001600160a01b0383166000908152600a602052604090205460ff1661078c5760405162461bcd60e51b815260040161023e90611fa2565b6107968383611429565b505050565b826001600160a01b03811633146107b5576107b533611370565b336000908152600a602052604090205460ff166107e45760405162461bcd60e51b815260040161023e90611fa2565b6000828152600b602052604090205460ff16156108135760405162461bcd60e51b815260040161023e90611fd9565b61081e848484611539565b50505050565b6001818154811061083457600080fd5b90600052602060002001600091509050805461084f90611f68565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90611f68565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b505050505081565b826001600160a01b03811633146108ea576108ea33611370565b336000908152600a602052604090205460ff166109195760405162461bcd60e51b815260040161023e90611fa2565b6000828152600b602052604090205460ff16156109485760405162461bcd60e51b815260040161023e90611fd9565b61081e84848461156a565b600c546001600160a01b0316331461097d5760405162461bcd60e51b815260040161023e90612008565b60006001600160a01b03861615610a045750843b80610a045760405162461bcd60e51b815260206004820152603960248201527f5f64656c65676174652061646472657373206973206e6f74206120636f6e747260448201527f61637420616e64206973206e6f74206164647265737328302900000000000000606482015260840161023e565b600085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508451602080870198509596508601909401938693509150819050808080805b878a1015610f1457895160001a925082602903610f025789610a7881612053565b9a50610a869050878b61206c565b808a526020808b018290206001600160e01b031981166000908152918290526040909120548c99509097506001600160a01b0390811696509094508f16610ca757600289604051610ad7919061207f565b908152602001604051809103902054915081600003610b335760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b604482015260640161023e565b81610b3d8161209b565b60018054919450610b4f92509061206c565b9050808214610be75760018181548110610b6b57610b6b6120b2565b9060005260206000200160018381548110610b8857610b886120b2565b906000526020600020019081610b9e9190612116565b50610baa8260016121f3565b600260018381548110610bbf57610bbf6120b2565b90600052602060002001604051610bd69190612206565b908152604051908190036020019020555b6001805480610bf857610bf861227c565b600190038181906000526020600020016000610c149190611b9a565b9055600289604051610c26919061207f565b90815260408051602092819003830181206000908190556001600160e01b03198a168082529381905291822080546001600160a01b031916905590916001600160a01b038816917f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f535390610c9a908e90611c6b565b60405180910390a4610efd565b600289604051610cb7919061207f565b908152602001604051809103902054600003610e09576001600160a01b03851615610d145760405162461bcd60e51b815260206004820152600d60248201526c233ab731a4b21031b630b9b41760991b604482015260640161023e565b8e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600189908060018154018082558091505060019003906000526020600020016000909190919091509081610d939190612292565b50600154604051600290610da8908c9061207f565b9081526020016040518091039020819055508e6001600160a01b031660006001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610c9a9190611c6b565b8e6001600160a01b0316600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031614610efd578e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e6001600160a01b0316856001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610ef49190611c6b565b60405180910390a45b978301975b89610f0c81612053565b9a5050610a57565b7faa1c0a0a78cec2470f9652e5d29540752e7a64d70f926933cebf13afaeda45de8c8c604051610f4592919061234a565b60405180910390a1505050505050505050505050505050565b6000818152600660205260408120546001600160a01b03168061068b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161023e565b600f805461084f90611f68565b60006001600160a01b0382166110355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161023e565b506001600160a01b031660009081526007602052604090205490565b600c546001600160a01b0316331461107b5760405162461bcd60e51b815260040161023e90612008565b6110856000611585565b565b6060600580546106a090611f68565b816110a081611370565b6001600160a01b0383166000908152600a602052604090205460ff166110d85760405162461bcd60e51b815260040161023e90611fa2565b61079683836115d7565b836001600160a01b03811633146110fc576110fc33611370565b336000908152600a602052604090205460ff1661112b5760405162461bcd60e51b815260040161023e90611fa2565b6000838152600b602052604090205460ff161561115a5760405162461bcd60e51b815260040161023e90611fd9565b611166858585856115e6565b5050505050565b6000818152600660205260409020546060906001600160a01b03166111ec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161023e565b60006111f6611618565b905060008151116112165760405180602001604052806000815250611241565b8061122084611627565b604051602001611231929190612379565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b031633146112a05760405162461bcd60e51b815260040161023e90612008565b6001600160a01b0381166113055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161023e565b61130e81611585565b50565b6000818152600660205260409020546001600160a01b031661130e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161023e565b6daaeb6d7670e522a718067333cd4e3b1561130e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156113dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140191906123a8565b61130e57604051633b79c77360e21b81526001600160a01b038216600482015260240161023e565b600061143482610f5e565b9050806001600160a01b0316836001600160a01b0316036114a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161023e565b336001600160a01b03821614806114bd57506114bd8133611248565b61152f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161023e565b6107968383611730565b611543338261179e565b61155f5760405162461bcd60e51b815260040161023e906123c5565b6107968383836117fc565b610796838383604051806020016040528060008152506110e2565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115e2338383611998565b5050565b6115f0338361179e565b61160c5760405162461bcd60e51b815260040161023e906123c5565b61081e84848484611a66565b6060600f80546106a090611f68565b60608160000361164e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611678578061166281612053565b91506116719050600a83612429565b9150611652565b60008167ffffffffffffffff81111561169357611693611e43565b6040519080825280601f01601f1916602001820160405280156116bd576020820181803683370190505b5090505b8415611728576116d260018361206c565b91506116df600a8661243d565b6116ea9060306121f3565b60f81b8183815181106116ff576116ff6120b2565b60200101906001600160f81b031916908160001a905350611721600a86612429565b94506116c1565b949350505050565b600081815260086020526040902080546001600160a01b0319166001600160a01b038416908117909155819061176582610f5e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117aa83610f5e565b9050806001600160a01b0316846001600160a01b031614806117d157506117d18185611248565b806117285750836001600160a01b03166117ea84610723565b6001600160a01b031614949350505050565b826001600160a01b031661180f82610f5e565b6001600160a01b0316146118735760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161023e565b6001600160a01b0382166118d55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161023e565b6118e0600082611730565b6001600160a01b038316600090815260076020526040812080546001929061190990849061206c565b90915550506001600160a01b03821660009081526007602052604081208054600192906119379084906121f3565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316036119f95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161023e565b6001600160a01b03838116600081815260096020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a718484846117fc565b611a7d84848484611a99565b61081e5760405162461bcd60e51b815260040161023e90612451565b60006001600160a01b0384163b15611b8f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611add9033908990889088906004016124a3565b6020604051808303816000875af1925050508015611b18575060408051601f3d908101601f19168201909252611b15918101906124e0565b60015b611b75573d808015611b46576040519150601f19603f3d011682016040523d82523d6000602084013e611b4b565b606091505b508051600003611b6d5760405162461bcd60e51b815260040161023e90612451565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611728565b506001949350505050565b508054611ba690611f68565b6000825580601f10611bb6575050565b601f01602090049060005260206000209081019061130e91905b80821115611be45760008155600101611bd0565b5090565b6001600160e01b03198116811461130e57600080fd5b600060208284031215611c1057600080fd5b813561124181611be8565b60005b83811015611c36578181015183820152602001611c1e565b50506000910152565b60008151808452611c57816020860160208601611c1b565b601f01601f19169290920160200192915050565b6020815260006112416020830184611c3f565b600060208284031215611c9057600080fd5b5035919050565b80356001600160a01b0381168114611cae57600080fd5b919050565b60008060408385031215611cc657600080fd5b611ccf83611c97565b946020939093013593505050565b600080600060608486031215611cf257600080fd5b611cfb84611c97565b9250611d0960208501611c97565b9150604084013590509250925092565b600060208284031215611d2b57600080fd5b61124182611c97565b60008083601f840112611d4657600080fd5b50813567ffffffffffffffff811115611d5e57600080fd5b602083019150836020828501011115611d7657600080fd5b9250929050565b600080600080600060608688031215611d9557600080fd5b611d9e86611c97565b9450602086013567ffffffffffffffff80821115611dbb57600080fd5b611dc789838a01611d34565b90965094506040880135915080821115611de057600080fd5b50611ded88828901611d34565b969995985093965092949392505050565b801515811461130e57600080fd5b60008060408385031215611e1f57600080fd5b611e2883611c97565b91506020830135611e3881611dfe565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611e6f57600080fd5b611e7885611c97565b9350611e8660208601611c97565b925060408501359150606085013567ffffffffffffffff80821115611eaa57600080fd5b818701915087601f830112611ebe57600080fd5b813581811115611ed057611ed0611e43565b604051601f8201601f19908116603f01168101908382118183101715611ef857611ef8611e43565b816040528281528a6020848701011115611f1157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f4857600080fd5b611f5183611c97565b9150611f5f60208401611c97565b90509250929050565b600181811c90821680611f7c57607f821691505b602082108103611f9c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f4552433732313a207472616e73666572206e6f7420616c6c6f77656400000000604082015260600190565b602080825260159082015274115490cdcc8c4e88139195081a5cc81b1bd8dad959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016120655761206561203d565b5060010190565b8181038181111561068b5761068b61203d565b60008251612091818460208701611c1b565b9190910192915050565b6000816120aa576120aa61203d565b506000190190565b634e487b7160e01b600052603260045260246000fd5b601f82111561079657600081815260208120601f850160051c810160208610156120ef5750805b601f850160051c820191505b8181101561210e578281556001016120fb565b505050505050565b818103612121575050565b61212b8254611f68565b67ffffffffffffffff81111561214357612143611e43565b612157816121518454611f68565b846120c8565b6000601f82116001811461218b57600083156121735750848201545b600019600385901b1c1916600184901b178455611166565b600085815260209020601f19841690600086815260209020845b838110156121c557828601548255600195860195909101906020016121a5565b50858310156121e35781850154600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561068b5761068b61203d565b600080835461221481611f68565b6001828116801561222c576001811461224157612270565b60ff1984168752821515830287019450612270565b8760005260208060002060005b858110156122675781548a82015290840190820161224e565b50505082870194505b50929695505050505050565b634e487b7160e01b600052603160045260246000fd5b815167ffffffffffffffff8111156122ac576122ac611e43565b6122ba816121518454611f68565b602080601f8311600181146122ef57600084156122d75750858301515b600019600386901b1c1916600185901b17855561210e565b600085815260208120601f198616915b8281101561231e578886015182559484019460019091019084016122ff565b50858210156121e357939096015160001960f8600387901b161c19169092555050600190811b01905550565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6000835161238b818460208801611c1b565b83519083019061239f818360208801611c1b565b01949350505050565b6000602082840312156123ba57600080fd5b815161124181611dfe565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261243857612438612413565b500490565b60008261244c5761244c612413565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d690830184611c3f565b9695505050505050565b6000602082840312156124f257600080fd5b815161124181611be856fea2646970667358221220677760740648f0856d1a27358a4fe84a56f20f5f82c3e58dfd7e375c30d856c364736f6c63430008110033

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

0000000000000000000000004037ed5862ae2edb416052a3747e2e5e23d236e5

-----Decoded View---------------
Arg [0] : implementation (address): 0x4037ED5862Ae2eDB416052a3747E2e5E23d236E5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004037ed5862ae2edb416052a3747e2e5e23d236e5


Deployed Bytecode Sourcemap

55441:10311:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59917:1;59899:7;-1:-1:-1;;;;;;59899:7:0;:20;:44;;;;-1:-1:-1;59923:9:0;:20;;59899:44;59895:127;;;55441:10311;59895:127;60032:16;60061:7;;-1:-1:-1;;;;;;60061:7:0;60051:18;;;;;;;;;;-1:-1:-1;;;;;60051:18:0;;60080:59;;;;-1:-1:-1;;;60080:59:0;;216:2:1;60080:59:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:54;338:18;;60080:59:0;;;;;;;;;60191:4;60185:11;60231:14;60228:1;60223:3;60210:36;60328:1;60325;60309:14;60304:3;60294:8;60287:5;60274:56;60356:16;60409:4;60406:1;60401:3;60386:28;60435:6;60455:26;;;;60517:4;60512:3;60504:18;60455:26;60475:4;60470:3;60463:17;60428:95;;25394:305;;;;;;;;;;-1:-1:-1;25394:305:0;;;;;:::i;:::-;;:::i;:::-;;;918:14:1;;911:22;893:41;;881:2;866:18;25394:305:0;;;;;;;;26321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27834:171::-;;;;;;;;;;-1:-1:-1;27834:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;27834:171:0;1886:203:1;50417:237:0;;;;;;;;;;-1:-1:-1;50417:237:0;;;;;:::i;:::-;;:::i;52163:35::-;;;;;;;;;;;;;;;;;;;2677:25:1;;;2665:2;2650:18;52163:35:0;2531:177:1;52019:21:0;;;;;;;;;;;;;;;;50708:305;;;;;;;;;;-1:-1:-1;50708:305:0;;;;;:::i;:::-;;:::i;2930:29::-;;;;;;;;;;-1:-1:-1;2930:29:0;;;;;:::i;:::-;;:::i;46298:143::-;;;;;;;;;;;;45107:42;46298:143;;51021:314;;;;;;;;;;-1:-1:-1;51021:314:0;;;;;:::i;:::-;;:::i;49832:39::-;;;;;;;;;;-1:-1:-1;49832:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51878:45;;;;;;;;;;-1:-1:-1;51878:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;61329:3799;;;;;;;;;;-1:-1:-1;61329:3799:0;;;;;:::i;:::-;;:::i;26032:222::-;;;;;;;;;;-1:-1:-1;26032:222:0;;;;;:::i;:::-;;:::i;51854:21::-;;;;;;;;;;;;;:::i;25763:207::-;;;;;;;;;;-1:-1:-1;25763:207:0;;;;;:::i;:::-;;:::i;54203:94::-;;;;;;;;;;;;;:::i;49776:49::-;;;;;;;;;;-1:-1:-1;49776:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53552:87;;;;;;;;;;-1:-1:-1;53625:6:0;;-1:-1:-1;;;;;53625:6:0;53552:87;;26490:104;;;;;;;;;;;;;:::i;2814:43::-;;;;;;;;;;-1:-1:-1;2814:43:0;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;2814:43:0;;;50154:255;;;;;;;;;;-1:-1:-1;50154:255:0;;;;;:::i;:::-;;:::i;52136:23::-;;;;;;;;;;;;;;;;51343:338;;;;;;;;;;-1:-1:-1;51343:338:0;;;;;:::i;:::-;;:::i;65310:334::-;;;;;;;;;;-1:-1:-1;65310:334:0;;;;;:::i;:::-;;:::i;28303:164::-;;;;;;;;;;-1:-1:-1;28303:164:0;;;;;:::i;:::-;;:::i;54452:192::-;;;;;;;;;;-1:-1:-1;54452:192:0;;;;;:::i;:::-;;:::i;52507:46::-;;;;;;;;;;-1:-1:-1;52507:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;25394:305;25496:4;-1:-1:-1;;;;;;25533:40:0;;-1:-1:-1;;;25533:40:0;;:105;;-1:-1:-1;;;;;;;25590:48:0;;-1:-1:-1;;;25590:48:0;25533:105;:158;;;-1:-1:-1;;;;;;;;;;23934:40:0;;;25655:36;25513:178;25394:305;-1:-1:-1;;25394:305:0:o;26321:100::-;26375:13;26408:5;26401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26321:100;:::o;27834:171::-;27910:7;27930:23;27945:7;27930:14;:23::i;:::-;-1:-1:-1;27973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27973:24:0;;27834:171::o;50417:237::-;50514:8;48080:30;48101:8;48080:20;:30::i;:::-;-1:-1:-1;;;;;50544:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;50536:67;;;;-1:-1:-1::0;;;50536:67:0::1;;;;;;;:::i;:::-;50614:32;50628:8;50638:7;50614:13;:32::i;:::-;50417:237:::0;;;:::o;50708:305::-;50809:4;-1:-1:-1;;;;;47806:18:0;;47814:10;47806:18;47802:83;;47841:32;47862:10;47841:20;:32::i;:::-;50853:10:::1;50835:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;50827:69;;;;-1:-1:-1::0;;;50827:69:0::1;;;;;;;:::i;:::-;50916:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;50915:17;50907:50;;;;-1:-1:-1::0;;;50907:50:0::1;;;;;;;:::i;:::-;50968:37;50987:4;50993:2;50997:7;50968:18;:37::i;:::-;50708:305:::0;;;;:::o;2930:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51021:314::-;51126:4;-1:-1:-1;;;;;47806:18:0;;47814:10;47806:18;47802:83;;47841:32;47862:10;47841:20;:32::i;:::-;51171:10:::1;51153:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;51145:69;;;;-1:-1:-1::0;;;51145:69:0::1;;;;;;;:::i;:::-;51234:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;51233:17;51225:50;;;;-1:-1:-1::0;;;51225:50:0::1;;;;;;;:::i;:::-;51286:41;51309:4;51315:2;51319:7;51286:22;:41::i;61329:3799::-:0;53625:6;;-1:-1:-1;;;;;53625:6:0;20331:10;53772:23;53764:68;;;;-1:-1:-1;;;53764:68:0;;;;;;;:::i;:::-;61713:11:::1;-1:-1:-1::0;;;;;61738:23:0;::::1;::::0;61735:218:::1;;-1:-1:-1::0;61813:22:0;::::1;61872:7:::0;61864:77:::1;;;::::0;-1:-1:-1;;;61864:77:0;;8491:2:1;61864:77:0::1;::::0;::::1;8473:21:1::0;8530:2;8510:18;;;8503:30;8569:34;8549:18;;;8542:62;8640:27;8620:18;;;8613:55;8685:19;;61864:77:0::1;8289:421:1::0;61864:77:0::1;62024:23;62056:19;;62024:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;-1:-1:-1;62419:17:0;;62351:2:::1;62336:18:::0;;::::1;::::0;-1:-1:-1;62024:52:0;;-1:-1:-1;62411:26:0;;;;;;62336:18;;-1:-1:-1;62024:52:0;-1:-1:-1;62024:52:0;;-1:-1:-1;62024:52:0;;;;63119:1957:::1;63132:13;63126:3;:19;63119:1957;;;63200:3;63194:10;63192:1;63187:18;63179:26;;63250:4;63258;63250:12:::0;63246:1819:::1;;63283:5:::0;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;63314:11:0::1;::::0;-1:-1:-1;63320:5:0;63283;63314:11:::1;:::i;:::-;63407:22:::0;;;63482:21:::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;;63537:17:0;::::1;:9;:17:::0;;;;;;;;;;;;63353:3;;-1:-1:-1;63482:21:0;;-1:-1:-1;;;;;;63537:17:0;;::::1;::::0;-1:-1:-1;63307:19:0;;-1:-1:-1;63576:23:0;::::1;63573:1415;;63632:20;63653:10;63632:32;;;;;;:::i;:::-;;;;;;;;;;;;;;63624:40;;63695:5;63704:1;63695:10:::0;63687:47:::1;;;::::0;-1:-1:-1;;;63687:47:0;;216:2:1;63687:47:0::1;::::0;::::1;198:21:1::0;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:54;338:18;;63687:47:0::1;14:348:1::0;63687:47:0::1;63757:7:::0;::::1;::::0;::::1;:::i;:::-;63823:1;63799:21:::0;;63757:7;;-1:-1:-1;63799:25:0::1;::::0;-1:-1:-1;63823:1:0;63799:25:::1;:::i;:::-;63787:37;;63860:9;63851:5;:18;63847:210;;63922:14;63937:9;63922:25;;;;;;;;:::i;:::-;;;;;;;;63898:14;63913:5;63898:21;;;;;;;;:::i;:::-;;;;;;;;:49;;;;;;:::i;:::-;-1:-1:-1::0;64024:9:0::1;:5:::0;64032:1:::1;64024:9;:::i;:::-;63974:20;63995:14;64010:9;63995:25;;;;;;;;:::i;:::-;;;;;;;;63974:47;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:59;63847:210:::1;64079:14;:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;64129;64150:10;64129:32;;;;;;:::i;:::-;::::0;;;::::1;::::0;;::::1;::::0;;;;;;;;64122:39:::1;::::0;;;;-1:-1:-1;;;;;;64191:17:0;::::1;::::0;;;;;;;;;;64184:24;;-1:-1:-1;;;;;;64184:24:0::1;::::0;;64122:39;;-1:-1:-1;;;;;64236:67:0;::::1;::::0;::::1;::::0;::::1;::::0;64291:10;;64236:67:::1;:::i;:::-;;;;;;;;63573:1415;;;64350:20;64371:10;64350:32;;;;;;:::i;:::-;;;;;;;;;;;;;;64386:1;64350:37:::0;64346:642:::1;;-1:-1:-1::0;;;;;64420:25:0;::::1;::::0;64412:51:::1;;;::::0;-1:-1:-1;;;64412:51:0;;13274:2:1;64412:51:0::1;::::0;::::1;13256:21:1::0;13313:2;13293:18;;;13286:30;-1:-1:-1;;;13332:18:1;;;13325:43;13385:18;;64412:51:0::1;13072:337:1::0;64412:51:0::1;64506:9;64486;:17:::0;64496:6:::1;-1:-1:-1::0;;;;;64486:17:0::1;;-1:-1:-1::0;;;;;64486:17:0::1;;;;;;;;;;;;;;:29;;;;;-1:-1:-1::0;;;;;64486:29:0::1;;;;;-1:-1:-1::0;;;;;64486:29:0::1;;;;;;64538:14;64558:10;64538:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64627:14:0::1;:21:::0;64592:32:::1;::::0;:20:::1;::::0;:32:::1;::::0;64613:10;;64592:32:::1;:::i;:::-;;;;;;;;;;;;;:56;;;;64711:9;-1:-1:-1::0;;;;;64676:65:0::1;64707:1;-1:-1:-1::0;;;;;64676:65:0::1;64691:6;-1:-1:-1::0;;;;;64676:65:0::1;;;64729:10;64676:65;;;;;;:::i;64346:642::-;64809:9;-1:-1:-1::0;;;;;64788:30:0::1;:9;:17:::0;64798:6:::1;-1:-1:-1::0;;;;;64788:17:0::1;;-1:-1:-1::0;;;;;64788:17:0::1;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;64788:17:0::1;-1:-1:-1::0;;;;;64788:30:0::1;;64784:204;;64863:9;64843;:17:::0;64853:6:::1;-1:-1:-1::0;;;;;64843:17:0::1;;-1:-1:-1::0;;;;;64843:17:0::1;;;;;;;;;;;;;;:29;;;;;-1:-1:-1::0;;;;;64843:29:0::1;;;;;-1:-1:-1::0;;;;;64843:29:0::1;;;;;;64936:9;-1:-1:-1::0;;;;;64900:66:0::1;64923:11;-1:-1:-1::0;;;;;64900:66:0::1;64915:6;-1:-1:-1::0;;;;;64900:66:0::1;;;64954:10;64900:66;;;;;;:::i;:::-;;;;;;;;64784:204;65030:19:::0;;::::1;::::0;63246:1819:::1;63147:5:::0;::::1;::::0;::::1;:::i;:::-;;;;63119:1957;;;65091:29;65105:14;;65091:29;;;;;;;:::i;:::-;;;;;;;;61469:3659;;;;;;;;;;61329:3799:::0;;;;;:::o;26032:222::-;26104:7;26140:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26140:16:0;;26167:56;;;;-1:-1:-1;;;26167:56:0;;15364:2:1;26167:56:0;;;15346:21:1;15403:2;15383:18;;;15376:30;-1:-1:-1;;;15422:18:1;;;15415:54;15486:18;;26167:56:0;15162:348:1;51854:21:0;;;;;;;:::i;25763:207::-;25835:7;-1:-1:-1;;;;;25863:19:0;;25855:73;;;;-1:-1:-1;;;25855:73:0;;15717:2:1;25855:73:0;;;15699:21:1;15756:2;15736:18;;;15729:30;15795:34;15775:18;;;15768:62;-1:-1:-1;;;15846:18:1;;;15839:39;15895:19;;25855:73:0;15515:405:1;25855:73:0;-1:-1:-1;;;;;;25946:16:0;;;;;:9;:16;;;;;;;25763:207::o;54203:94::-;53625:6;;-1:-1:-1;;;;;53625:6:0;20331:10;53772:23;53764:68;;;;-1:-1:-1;;;53764:68:0;;;;;;;:::i;:::-;54268:21:::1;54286:1;54268:9;:21::i;:::-;54203:94::o:0;26490:104::-;26546:13;26579:7;26572:14;;;;;:::i;50154:255::-;50258:8;48080:30;48101:8;48080:20;:30::i;:::-;-1:-1:-1;;;;;50288:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;50280:67;;;;-1:-1:-1::0;;;50280:67:0::1;;;;;;;:::i;:::-;50358:43;50382:8;50392;50358:23;:43::i;51343:338::-:0;51467:4;-1:-1:-1;;;;;47806:18:0;;47814:10;47806:18;47802:83;;47841:32;47862:10;47841:20;:32::i;:::-;51511:10:::1;51493:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;51485:69;;;;-1:-1:-1::0;;;51485:69:0::1;;;;;;;:::i;:::-;51574:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;51573:17;51565:50;;;;-1:-1:-1::0;;;51565:50:0::1;;;;;;;:::i;:::-;51626:47;51649:4;51655:2;51659:7;51668:4;51626:22;:47::i;:::-;51343:338:::0;;;;;:::o;65310:334::-;31092:4;31116:16;;;:7;:16;;;;;;65383:13;;-1:-1:-1;;;;;31116:16:0;65409:76;;;;-1:-1:-1;;;65409:76:0;;16127:2:1;65409:76:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:34;16185:18;;;16178:62;-1:-1:-1;;;16256:18:1;;;16249:45;16311:19;;65409:76:0;15925:411:1;65409:76:0;65498:21;65522:10;:8;:10::i;:::-;65498:34;;65574:1;65556:7;65550:21;:25;:86;;;;;;;;;;;;;;;;;65602:7;65611:18;:7;:16;:18::i;:::-;65585:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65550:86;65543:93;65310:334;-1:-1:-1;;;65310:334:0:o;28303:164::-;-1:-1:-1;;;;;28424:25:0;;;28400:4;28424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28303:164::o;54452:192::-;53625:6;;-1:-1:-1;;;;;53625:6:0;20331:10;53772:23;53764:68;;;;-1:-1:-1;;;53764:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54541:22:0;::::1;54533:73;;;::::0;-1:-1:-1;;;54533:73:0;;17044:2:1;54533:73:0::1;::::0;::::1;17026:21:1::0;17083:2;17063:18;;;17056:30;17122:34;17102:18;;;17095:62;-1:-1:-1;;;17173:18:1;;;17166:36;17219:19;;54533:73:0::1;16842:402:1::0;54533:73:0::1;54617:19;54627:8;54617:9;:19::i;:::-;54452:192:::0;:::o;35809:135::-;31092:4;31116:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31116:16:0;35883:53;;;;-1:-1:-1;;;35883:53:0;;15364:2:1;35883:53:0;;;15346:21:1;15403:2;15383:18;;;15376:30;-1:-1:-1;;;15422:18:1;;;15415:54;15486:18;;35883:53:0;15162:348:1;48223:647:0;45107:42;48414:45;:49;48410:453;;48713:67;;-1:-1:-1;;;48713:67:0;;48764:4;48713:67;;;17461:34:1;-1:-1:-1;;;;;17531:15:1;;17511:18;;;17504:43;45107:42:0;;48713;;17396:18:1;;48713:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48708:144;;48808:28;;-1:-1:-1;;;48808:28:0;;-1:-1:-1;;;;;2050:32:1;;48808:28:0;;;2032:51:1;2005:18;;48808:28:0;1886:203:1;27351:417:0;27432:13;27448:23;27463:7;27448:14;:23::i;:::-;27432:39;;27496:5;-1:-1:-1;;;;;27490:11:0;:2;-1:-1:-1;;;;;27490:11:0;;27482:57;;;;-1:-1:-1;;;27482:57:0;;18010:2:1;27482:57:0;;;17992:21:1;18049:2;18029:18;;;18022:30;18088:34;18068:18;;;18061:62;-1:-1:-1;;;18139:18:1;;;18132:31;18180:19;;27482:57:0;17808:397:1;27482:57:0;20331:10;-1:-1:-1;;;;;27574:21:0;;;;:62;;-1:-1:-1;27599:37:0;27616:5;20331:10;28303:164;:::i;27599:37::-;27552:174;;;;-1:-1:-1;;;27552:174:0;;18412:2:1;27552:174:0;;;18394:21:1;18451:2;18431:18;;;18424:30;18490:34;18470:18;;;18463:62;18561:32;18541:18;;;18534:60;18611:19;;27552:174:0;18210:426:1;27552:174:0;27739:21;27748:2;27752:7;27739:8;:21::i;28534:336::-;28729:41;20331:10;28762:7;28729:18;:41::i;:::-;28721:100;;;;-1:-1:-1;;;28721:100:0;;;;;;;:::i;:::-;28834:28;28844:4;28850:2;28854:7;28834:9;:28::i;28941:185::-;29079:39;29096:4;29102:2;29106:7;29079:39;;;;;;;;;;;;:16;:39::i;54652:174::-;54728:6;;;-1:-1:-1;;;;;54745:17:0;;;-1:-1:-1;;;;;;54745:17:0;;;;;;;54778:40;;54728:6;;;54745:17;54728:6;;54778:40;;54709:16;;54778:40;54698:128;54652:174;:::o;28077:155::-;28172:52;20331:10;28205:8;28215;28172:18;:52::i;:::-;28077:155;;:::o;29197:323::-;29371:41;20331:10;29404:7;29371:18;:41::i;:::-;29363:100;;;;-1:-1:-1;;;29363:100:0;;;;;;;:::i;:::-;29474:38;29488:4;29494:2;29498:7;29507:4;29474:13;:38::i;65136:106::-;65196:13;65227:7;65220:14;;;;;:::i;20895:723::-;20951:13;21172:5;21181:1;21172:10;21168:53;;-1:-1:-1;;21199:10:0;;;;;;;;;;;;-1:-1:-1;;;21199:10:0;;;;;20895:723::o;21168:53::-;21246:5;21231:12;21287:78;21294:9;;21287:78;;21320:8;;;;:::i;:::-;;-1:-1:-1;21343:10:0;;-1:-1:-1;21351:2:0;21343:10;;:::i;:::-;;;21287:78;;;21375:19;21407:6;21397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21397:17:0;;21375:39;;21425:154;21432:10;;21425:154;;21459:11;21469:1;21459:11;;:::i;:::-;;-1:-1:-1;21528:10:0;21536:2;21528:5;:10;:::i;:::-;21515:24;;:2;:24;:::i;:::-;21502:39;;21485:6;21492;21485:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21485:56:0;;;;;;;;-1:-1:-1;21556:11:0;21565:2;21556:11;;:::i;:::-;;;21425:154;;;21603:6;20895:723;-1:-1:-1;;;;20895:723:0:o;35088:174::-;35163:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35163:29:0;-1:-1:-1;;;;;35163:29:0;;;;;;;;:24;;35217:23;35163:24;35217:14;:23::i;:::-;-1:-1:-1;;;;;35208:46:0;;;;;;;;;;;35088:174;;:::o;31321:264::-;31414:4;31431:13;31447:23;31462:7;31447:14;:23::i;:::-;31431:39;;31500:5;-1:-1:-1;;;;;31489:16:0;:7;-1:-1:-1;;;;;31489:16:0;;:52;;;;31509:32;31526:5;31533:7;31509:16;:32::i;:::-;31489:87;;;;31569:7;-1:-1:-1;;;;;31545:31:0;:20;31557:7;31545:11;:20::i;:::-;-1:-1:-1;;;;;31545:31:0;;31481:96;31321:264;-1:-1:-1;;;;31321:264:0:o;34344:625::-;34503:4;-1:-1:-1;;;;;34476:31:0;:23;34491:7;34476:14;:23::i;:::-;-1:-1:-1;;;;;34476:31:0;;34468:81;;;;-1:-1:-1;;;34468:81:0;;19632:2:1;34468:81:0;;;19614:21:1;19671:2;19651:18;;;19644:30;19710:34;19690:18;;;19683:62;-1:-1:-1;;;19761:18:1;;;19754:35;19806:19;;34468:81:0;19430:401:1;34468:81:0;-1:-1:-1;;;;;34568:16:0;;34560:65;;;;-1:-1:-1;;;34560:65:0;;20038:2:1;34560:65:0;;;20020:21:1;20077:2;20057:18;;;20050:30;20116:34;20096:18;;;20089:62;-1:-1:-1;;;20167:18:1;;;20160:34;20211:19;;34560:65:0;19836:400:1;34560:65:0;34742:29;34759:1;34763:7;34742:8;:29::i;:::-;-1:-1:-1;;;;;34784:15:0;;;;;;:9;:15;;;;;:20;;34803:1;;34784:15;:20;;34803:1;;34784:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34815:13:0;;;;;;:9;:13;;;;;:18;;34832:1;;34815:13;:18;;34832:1;;34815:18;:::i;:::-;;;;-1:-1:-1;;34844:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34844:21:0;-1:-1:-1;;;;;34844:21:0;;;;;;;;;34883:27;;34844:16;;34883:27;;;;;;;50417:237;;;:::o;35405:315::-;35560:8;-1:-1:-1;;;;;35551:17:0;:5;-1:-1:-1;;;;;35551:17:0;;35543:55;;;;-1:-1:-1;;;35543:55:0;;20443:2:1;35543:55:0;;;20425:21:1;20482:2;20462:18;;;20455:30;20521:27;20501:18;;;20494:55;20566:18;;35543:55:0;20241:349:1;35543:55:0;-1:-1:-1;;;;;35609:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35609:46:0;;;;;;;;;;35671:41;;893::1;;;35671::0;;866:18:1;35671:41:0;;;;;;;35405:315;;;:::o;30401:313::-;30557:28;30567:4;30573:2;30577:7;30557:9;:28::i;:::-;30604:47;30627:4;30633:2;30637:7;30646:4;30604:22;:47::i;:::-;30596:110;;;;-1:-1:-1;;;30596:110:0;;;;;;;:::i;36508:853::-;36662:4;-1:-1:-1;;;;;36683:13:0;;12547:19;:23;36679:675;;36719:71;;-1:-1:-1;;;36719:71:0;;-1:-1:-1;;;;;36719:36:0;;;;;:71;;20331:10;;36770:4;;36776:7;;36785:4;;36719:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36719:71:0;;;;;;;;-1:-1:-1;;36719:71:0;;;;;;;;;;;;:::i;:::-;;;36715:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36960:6;:13;36977:1;36960:18;36956:328;;37003:60;;-1:-1:-1;;;37003:60:0;;;;;;;:::i;36956:328::-;37234:6;37228:13;37219:6;37215:2;37211:15;37204:38;36715:584;-1:-1:-1;;;;;;36841:51:0;-1:-1:-1;;;36841:51:0;;-1:-1:-1;36834:58:0;;36679:675;-1:-1:-1;37338:4:0;36508:853;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;367:131:1:-;-1:-1:-1;;;;;;441:32:1;;431:43;;421:71;;488:1;485;478:12;503:245;561:6;614:2;602:9;593:7;589:23;585:32;582:52;;;630:1;627;620:12;582:52;669:9;656:23;688:30;712:5;688:30;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2191:70;2094:173;;;:::o;2272:254::-;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2713:328::-;2790:6;2798;2806;2859:2;2847:9;2838:7;2834:23;2830:32;2827:52;;;2875:1;2872;2865:12;2827:52;2898:29;2917:9;2898:29;:::i;:::-;2888:39;;2946:38;2980:2;2969:9;2965:18;2946:38;:::i;:::-;2936:48;;3031:2;3020:9;3016:18;3003:32;2993:42;;2713:328;;;;;:::o;3509:186::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:52;;;3637:1;3634;3627:12;3589:52;3660:29;3679:9;3660:29;:::i;3700:348::-;3752:8;3762:6;3816:3;3809:4;3801:6;3797:17;3793:27;3783:55;;3834:1;3831;3824:12;3783:55;-1:-1:-1;3857:20:1;;3900:18;3889:30;;3886:50;;;3932:1;3929;3922:12;3886:50;3969:4;3961:6;3957:17;3945:29;;4021:3;4014:4;4005:6;3997;3993:19;3989:30;3986:39;3983:59;;;4038:1;4035;4028:12;3983:59;3700:348;;;;;:::o;4053:795::-;4154:6;4162;4170;4178;4186;4239:2;4227:9;4218:7;4214:23;4210:32;4207:52;;;4255:1;4252;4245:12;4207:52;4278:29;4297:9;4278:29;:::i;:::-;4268:39;;4358:2;4347:9;4343:18;4330:32;4381:18;4422:2;4414:6;4411:14;4408:34;;;4438:1;4435;4428:12;4408:34;4477:59;4528:7;4519:6;4508:9;4504:22;4477:59;:::i;:::-;4555:8;;-1:-1:-1;4451:85:1;-1:-1:-1;4643:2:1;4628:18;;4615:32;;-1:-1:-1;4659:16:1;;;4656:36;;;4688:1;4685;4678:12;4656:36;;4727:61;4780:7;4769:8;4758:9;4754:24;4727:61;:::i;:::-;4053:795;;;;-1:-1:-1;4053:795:1;;-1:-1:-1;4807:8:1;;4701:87;4053:795;-1:-1:-1;;;4053:795:1:o;4853:118::-;4939:5;4932:13;4925:21;4918:5;4915:32;4905:60;;4961:1;4958;4951:12;4976:315;5041:6;5049;5102:2;5090:9;5081:7;5077:23;5073:32;5070:52;;;5118:1;5115;5108:12;5070:52;5141:29;5160:9;5141:29;:::i;:::-;5131:39;;5220:2;5209:9;5205:18;5192:32;5233:28;5255:5;5233:28;:::i;:::-;5280:5;5270:15;;;4976:315;;;;;:::o;5296:127::-;5357:10;5352:3;5348:20;5345:1;5338:31;5388:4;5385:1;5378:15;5412:4;5409:1;5402:15;5428:1138;5523:6;5531;5539;5547;5600:3;5588:9;5579:7;5575:23;5571:33;5568:53;;;5617:1;5614;5607:12;5568:53;5640:29;5659:9;5640:29;:::i;:::-;5630:39;;5688:38;5722:2;5711:9;5707:18;5688:38;:::i;:::-;5678:48;;5773:2;5762:9;5758:18;5745:32;5735:42;;5828:2;5817:9;5813:18;5800:32;5851:18;5892:2;5884:6;5881:14;5878:34;;;5908:1;5905;5898:12;5878:34;5946:6;5935:9;5931:22;5921:32;;5991:7;5984:4;5980:2;5976:13;5972:27;5962:55;;6013:1;6010;6003:12;5962:55;6049:2;6036:16;6071:2;6067;6064:10;6061:36;;;6077:18;;:::i;:::-;6152:2;6146:9;6120:2;6206:13;;-1:-1:-1;;6202:22:1;;;6226:2;6198:31;6194:40;6182:53;;;6250:18;;;6270:22;;;6247:46;6244:72;;;6296:18;;:::i;:::-;6336:10;6332:2;6325:22;6371:2;6363:6;6356:18;6411:7;6406:2;6401;6397;6393:11;6389:20;6386:33;6383:53;;;6432:1;6429;6422:12;6383:53;6488:2;6483;6479;6475:11;6470:2;6462:6;6458:15;6445:46;6533:1;6528:2;6523;6515:6;6511:15;6507:24;6500:35;6554:6;6544:16;;;;;;;5428:1138;;;;;;;:::o;6571:260::-;6639:6;6647;6700:2;6688:9;6679:7;6675:23;6671:32;6668:52;;;6716:1;6713;6706:12;6668:52;6739:29;6758:9;6739:29;:::i;:::-;6729:39;;6787:38;6821:2;6810:9;6806:18;6787:38;:::i;:::-;6777:48;;6571:260;;;;;:::o;6836:380::-;6915:1;6911:12;;;;6958;;;6979:61;;7033:4;7025:6;7021:17;7011:27;;6979:61;7086:2;7078:6;7075:14;7055:18;7052:38;7049:161;;7132:10;7127:3;7123:20;7120:1;7113:31;7167:4;7164:1;7157:15;7195:4;7192:1;7185:15;7049:161;;6836:380;;;:::o;7221:352::-;7423:2;7405:21;;;7462:2;7442:18;;;7435:30;7501;7496:2;7481:18;;7474:58;7564:2;7549:18;;7221:352::o;7578:345::-;7780:2;7762:21;;;7819:2;7799:18;;;7792:30;-1:-1:-1;;;7853:2:1;7838:18;;7831:51;7914:2;7899:18;;7578:345::o;7928:356::-;8130:2;8112:21;;;8149:18;;;8142:30;8208:34;8203:2;8188:18;;8181:62;8275:2;8260:18;;7928:356::o;8715:127::-;8776:10;8771:3;8767:20;8764:1;8757:31;8807:4;8804:1;8797:15;8831:4;8828:1;8821:15;8847:135;8886:3;8907:17;;;8904:43;;8927:18;;:::i;:::-;-1:-1:-1;8974:1:1;8963:13;;8847:135::o;8987:128::-;9054:9;;;9075:11;;;9072:37;;;9089:18;;:::i;9120:287::-;9249:3;9287:6;9281:13;9303:66;9362:6;9357:3;9350:4;9342:6;9338:17;9303:66;:::i;:::-;9385:16;;;;;9120:287;-1:-1:-1;;9120:287:1:o;9412:136::-;9451:3;9479:5;9469:39;;9488:18;;:::i;:::-;-1:-1:-1;;;9524:18:1;;9412:136::o;9553:127::-;9614:10;9609:3;9605:20;9602:1;9595:31;9645:4;9642:1;9635:15;9669:4;9666:1;9659:15;9810:544;9911:2;9906:3;9903:11;9900:448;;;9947:1;9972:5;9968:2;9961:17;10017:4;10013:2;10003:19;10087:2;10075:10;10071:19;10068:1;10064:27;10058:4;10054:38;10123:4;10111:10;10108:20;10105:47;;;-1:-1:-1;10146:4:1;10105:47;10201:2;10196:3;10192:12;10189:1;10185:20;10179:4;10175:31;10165:41;;10256:82;10274:2;10267:5;10264:13;10256:82;;;10319:17;;;10300:1;10289:13;10256:82;;;10260:3;;;9810:544;;;:::o;10530:1430::-;10647:3;10641:4;10638:13;10635:26;;10654:5;;10530:1430::o;10635:26::-;10684:37;10716:3;10710:10;10684:37;:::i;:::-;10744:18;10736:6;10733:30;10730:56;;;10766:18;;:::i;:::-;10795:96;10884:6;10844:38;10876:4;10870:11;10844:38;:::i;:::-;10838:4;10795:96;:::i;:::-;10917:1;10945:2;10937:6;10934:14;10962:1;10957:746;;;;11747:1;11764:6;11761:89;;;-1:-1:-1;11816:19:1;;;11810:26;11761:89;-1:-1:-1;;10487:1:1;10483:11;;;10479:24;10475:29;10465:40;10511:1;10507:11;;;10462:57;11863:81;;10927:1027;;10957:746;9757:1;9750:14;;;9794:4;9781:18;;-1:-1:-1;;10993:20:1;;;9757:1;9750:14;;;9794:4;9781:18;;11155:9;11177:251;11191:7;11188:1;11185:14;11177:251;;;11273:21;;;11267:28;11252:44;;11323:1;11396:18;;;;11351:15;;;;11214:4;11207:12;11177:251;;;11181:3;11456:6;11447:7;11444:19;11441:203;;;11517:21;;;11511:28;-1:-1:-1;;11602:1:1;11598:14;;;11614:3;11594:24;11590:37;11586:42;11571:58;11556:74;;11441:203;-1:-1:-1;;;;;11690:1:1;11674:14;;;11670:22;11657:36;;-1:-1:-1;10530:1430:1:o;11965:125::-;12030:9;;;12051:10;;;12048:36;;;12064:18;;:::i;12095:840::-;12221:3;12250:1;12283:6;12277:13;12313:36;12339:9;12313:36;:::i;:::-;12368:1;12385:18;;;12412:133;;;;12559:1;12554:356;;;;12378:532;;12412:133;-1:-1:-1;;12445:24:1;;12433:37;;12518:14;;12511:22;12499:35;;12490:45;;;-1:-1:-1;12412:133:1;;12554:356;12585:6;12582:1;12575:17;12615:4;12660:2;12657:1;12647:16;12685:1;12699:165;12713:6;12710:1;12707:13;12699:165;;;12791:14;;12778:11;;;12771:35;12834:16;;;;12728:10;;12699:165;;;12703:3;;;12893:6;12888:3;12884:16;12877:23;;12378:532;-1:-1:-1;12926:3:1;;12095:840;-1:-1:-1;;;;;;12095:840:1:o;12940:127::-;13001:10;12996:3;12992:20;12989:1;12982:31;13032:4;13029:1;13022:15;13056:4;13053:1;13046:15;13414:1348;13538:3;13532:10;13565:18;13557:6;13554:30;13551:56;;;13587:18;;:::i;:::-;13616:96;13705:6;13665:38;13697:4;13691:11;13665:38;:::i;13616:96::-;13767:4;;13831:2;13820:14;;13848:1;13843:662;;;;14549:1;14566:6;14563:89;;;-1:-1:-1;14618:19:1;;;14612:26;14563:89;-1:-1:-1;;10487:1:1;10483:11;;;10479:24;10475:29;10465:40;10511:1;10507:11;;;10462:57;14665:81;;13813:943;;13843:662;9757:1;9750:14;;;9794:4;9781:18;;-1:-1:-1;;13879:20:1;;;13996:236;14010:7;14007:1;14004:14;13996:236;;;14099:19;;;14093:26;14078:42;;14191:27;;;;14159:1;14147:14;;;;14026:19;;13996:236;;;14000:3;14260:6;14251:7;14248:19;14245:201;;;14321:19;;;;14315:26;-1:-1:-1;;14416:3:1;14404:1;14400:14;;;14396:24;14392:37;14388:42;14373:58;14358:74;;;-1:-1:-1;;14492:1:1;14476:14;;;14472:22;14459:36;;-1:-1:-1;13414:1348:1:o;14767:390::-;14926:2;14915:9;14908:21;14965:6;14960:2;14949:9;14945:18;14938:34;15022:6;15014;15009:2;14998:9;14994:18;14981:48;15078:1;15049:22;;;15073:2;15045:31;;;15038:42;;;;15141:2;15120:15;;;-1:-1:-1;;15116:29:1;15101:45;15097:54;;14767:390;-1:-1:-1;14767:390:1:o;16341:496::-;16520:3;16558:6;16552:13;16574:66;16633:6;16628:3;16621:4;16613:6;16609:17;16574:66;:::i;:::-;16703:13;;16662:16;;;;16725:70;16703:13;16662:16;16772:4;16760:17;;16725:70;:::i;:::-;16811:20;;16341:496;-1:-1:-1;;;;16341:496:1:o;17558:245::-;17625:6;17678:2;17666:9;17657:7;17653:23;17649:32;17646:52;;;17694:1;17691;17684:12;17646:52;17726:9;17720:16;17745:28;17767:5;17745:28;:::i;18641:410::-;18843:2;18825:21;;;18882:2;18862:18;;;18855:30;18921:34;18916:2;18901:18;;18894:62;-1:-1:-1;;;18987:2:1;18972:18;;18965:44;19041:3;19026:19;;18641:410::o;19056:127::-;19117:10;19112:3;19108:20;19105:1;19098:31;19148:4;19145:1;19138:15;19172:4;19169:1;19162:15;19188:120;19228:1;19254;19244:35;;19259:18;;:::i;:::-;-1:-1:-1;19293:9:1;;19188:120::o;19313:112::-;19345:1;19371;19361:35;;19376:18;;:::i;:::-;-1:-1:-1;19410:9:1;;19313:112::o;20595:414::-;20797:2;20779:21;;;20836:2;20816:18;;;20809:30;20875:34;20870:2;20855:18;;20848:62;-1:-1:-1;;;20941:2:1;20926:18;;20919:48;20999:3;20984:19;;20595:414::o;21014:489::-;-1:-1:-1;;;;;21283:15:1;;;21265:34;;21335:15;;21330:2;21315:18;;21308:43;21382:2;21367:18;;21360:34;;;21430:3;21425:2;21410:18;;21403:31;;;21208:4;;21451:46;;21477:19;;21469:6;21451:46;:::i;:::-;21443:54;21014:489;-1:-1:-1;;;;;;21014:489:1:o;21508:249::-;21577:6;21630:2;21618:9;21609:7;21605:23;21601:32;21598:52;;;21646:1;21643;21636:12;21598:52;21678:9;21672:16;21697:30;21721:5;21697:30;:::i

Swarm Source

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